Skip to content

Commit

Permalink
chore: cd
Browse files Browse the repository at this point in the history
  • Loading branch information
guesant committed Nov 19, 2024
1 parent 9aeb52e commit 01290f1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/actions/deploy-k8s/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ runs:
helm repo add stakater https://stakater.github.io/stakater-charts
helm repo update
helm template ladesa-ro-sso stakater/application --dry-run --debug --namespace=${K8S_NAMESPACE} --values=./values.common.yml --values=./values.prod.yml;
helm install ladesa-ro-sso stakater/application \
--namespace=${K8S_NAMESPACE} \
--values=./values.common.yml \
--values=./values.prod.yml \
;
# kubectl kustomize . | envsubst | kubectl apply -f -;
# kubectl rollout restart \
# deployment.apps/${K8S_DEPLOYMENT} \
# --namespace ${K8S_NAMESPACE} \
# ;
kubectl rollout restart \
deployment.apps/${K8S_DEPLOYMENT} \
--namespace ${K8S_NAMESPACE} \
;

0 comments on commit 01290f1

Please sign in to comment.