From e7967da28cb6d7d35a99b6fcb2bef66c0d788c00 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 17:53:33 +0300 Subject: [PATCH 01/12] move from alpine to bullseye --- Dockerfile | 2 +- codefresh.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25f5850..cac1437 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY ./ ./ RUN go build -o ./cf-argo-plugin -FROM alpine +FROM bullseye-slim RUN apk --update add curl bash RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts diff --git a/codefresh.yaml b/codefresh.yaml index f124a2a..95c5eb9 100644 --- a/codefresh.yaml +++ b/codefresh.yaml @@ -25,7 +25,7 @@ steps: fetch_envs: stage: prepare title: "Fetch envs" - image: alpine + image: bullseye-slim commands: - cf_export VERSION=$(cat /codefresh/volume/$CF_REPO_NAME/VERSION) build: From c250c5192bba25c12e3437f3316495db7ffda47b Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:04:53 +0300 Subject: [PATCH 02/12] wip --- codefresh.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codefresh.yaml b/codefresh.yaml index 95c5eb9..f124a2a 100644 --- a/codefresh.yaml +++ b/codefresh.yaml @@ -25,7 +25,7 @@ steps: fetch_envs: stage: prepare title: "Fetch envs" - image: bullseye-slim + image: alpine commands: - cf_export VERSION=$(cat /codefresh/volume/$CF_REPO_NAME/VERSION) build: From 360026064ef061261c928d4564900cbd21068349 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:05:52 +0300 Subject: [PATCH 03/12] bump --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 53a75d6..b003284 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.6 +0.2.7 From 7b9b5d79d9099c2715109ca2e326c47a359d2352 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:24:16 +0300 Subject: [PATCH 04/12] wip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cac1437..106ed5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY ./ ./ RUN go build -o ./cf-argo-plugin -FROM bullseye-slim +FROM bullseye RUN apk --update add curl bash RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From 49c683ffd9b8ccf5d48082f2b7658de52e30c495 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:25:53 +0300 Subject: [PATCH 05/12] wip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 106ed5c..25f5850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY ./ ./ RUN go build -o ./cf-argo-plugin -FROM bullseye +FROM alpine RUN apk --update add curl bash RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From d9a1a17d3dbb3498fc3223012bd38680711ed792 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:28:43 +0300 Subject: [PATCH 06/12] move from alpine to debian --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25f5850..fe05c0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY ./ ./ RUN go build -o ./cf-argo-plugin -FROM alpine +FROM debian RUN apk --update add curl bash RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From 81d3b0f4c19ef643ae7ec4ba8ff08d77e2f08f90 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:36:42 +0300 Subject: [PATCH 07/12] wip --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe05c0c..a76ede9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ COPY ./ ./ RUN go build -o ./cf-argo-plugin FROM debian -RUN apk --update add curl bash +RUN apt update && apt upgrade +RUN apt install curl RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From 96afb571f01f9dec244747011a7de1b970b7866c Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:40:01 +0300 Subject: [PATCH 08/12] wip --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a76ede9..ce6da50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,6 @@ COPY ./ ./ RUN go build -o ./cf-argo-plugin FROM debian -RUN apt update && apt upgrade RUN apt install curl RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From f9455548a39955a5671f482f6b5952b1b6722e96 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:44:41 +0300 Subject: [PATCH 09/12] wip --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ce6da50..bc35808 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ COPY ./ ./ RUN go build -o ./cf-argo-plugin FROM debian -RUN apt install curl +RUN apt update && apt upgrade +RUN apt-get install curl RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From 296c95734cbd2c608f3ece3b8f4c3caa3696d280 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Tue, 25 Oct 2022 18:49:05 +0300 Subject: [PATCH 10/12] wip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc35808..32aa1d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN go build -o ./cf-argo-plugin FROM debian RUN apt update && apt upgrade -RUN apt-get install curl +RUN apt-get install curl -y RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts From 37e3d3b7ed6f9e5e2ee781bd1f31fc812e55a109 Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Mon, 31 Oct 2022 17:23:07 +0200 Subject: [PATCH 11/12] wip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 32aa1d9..c410fc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /app COPY ./ ./ RUN go build -o ./cf-argo-plugin -FROM debian +FROM debian:bullseye-slim RUN apt update && apt upgrade RUN apt-get install curl -y RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts From 4562d7eceb5ab58ee85f0b7a5315ea467322405d Mon Sep 17 00:00:00 2001 From: kim-codefresh Date: Sun, 6 Nov 2022 12:24:53 +0200 Subject: [PATCH 12/12] wio --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c410fc1..b860948 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY ./ ./ RUN go build -o ./cf-argo-plugin FROM debian:bullseye-slim -RUN apt update && apt upgrade +RUN apt-get update && apt upgrade -y RUN apt-get install curl -y RUN curl -L https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64 -o /usr/local/bin/kubectl-argo-rollouts RUN chmod +x /usr/local/bin/kubectl-argo-rollouts