File tree 3 files changed +30
-0
lines changed
3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 17
17
--set " *.platform=linux/amd64"
18
18
echo " Building dotnet" && docker buildx bake -f docker-compose.dotnet.yml \
19
19
--set " *.platform=linux/amd64"
20
+ echo " Building helm" && docker buildx bake -f docker-compose.helm.yml \
21
+ --set " *.platform=linux/amd64"
20
22
21
23
push :
22
24
docker buildx bake -f docker-compose.dev.yml \
43
45
docker buildx bake -f docker-compose.dotnet.yml \
44
46
--push \
45
47
--set " *.platform=linux/amd64"
48
+ docker buildx bake -f docker-compose.helm.yml \
49
+ --push \
50
+ --set " *.platform=linux/amd64"
46
51
47
52
push.rust :
48
53
docker buildx bake -f docker-compose.rust.yml \
Original file line number Diff line number Diff line change
1
+ version : ' 3.7'
2
+
3
+ services :
4
+ helm3.14.4 :
5
+ image : okteto/helm:3.14.4
6
+ build :
7
+ context : .
8
+ dockerfile : helm/Dockerfile
9
+ args :
10
+ VERSION : " 3.14.4"
11
+ PLUGIN_UNITTEST_VERSION : " 0.3.0"
Original file line number Diff line number Diff line change
1
+ FROM golang:1.22-bookworm
2
+
3
+ ARG VERSION=3.14.4
4
+ ARG PLUGIN_UNITTEST_VERSION=0.3.0
5
+
6
+ RUN curl -sLf --retry 3 -o helm.tar.gz https://get.helm.sh/helm-v${VERSION}-linux-amd64.tar.gz && \
7
+ mkdir -p helm && tar -C helm -xf helm.tar.gz && \
8
+ cp helm/linux-amd64/helm /usr/local/bin/helm && \
9
+ chmod +x /usr/local/bin/helm && \
10
+ /usr/local/bin/helm version
11
+
12
+ RUN helm plugin install https://github.com/helm-unittest/helm-unittest --version v${PLUGIN_UNITTEST_VERSION}
13
+
14
+ CMD ["/bin/sh" ]
You can’t perform that action at this time.
0 commit comments