From 8661b1d77d38175a144209350e54c20f1c6a7aae Mon Sep 17 00:00:00 2001 From: Tom Teichler <tom.teichler@teckids.org> Date: Tue, 9 Apr 2024 16:52:41 +0200 Subject: [PATCH] Add k9s deployment --- .gitlab-ci.yml | 24 +++++++++++++----------- deploy/deployment.yaml | 22 ++++++++++++++++++++++ deploy/ingress.yaml | 37 +++++++++++++++++++++++++++++++++++++ deploy/service.yaml | 15 +++++++++++++++ 4 files changed, 87 insertions(+), 11 deletions(-) create mode 100644 deploy/deployment.yaml create mode 100644 deploy/ingress.yaml create mode 100644 deploy/service.yaml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72e60366..2217431a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,12 @@ +stages: + - build + - deploy + variables: GIT_SUBMODULE_STRATEGY: recursive build docker image: + stage: build interruptible: true image: name: gcr.io/kaniko-project/executor:debug @@ -13,17 +18,14 @@ build docker image: --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME --cache=true + --digestfile=DIGESTFILE --cleanup -build pages: - image: alpine:latest - before_script: - - apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ zola - - apk add yarn - - yarn install +deploy docker image: + stage: deploy + image: bitnami/kubectl:latest script: - - zola build - - cp _redirects public/ - artifacts: - paths: - - public/ + - cd deploy + - sed -i s/IMAGE_TAG/$CI_COMMIT_REF_NAME@sha256:$(cat DIGESTFILE)/g + - cat deployment.yaml +# - for file in *; do kubectl apply -f $file; done diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml new file mode 100644 index 00000000..53688d5f --- /dev/null +++ b/deploy/deployment.yaml @@ -0,0 +1,22 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: teckids-website + namespace: teckids-website + labels: + app: teckids-website +spec: + replicas: 3 + selector: + matchLabels: + app: teckids-website + template: + metadata: + labels: + app: teckids-website + spec: + containers: + - name: caddy + image: registry.edugit.org/teckids/team-pr/teckids.org:IMAGE_TAG + ports: + - containerPort: 80 diff --git a/deploy/ingress.yaml b/deploy/ingress.yaml new file mode 100644 index 00000000..9dd88ddd --- /dev/null +++ b/deploy/ingress.yaml @@ -0,0 +1,37 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod + kubernetes.io/tls-acme: "true" + name: teckids-website-caddy + namespace: teckids-website +spec: + ingressClassName: nginx + rules: + - host: teckids.org + http: + paths: + - backend: + service: + name: teckids-website + port: + number: 80 + path: / + pathType: Prefix + - host: www.teckids.org + http: + paths: + - backend: + service: + name: teckids-website + port: + number: 80 + path: / + pathType: Prefix + + tls: + - hosts: + - teckids.org + - www.teckids.org + secretName: teckids-website-tls diff --git a/deploy/service.yaml b/deploy/service.yaml new file mode 100644 index 00000000..64dbb905 --- /dev/null +++ b/deploy/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: teckids-website + namespace: teckids-website +spec: + ports: + - name: http + port: 80 + protocol: TCP + targetPort: http + selector: + app: teckids-website + sessionAffinity: None + type: ClusterIP -- GitLab