From 55f8c15bf6d8bce27b6d14819f5da0861a889d6c Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Fri, 27 Dec 2024 12:04:37 +0100 Subject: [PATCH] WIP --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2433fdccf9..ab6f7c831a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,9 +173,12 @@ deploy-staging: name: staging/datalab url: ${CI_ENV_STAGING_URL} before_script: - - apk add --no-cache helm make + - apk add --no-cache helm kubectl - echo ${CI_K8S_CONFIG} | base64 -d > ./kubecfg - - make build-helm + - helm dependency update ./helm/seaweedfs + - helm package ./helm/seaweedfs --destination ./build + - helm dependency update ./helm/dbrepo + - helm package ./helm/dbrepo --destination ./build - helm -n ${CI_ENV_STAGING_NAMESPACE} uninstall ${CI_ENV_STAGING_RELEASE_NAME} - kubectl -n ${CI_ENV_STAGING_NAMESPACE} delete pvc --all script: -- GitLab