diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6146b03f14854db38e6875abb1958606c1c549f2..04bd880e73053e59d5eefefa84c175155f71bb69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,8 +5,8 @@ upload: needs: [] image: harbor.pasteur.fr/kube-system/helm-kubectl:3.4.0 script: - - CHART_VERSION=$(helm show chart rshiny | grep version | cut -d' ' -f2) - - CHART_NAME=$(helm show chart rshiny | grep name | cut -d' ' -f2) + - CHART_VERSION=$(helm show chart shiny-server-hosting | grep version | cut -d' ' -f2) + - CHART_NAME=$(helm show chart shiny-server-hosting | grep name | cut -d' ' -f2) - | if [ "helm" == "${CI_COMMIT_REF_SLUG}" ]; then export CHANNEL="stable" @@ -14,7 +14,7 @@ upload: export CHANNEL="${CI_COMMIT_REF_SLUG}" fi echo $CHANNEL - - helm package rshiny + - helm package shiny-server-hosting - curl --request POST --user gitlab-ci-token:$CI_JOB_TOKEN --form "chart=@${CHART_NAME}-${CHART_VERSION}.tgz" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/api/${CHANNEL}/charts" @@ -22,4 +22,4 @@ upload: trigger_job: needs: ["upload"] trigger: - project: hub/rshiny-k8s-example \ No newline at end of file + project: hub/shiny-k8s-example \ No newline at end of file diff --git a/rshiny/.helmignore b/shiny-server-hosting/.helmignore similarity index 100% rename from rshiny/.helmignore rename to shiny-server-hosting/.helmignore diff --git a/rshiny/Chart.yaml b/shiny-server-hosting/Chart.yaml similarity index 100% rename from rshiny/Chart.yaml rename to shiny-server-hosting/Chart.yaml diff --git a/rshiny/templates/NOTES.txt b/shiny-server-hosting/templates/NOTES.txt similarity index 100% rename from rshiny/templates/NOTES.txt rename to shiny-server-hosting/templates/NOTES.txt diff --git a/rshiny/templates/_helpers.tpl b/shiny-server-hosting/templates/_helpers.tpl similarity index 100% rename from rshiny/templates/_helpers.tpl rename to shiny-server-hosting/templates/_helpers.tpl diff --git a/rshiny/templates/_secretHelper.tpl b/shiny-server-hosting/templates/_secretHelper.tpl similarity index 100% rename from rshiny/templates/_secretHelper.tpl rename to shiny-server-hosting/templates/_secretHelper.tpl diff --git a/rshiny/templates/deployment.yaml b/shiny-server-hosting/templates/deployment.yaml similarity index 100% rename from rshiny/templates/deployment.yaml rename to shiny-server-hosting/templates/deployment.yaml diff --git a/rshiny/templates/hpa.yaml b/shiny-server-hosting/templates/hpa.yaml similarity index 100% rename from rshiny/templates/hpa.yaml rename to shiny-server-hosting/templates/hpa.yaml diff --git a/rshiny/templates/image-pull-secret.yaml b/shiny-server-hosting/templates/image-pull-secret.yaml similarity index 100% rename from rshiny/templates/image-pull-secret.yaml rename to shiny-server-hosting/templates/image-pull-secret.yaml diff --git a/rshiny/templates/ingress.yaml b/shiny-server-hosting/templates/ingress.yaml similarity index 100% rename from rshiny/templates/ingress.yaml rename to shiny-server-hosting/templates/ingress.yaml diff --git a/rshiny/templates/service.yaml b/shiny-server-hosting/templates/service.yaml similarity index 100% rename from rshiny/templates/service.yaml rename to shiny-server-hosting/templates/service.yaml diff --git a/rshiny/values.yaml b/shiny-server-hosting/values.yaml similarity index 100% rename from rshiny/values.yaml rename to shiny-server-hosting/values.yaml