From 907afe0eb9561cad352109c6f3389e7631ce9c08 Mon Sep 17 00:00:00 2001
From: M9713 <m9713@student.jamk.fi>
Date: Mon, 1 Nov 2021 21:01:16 +0200
Subject: [PATCH] Update .gitlab-ci.yml

---
 conduit-backend/.gitlab-ci.yml | 40 +++++++++++++++++++++++++++++-----
 1 file changed, 35 insertions(+), 5 deletions(-)

diff --git a/conduit-backend/.gitlab-ci.yml b/conduit-backend/.gitlab-ci.yml
index a7b633c..59ed892 100644
--- a/conduit-backend/.gitlab-ci.yml
+++ b/conduit-backend/.gitlab-ci.yml
@@ -1,6 +1,36 @@
-# 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 --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:backend
+
+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
-- 
GitLab