File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
apps/app-proxy/_components/codefresh-base Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 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}.*"
2
11
3
12
WORKDIR /src
4
13
5
14
COPY add-cluster.sh .
6
15
7
- CMD [ "./add-cluster.sh" ]
8
-
16
+ CMD [ "./add-cluster.sh" ]
9
17
ENTRYPOINT [ "bash" ]
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: Component
3
3
images :
4
4
- name : quay.io/codefresh/cap-app-proxy
5
5
newName : quay.io/codefresh/cap-app-proxy
6
- newTag : 1.1943 .0
6
+ newTag : 1.1951 .0
7
7
resources :
8
8
- app-proxy.deploy.yaml
9
9
- app-proxy.svc.yaml
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ configMapGenerator:
12
12
- name : codefresh-cm
13
13
behavior : create
14
14
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)
17
17
- appsetRequeueTime=15
18
18
19
19
replacements :
You can’t perform that action at this time.
0 commit comments