File tree 3 files changed +5
-57
lines changed
3 files changed +5
-57
lines changed Original file line number Diff line number Diff line change @@ -130,55 +130,7 @@ volumes:
130
130
- name : docker
131
131
host :
132
132
path : /var/run/docker.sock
133
- ---
134
- kind : pipeline
135
- name : s390x
136
- type : docker
137
-
138
- platform :
139
- os : linux
140
- arch : amd64
141
-
142
- node :
143
- arch : s390x
144
-
145
- steps :
146
- - name : build
147
- image : rancher/dapper:v0.5.8
148
- commands :
149
- - dapper ci
150
- volumes :
151
- - name : docker
152
- path : /var/run/docker.sock
153
133
154
- - name : docker-publish
155
- image : rancher/drone-images:docker-s390x
156
- volumes :
157
- - name : docker
158
- path : /var/run/docker.sock
159
- settings :
160
- dockerfile : package/Dockerfile
161
- password :
162
- from_secret : docker_password
163
- repo : " rancher/klipper-helm"
164
- tag : " ${DRONE_TAG}-s390x"
165
- username :
166
- from_secret : docker_username
167
- build_args :
168
- - ARCH=s390x
169
- when :
170
- instance :
171
- - drone-publish.k3s.io
172
- ref :
173
- - refs/head/master
174
- - refs/tags/*
175
- event :
176
- - tag
177
-
178
- volumes :
179
- - name : docker
180
- host :
181
- path : /var/run/docker.sock
182
134
---
183
135
kind : pipeline
184
136
name : manifest
@@ -199,7 +151,6 @@ steps:
199
151
- linux/amd64
200
152
- linux/arm64
201
153
- linux/arm
202
- - linux/s390x
203
154
target : " rancher/klipper-helm:${DRONE_TAG}"
204
155
template : " rancher/klipper-helm:${DRONE_TAG}-ARCH"
205
156
when :
@@ -215,7 +166,6 @@ depends_on:
215
166
- amd64
216
167
- arm64
217
168
- arm
218
- - s390x
219
169
220
170
...
221
171
Original file line number Diff line number Diff line change 1
- # need to stick with alpine 3.17 for docker 20.10 until the s390x runners are upgraded
2
- # ref: https://github.com/alpinelinux/docker-alpine/issues/182
3
- FROM alpine:3.17
1
+ FROM alpine:3.19
4
2
5
3
ARG DAPPER_HOST_ARCH
6
4
ENV ARCH $DAPPER_HOST_ARCH
Original file line number Diff line number Diff line change 1
- FROM alpine:3.18 as extract
1
+ FROM alpine:3.19 as extract
2
2
RUN apk add -U curl ca-certificates
3
3
ARG ARCH
4
4
RUN curl https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
5
5
RUN mv /usr/bin/helm /usr/bin/helm_v2
6
- RUN curl https://get.helm.sh/helm-v3.12.3 -linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
6
+ RUN curl https://get.helm.sh/helm-v3.14.2 -linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
7
7
RUN mv /usr/bin/helm /usr/bin/helm_v3
8
8
COPY entry /usr/bin/
9
9
10
- FROM golang:1.20-alpine3.18 as plugins
10
+ FROM golang:1.20-alpine3.19 as plugins
11
11
RUN apk add -U curl ca-certificates build-base binutils-gold
12
12
ARG ARCH
13
13
COPY --from=extract /usr/bin/helm_v3 /usr/bin/helm
@@ -23,7 +23,7 @@ RUN mkdir -p /go/src/github.com/helm/helm-mapkubeapis && \
23
23
/go/src/github.com/helm/helm-mapkubeapis/config \
24
24
/root/.local/share/helm/plugins/helm-mapkubeapis/
25
25
26
- FROM alpine:3.18
26
+ FROM alpine:3.19
27
27
ARG BUILDDATE
28
28
LABEL buildDate=$BUILDDATE
29
29
RUN apk --no-cache upgrade && \
You can’t perform that action at this time.
0 commit comments