Skip to content
Snippets Groups Projects
Commit 6850e4f8 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Fix error ci

parent ee7ed09e
No related branches found
No related tags found
1 merge request!167Download server data
Pipeline #119075 passed with stages
in 12 minutes and 42 seconds
......@@ -467,9 +467,24 @@ delete-helm-release:prod:
- helm delete -n ${NAMESPACE} $CI_PROJECT_NAME-$CI_ENVIRONMENT_NAME
load-website:
load-website:dev:
image: harbor.pasteur.fr/kube-system/helm-kubectl:$HELM_VERSION
stage: load-website
rules:
- if: $CI_COMMIT_BRANCH != "main"
needs:
- "deploy:dev"
script:
- kubectl wait pods -l app.kubernetes.io/name=df-wiki --for condition=Ready --timeout=90s
- echo "Le pod est ready"
load-website:prod:
image: harbor.pasteur.fr/kube-system/helm-kubectl:$HELM_VERSION
stage: load-website
rules:
- if: $CI_COMMIT_BRANCH == "main"
needs:
- "deploy:prod"
script:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment