-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
77 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
name: Run Skaffold Pipeline, Deploy to Minikube Cluster and Test Unguard | ||
name: Run Skaffold Pipeline, Deploy to Minikube Cluster and run Unguard Helm Test | ||
on: | ||
pull_request: | ||
paths: | ||
- src/** | ||
- k8s-manifests | ||
- skaffold.yaml | ||
- chart/** | ||
|
||
|
@@ -30,7 +29,7 @@ jobs: | |
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --chart-dirs . --charts ./chart --validate-maintainers=false --target-branch ${{ github.event.repository.default_branch }} | ||
run: ct lint --chart-dirs . --charts ./chart --validate-maintainers=false --check-version-increment=false --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
- name: Set up Minikube | ||
uses: medyagh/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: unguard-frontend-connection | ||
labels: | ||
app.kubernetes.io/name: unguard-frontend-connection | ||
app.kubernetes.io/part-of: unguard | ||
annotations: | ||
"helm.sh/hook": test | ||
spec: | ||
containers: | ||
- name: wget | ||
image: busybox | ||
command: ['wget'] | ||
args: ['{{ .Values.userSimulator.cronJob.jobTemplate.container.env.FRONTEND_ADDR }}/login'] | ||
restartPolicy: Never |