Compare commits

..

16 Commits

Author SHA1 Message Date
David Gamero da331a158c Update codeql.yml 2024-03-19 12:57:22 -04:00
David Gamero e08fe4d10f Update CHANGELOG.md 2024-03-19 12:55:59 -04:00
David Gamero 159ed4c2e2 Update CHANGELOG.md 2024-03-19 12:55:04 -04:00
David Gamero e394a363ea Update codeql.yml 2024-03-19 12:41:03 -04:00
David Gamero 9a3f9b33d4 update the current tags 2024-03-12 17:01:59 -04:00
David Gamero 2deb54c5d3 format 2024-03-12 15:23:18 -04:00
David Gamero f0b74d1da1 Update codeql.yml 2024-03-12 15:20:14 -04:00
David Gamero 0767161214 Update codeql.yml 2024-03-12 15:18:05 -04:00
David Gamero ee4689b033 Update codeql.yml 2024-03-12 15:14:05 -04:00
David Gamero 103b5ccfa2 Update codeql.yml 2024-03-12 11:36:09 -04:00
David Gamero 209431e7c0 format 2024-03-12 11:09:35 -04:00
David Gamero 18f9d6f27c Update CHANGELOG.md 2024-03-12 11:08:25 -04:00
David Gamero f9cf4e2ef6 Update CHANGELOG.md 2024-03-12 11:08:10 -04:00
David Gamero db9a5aa2d4 Update CHANGELOG.md 2024-03-12 11:07:40 -04:00
David Gamero f7415623aa Update release-pr.yml 2024-03-12 11:05:47 -04:00
David Gamero 43974c78e2 Update package.json 2024-03-12 11:03:38 -04:00
3 changed files with 2 additions and 36 deletions
@@ -43,7 +43,7 @@ jobs:
run: |
set +x
# create cluster
az group create --location eastus2 --name ${{ env.NAMESPACE }}
az group create --location eastus --name ${{ env.NAMESPACE }}
az aks create --name ${{ env.NAMESPACE }} --resource-group ${{ env.NAMESPACE }} --enable-private-cluster --generate-ssh-keys
az aks get-credentials --resource-group ${{ env.NAMESPACE }} --name ${{ env.NAMESPACE }}
@@ -63,7 +63,6 @@ jobs:
images: nginx:1.14.2
manifests: |
test/integration/manifests/test.yml
test/integration/manifests/test2.yml
action: deploy
private-cluster: true
resource-group: ${{ env.NAMESPACE }}
+1 -1
View File
@@ -4,7 +4,7 @@
"author": "Deepak Sattiraju",
"license": "MIT",
"scripts": {
"prebuild": "npm i @vercel/ncc",
"prebuild": "npm i @ncc/vercel",
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"coverage": "jest --coverage=true",
-33
View File
@@ -1,33 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: nginx-service
spec:
selector:
app: nginx
ports:
- protocol: TCP
port: 80
targetPort: 80