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

Update .gitlab-ci.yml

parent 9fe6b324
No related branches found
No related tags found
No related merge requests found
Pipeline #443146 passed
# 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 Backend
#
# - echo "Building Backend"
# - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
# - /kaniko/executor --context $CI_PROJECT_DIR/conduit-backend --dockerfile $CI_PROJECT_DIR/conduit-backend/Dockerfile --destination $CI_REGISTRY_IMAGE:backend
# 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/conduit-front --dockerfile $CI_PROJECT_DIR/conduit-front/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