Skip to content

Commit fa2803e

Browse files
committed
feat: Add multi-arch
Signed-off-by: Daniel Campos Olivares <dacamposol@gmail.com>
1 parent 3457fec commit fa2803e

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

add-cluster/Dockerfile

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1-
FROM bitnami/kubectl:1.24
1+
FROM bitnami/minideb:bullseye
2+
3+
ARG VERSION="1.24"
4+
5+
RUN apt-get update && \
6+
apt-get install -y ca-certificates curl && \
7+
curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg && \
8+
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list && \
9+
apt-get update && \
10+
apt-get install -y kubectl="${VERSION}.*"
211

312
WORKDIR /src
413

514
COPY add-cluster.sh .
615

7-
CMD [ "./add-cluster.sh" ]
8-
16+
CMD [ "./add-cluster.sh"]
917
ENTRYPOINT [ "bash" ]

csdp/base_components/apps/app-proxy/_components/codefresh-base/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Component
33
images:
44
- name: quay.io/codefresh/cap-app-proxy
55
newName: quay.io/codefresh/cap-app-proxy
6-
newTag: 1.1943.0
6+
newTag: 1.1951.0
77
resources:
88
- app-proxy.deploy.yaml
99
- app-proxy.svc.yaml

csdp/base_components/bootstrap/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ configMapGenerator:
1212
- name: codefresh-cm
1313
behavior: create
1414
literals:
15-
- version=0.0.557 # Runtime version
16-
- bootstrapRevision=0.0.557 # Tag to use for bootstrap (change this to the name of your branch if you want to test changes)
15+
- version=0.0.558 # Runtime version
16+
- bootstrapRevision=0.0.558 # Tag to use for bootstrap (change this to the name of your branch if you want to test changes)
1717
- appsetRequeueTime=15
1818

1919
replacements:

0 commit comments

Comments
 (0)