Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
europdx
k8s
cbio-on-demand
API
Commits
8497ad6d
Commit
8497ad6d
authored
Oct 01, 2019
by
Ľuboslav Pivarč
Browse files
changed image to refer ci-images & refactor CI
parent
c25617f6
Pipeline
#25676
passed with stages
in 15 minutes and 11 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
8497ad6d
...
...
@@ -12,89 +12,65 @@ stages:
before_script
:
-
echo -n $CI_REGISTRY_PASSWORD | docker login -u "$CI_REGISTRY_USER" --password-stdin $CI_REGISTRY
.kube-deploy
:
script
:
&kube-deploy
.kube-deploy
:
&kube-deploy
stage
:
deploy
<<
:
*kube-auth
image
:
registry.gitlab.ics.muni.cz:443/europdx/ci-images/ci:latest
script
:
-
sed -i "s^__IMAGE__^${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}^" ./k8s/deployment.yml
-
sed -i "s^__NAMESPACE__^${NAMESPACE}^" ./k8s/deployment.yml ./k8s/service.yml
-
kubectl version
-
kubectl get pods -n ${NAMESPACE}
-
kubectl apply -f ./k8s
-
kubectl rollout status -f ./k8s/deployment.yml
allow_failure
:
false
.docker-build
:
script
:
&docker-build
.docker-build
:
&docker-build
stage
:
build
<<
:
*docker-login
image
:
docker:latest
script
:
-
docker build --pull -t "${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}" ./cbioondemandK8S
-
docker push "$CI_REGISTRY_IMAGE:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}"
#PRODUCTION
API docker image build
:
stage
:
build
<<
:
*docker-login
image
:
docker:latest
script
:
*docker-build
<<
:
*docker-build
only
:
refs
:
-
master
-
master
API Kube deploy
:
stage
:
deploy
<<
:
*kube-auth
image
:
registry.gitlab.ics.muni.cz:443/europdx/k8s/ci:latest
<<
:
*kube-deploy
variables
:
NAMESPACE
:
cbio-on-demand
script
:
*kube-deploy
only
:
refs
:
-
master
-
master
when
:
manual
allow_failure
:
false
#BETA
Beta-API docker image build
:
stage
:
build
<<
:
*docker-login
image
:
docker:latest
script
:
*docker-build
<<
:
*docker-build
only
:
refs
:
-
beta
-
beta
Beta-API Kube deploy
:
stage
:
deploy
<<
:
*kube-auth
image
:
registry.gitlab.ics.muni.cz:443/europdx/k8s/ci:latest
<<
:
*kube-deploy
variables
:
NAMESPACE
:
cbio-on-demand-beta
script
:
*kube-deploy
only
:
refs
:
-
beta
-
beta
#DEV
Dev-API docker image build
:
stage
:
build
<<
:
*docker-login
image
:
docker:latest
script
:
*docker-build
<<
:
*docker-build
only
:
refs
:
-
dev
-
dev
Dev-API Kube deploy
:
stage
:
deploy
<<
:
*kube-auth
image
:
registry.gitlab.ics.muni.cz:443/europdx/k8s/ci:latest
<<
:
*kube-deploy
variables
:
NAMESPACE
:
cbio-on-demand-dev
script
:
*kube-deploy
only
:
refs
:
-
dev
#
-
dev
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