Update helm deployment

This commit is contained in:
2020-05-05 20:22:03 +10:00
parent 18c0a91615
commit dd193b2dc4
2 changed files with 5 additions and 4 deletions
+1 -2
View File
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: CI
name: kubectl deployment
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
@@ -39,4 +39,3 @@ jobs:
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
with:
args: kubectl rollout status deployment/files -n media
+4 -2
View File
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: CI
name: helm deployment
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
@@ -27,7 +27,9 @@ jobs:
env:
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }}
with:
args: helm upgrade --install postgres -n db -f postgres-values.yaml bitnami/postgresql
args: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm upgrade --install postgres -n db -f postgres-values.yaml bitnami/postgresql
- name: verify postgres
uses: wahyd4/kubectl-helm-action@master