Skip to content
Snippets Groups Projects
Commit 77dee6d8 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

add template scripts

parents
No related branches found
No related tags found
No related merge requests found
stages:
- package
- publish
include:
- local: package.gitlab-ci.yml
deploy_on_gitlab:
stage: publish
image: alpine/k8s:1.28.14
needs:
- job: package
artifacts: true
script:
- helm repo add --username ${USERNAME} --password ${password} nfs-server ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/{CHANNEL}
- helm cm-push *.tgz nfs-server
package:
stage: package
image: alpine/k8s:1.28.14
artifacts:
paths:
- '*.tgz'
expire_in: 1d
script:
- helm package ${CHART_DIRECTORY} -d ./
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