fab-city-os-core-chart/.gitlab-ci.yml
2022-11-23 11:34:46 +01:00

24 lines
380 B
YAML

---
default:
image: alpine/helm:3.10.2
tags:
- kubernetes
- flying-circus
variables:
APP_NAME: fcoscore
stages:
- test
# - build
# - release
# - deploy
helm-upgrade:
stage: test
script:
- helm upgrade ${APP_NAME} ./ --install --values=./values.yaml --namespace ${APP_NAME}
# rules:
# - if: $CI_COMMIT_BRANCH == 'master'
# when: always