Skip to content

Commit 798d466

Browse files
zhhrayhuizhang
andauthored
Helmrequest version is upgraded to V1 to support OCI Chart installation (#110)
* Helmrequest version is upgraded to V1 to support OCI Chart installation Co-authored-by: huizhang <[email protected]>
1 parent 8b03cc7 commit 798d466

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2880
-553
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ artifacts/coverage.out
66
cover.out
77
bin/manager
88
bin/
9+
Dockerfile.local
10+
local-build.sh

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN go build -ldflags '-w -s' -a -installsuffix cgo -o manager main.go
3030
# Use distroless as minimal base image to package the manager binary
3131
# Refer to https://github.com/GoogleContainerTools/distroless for more details
3232
# FROM gcr.azk8s.cn/distroless/static:latest
33-
FROM alpine:3.14
33+
FROM alpine:3.15
3434

3535
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && apk update && apk add subversion
3636
RUN echo 'hosts: files dns' > /etc/nsswitch.conf

Dockerfile.arm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM arm64v8/alpine:3.11
1+
FROM arm64v8/alpine:3.15
22

33
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && apk update && apk add subversion
44
RUN echo 'hosts: files dns' > /etc/nsswitch.conf

Dockerfile.github

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN CGO_ENABLED=0 GOOS=linux GO111MODULE=on go build -a -o manager main.go
2323
# Use distroless as minimal base image to package the manager binary
2424
# Refer to https://github.com/GoogleContainerTools/distroless for more details
2525
# FROM gcr.azk8s.cn/distroless/static:latest
26-
FROM alpine:3.14
26+
FROM alpine:3.15
2727

2828
RUN apk update && apk add subversion
2929
RUN echo 'hosts: files dns' > /etc/nsswitch.conf

0 commit comments

Comments
 (0)