We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa455c commit 6ac97ccCopy full SHA for 6ac97cc
.github/workflows/deploy.yml
@@ -82,6 +82,11 @@ jobs:
82
git commit -m "Update image tag to ${{ inputs.image-tag || github.sha }}" || exit 0
83
git push https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
84
85
+ - name: Create Application Namespace
86
+ if: ${{ inputs.terraform-action == 'apply' || inputs.terraform-action == '' }}
87
+ run: |
88
+ kubectl create namespace my-app-namespace --dry-run=client -o yaml | kubectl apply -f -
89
+
90
- name: Deploy ArgoCD Applications
91
if: ${{ inputs.terraform-action == 'apply' || inputs.terraform-action == '' }}
92
run: |
argocd/application.yml
@@ -26,4 +26,3 @@ spec:
26
automated:
27
prune: true
28
selfHeal: true
29
- createNamespace: true
0 commit comments