Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shaposhnikoff/84da1a43024eb99819a794f81fac4f2f to your computer and use it in GitHub Desktop.
Save shaposhnikoff/84da1a43024eb99819a794f81fac4f2f to your computer and use it in GitHub Desktop.
gitlab_pipeline
stages:
- build_nginx
- dev_nginx
build_nginx:
stage: build_nginx
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
before_script:
- echo "<pre>" > $CI_PROJECT_DIR/nginx-app/index.html
- echo ${CI_COMMIT_MESSAGE} >> $CI_PROJECT_DIR/nginx-app/index.html
- echo ${CI_COMMIT_SHA} >> $CI_PROJECT_DIR/nginx-app/index.html
- echo ${CI_COMMIT_SHORT_SHA} >> $CI_PROJECT_DIR/nginx-app/index.html
- echo ${CI_SERVER_URL} >> $CI_PROJECT_DIR/nginx-app/index.html
- echo "</pre>" >> $CI_PROJECT_DIR/nginx-app/index.html
- echo ${CI_REGISTRY}
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR/nginx-app --dockerfile $CI_PROJECT_DIR/nginx-app/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --label key=value
only:
- master
dev_nginx:
stage: dev_nginx
image: alpine:3.8
before_script:
- apk add --no-cache git curl bash wget
# - curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
- wget https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv4.1.3/kustomize_v4.1.3_linux_amd64.tar.gz
- tar -xzvf kustomize_v4.1.3_linux_amd64.tar.gz
- mv kustomize /usr/local/bin/
- git remote set-url origin https://${CI_USERNAME}:${CI_PUSH_TOKEN}@gitlab.com/shaposhnikoff/argo_k8s.git
- git config --global user.email "[email protected]"
- git config --global user.name "GitLab CI/CD"
script:
- git checkout -B master
- cd deployment/dev
- kustomize edit set image $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
- cat kustomization.yaml
- git commit -am '[skip ci] DEV image update'
- git push origin master
only:
- master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment