EOX GitLab Instance
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
View Server 2
scheduler
Commits
cc8e5e18
Commit
cc8e5e18
authored
Nov 18, 2021
by
Bernhard Mallinger
Browse files
Create branch in vs-deployment with new version on new deploys
parent
5ea7cbe4
Pipeline
#18710
passed with stage
in 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
cc8e5e18
...
...
@@ -2,9 +2,11 @@ stages:
-
test
-
publish
-
chart
-
integration_test
variables
:
DOCKER_TLS_CERTDIR
:
"
"
SERVICE_NAME
:
"
vs-scheduler"
test
:
image
:
python:3.8-slim
...
...
@@ -50,3 +52,26 @@ helm:
-
curl -u $HELM_CHART_REPOSITORY_CREDENTIALS -v -X POST https://charts-public.hub.eox.at/api/charts --data-binary "@${upload_filename}"
only
:
-
tags
integration_test
:
image
:
devth/helm:v3.6.3
stage
:
integration_test
script
:
-
wget -q https://github.com/mikefarah/yq/releases/download/v4.14.2/yq_linux_amd64.tar.gz -O - | tar xvfz - && chmod +x yq_linux_amd64
# for testing:
-
export SERVICE_NAME=postgresql
-
export CI_COMMIT_TAG=10.12.1
-
export BRANCH_NAME="auto-update-${SERVICE_NAME}-${CI_COMMIT_TAG}"
-
git config --global user.email "gitlab@eox.at"
-
git config --global user.name "gitlab"
-
git clone https://${VS_DEPLOYMENT_GIT_REPOSITORY_CREDENTIALS}@gitlab.eox.at/vs/vs-deployment.git
-
cd vs-deployment
-
git switch -c "${BRANCH_NAME}"
# bump version in Chart.yaml
-
../yq_linux_amd64 eval "( .dependencies[] | select(.name == \"${SERVICE_NAME}\") | .version ) = \"${CI_COMMIT_TAG}\"" --in-place Chart.yaml
-
helm dependency update
-
git commit --all -m "Bump ${SERVICE_NAME} to ${CI_COMMIT_TAG}"
-
git push --set-upstream origin "${BRANCH_NAME}"
only
:
-
tags
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment