Skip to content
Snippets Groups Projects
Commit bbbaf520 authored by M9713's avatar M9713
Browse files

Update .gitlab-ci.yml

parent de149d42
No related branches found
No related tags found
No related merge requests found
# This file is a template, and might need editing before it works on your project.
# This template moved to Jobs/Secret-Detection.gitlab-ci.yml in GitLab 14.0
# Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/292977
stages:
- build
- deploy
include:
template: Jobs/Secret-Detection.gitlab-ci.yml
build:
stage: build
when: manual
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
# Build Frontend
- echo "Building Frontend"
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:front
deploy:
# tags:
# - example
stage: deploy
when: manual
script: echo "Deploying"
image: bitnami/kubectl:latest
script:
- kubectl apply -f service.yaml
- kubectl apply -f deployment.yaml
- kubectl -n default rollout restart deployment default
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment