From 0d0166999b224cc725f529a945b34a991b34f950 Mon Sep 17 00:00:00 2001 From: Mallaki Mahdi Date: Wed, 29 May 2024 15:01:18 +0900 Subject: [PATCH] updating helmfile and kustomize article --- helmfile-and-kustomize/assets/.gitlab-ci.yml | 2 +- .../pipeline-docker-image/.gitignore | 1 + .../pipeline-docker-image/Dockerfile | 6 +++ .../pipeline-docker-image/build.sh | 6 +++ .../pipeline-docker-image/install.sh | 51 +++++++++++++++++++ 5 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 helmfile-and-kustomize/pipeline-docker-image/.gitignore create mode 100644 helmfile-and-kustomize/pipeline-docker-image/Dockerfile create mode 100644 helmfile-and-kustomize/pipeline-docker-image/build.sh create mode 100644 helmfile-and-kustomize/pipeline-docker-image/install.sh diff --git a/helmfile-and-kustomize/assets/.gitlab-ci.yml b/helmfile-and-kustomize/assets/.gitlab-ci.yml index f64ae94..953a5f0 100644 --- a/helmfile-and-kustomize/assets/.gitlab-ci.yml +++ b/helmfile-and-kustomize/assets/.gitlab-ci.yml @@ -3,7 +3,7 @@ stages: deploy: stage: deploy - image: bitnami/kubectl + image: docker.io/mlkmhd/cd-pipeline:1 script: | set -xe env diff --git a/helmfile-and-kustomize/pipeline-docker-image/.gitignore b/helmfile-and-kustomize/pipeline-docker-image/.gitignore new file mode 100644 index 0000000..ee0cb61 --- /dev/null +++ b/helmfile-and-kustomize/pipeline-docker-image/.gitignore @@ -0,0 +1 @@ +*.crt \ No newline at end of file diff --git a/helmfile-and-kustomize/pipeline-docker-image/Dockerfile b/helmfile-and-kustomize/pipeline-docker-image/Dockerfile new file mode 100644 index 0000000..df355a5 --- /dev/null +++ b/helmfile-and-kustomize/pipeline-docker-image/Dockerfile @@ -0,0 +1,6 @@ +FROM debian:11.8 + +ADD *.crt /usr/local/share/ca-certificates/ +ADD install.sh / + +RUN chmod +x /install.sh && /install.sh \ No newline at end of file diff --git a/helmfile-and-kustomize/pipeline-docker-image/build.sh b/helmfile-and-kustomize/pipeline-docker-image/build.sh new file mode 100644 index 0000000..bac654f --- /dev/null +++ b/helmfile-and-kustomize/pipeline-docker-image/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +IMAGE_NAME="mlkmhd/cd-pipeline:1" + +docker build . --no-cache -t $IMAGE_NAME +docker push $IMAGE_NAME diff --git a/helmfile-and-kustomize/pipeline-docker-image/install.sh b/helmfile-and-kustomize/pipeline-docker-image/install.sh new file mode 100644 index 0000000..f51f514 --- /dev/null +++ b/helmfile-and-kustomize/pipeline-docker-image/install.sh @@ -0,0 +1,51 @@ +#!/bin/bash +set -xe + +apt update +apt install curl jq -y + +update-ca-certificates + +# installing helm +curl -L 'https://get.helm.sh/helm-v3.13.3-linux-amd64.tar.gz' -o helm.tar.gz +tar -xvzf helm.tar.gz +mv linux-amd64/helm /usr/bin/ +rm helm.tar.gz +rm -rf linux-amd64 + +# helm-diff plugin installation +curl -L 'https://github.com/databus23/helm-diff/releases/latest/download/helm-diff-linux-amd64.tgz' -o helm-diff.tgz +tar -xvzf helm-diff.tgz +helm plugin install ./diff || true +rm helm-diff.tgz + +# installing helmfile +curl -L 'https://github.com/helmfile/helmfile/releases/download/v0.160.0/helmfile_0.160.0_linux_amd64.tar.gz' -o helmfile.tar.gz +tar -xvzf helmfile.tar.gz +mv helmfile /usr/bin +rm helmfile.tar.gz + +# installing kubectl +curl -LO https://dl.k8s.io/release/v1.29.0/bin/linux/amd64/kubectl +chmod +x kubectl +mv kubectl /usr/bin + +# installing kustomize +curl -L 'https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv3.8.1/kustomize_v3.8.1_linux_amd64.tar.gz' -o kustomize.tar.gz +tar -xvzf kustomize.tar.gz +mv kustomize /usr/bin +rm kustomize.tar.gz + +# installing kubectl-slice +curl -L 'https://github.com/patrickdappollonio/kubectl-slice/releases/download/v1.2.7/kubectl-slice_linux_x86_64.tar.gz' -o kubectl-slice.tar.gz +tar -xvzf kubectl-slice.tar.gz +chmod +x kubectl-slice +mv kubectl-slice /usr/bin +rm kubectl-slice.tar.gz + +# installing gpg and sops +apt install gpg gpg-agent -y +cd /tmp +curl -L https://github.com/getsops/sops/releases/download/v3.8.1/sops_3.8.1_amd64.deb -o sops.deb +dpkg -i sops.deb +rm sops.deb