Skip to content

Commit

Permalink
ci: split current/old dcache deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Sep 12, 2024
1 parent f19e1c6 commit c165794
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ Deploy Keycloak:
#
# Start Current dCache version and an old pools
#
Deploy dCache Helm Chart:
Helm-Deploy Current dCache build:
stage: test_deploy
extends: .helm_image
script:
Expand All @@ -508,6 +508,15 @@ Deploy dCache Helm Chart:
- helm repo add dcache ${DCACHE_HELM_REPO}
- helm repo update
- helm -n ${K8S_NAMESPACE} install ${HELM_OPTS} --wait --set image.tag=${tag} --set dcache.hsm.enabled=true --set image.repository=${CI_REGISTRY_IMAGE} store dcache/dcache

Helm-Deploy Latest dCache Golden Release:
stage: test_deploy
extends: .helm_image
needs:
- Helm-Deploy Current dCache build
script:
- helm repo add dcache ${DCACHE_HELM_REPO}
- helm repo update
- helm -n ${K8S_NAMESPACE} install ${HELM_OPTS} --wait --set image.tag=9.2.20 --set "dcache.pools={d,f}" --set dcache.door.enabled=false --set image.repository=${CI_REGISTRY_IMAGE} old-store dcache/dcache


Expand Down

0 comments on commit c165794

Please sign in to comment.