Skip to content

Commit 6bc2591

Browse files
committed
feat: chart to v0.3.42
1 parent af7ed52 commit 6bc2591

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
[ -z "${GOPATH}" ] && export GOPATH=$HOME/go
105105
PATH="${GOPATH}/bin:${PATH}"
106-
kind create cluster --image kindest/node:v1.28.7
106+
kind create cluster --image kindest/node:v1.29.4
107107
echo "sleep 60s to wait node ready"
108108
sleep 60s
109109
kubectl get node

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG TARGETOS
2020
# Build
2121
RUN mkdir bin
2222
RUN apt install -y curl tar
23-
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.28.4/bin/${TARGETOS}/${TARGETARCH}/kubectl
23+
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.29.7/bin/${TARGETOS}/${TARGETARCH}/kubectl
2424
RUN chmod +x ./kubectl
2525
RUN mv kubectl bin
2626
RUN curl -LO https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v3.8.7/kustomize_v3.8.7_${TARGETOS}_${TARGETARCH}.tar.gz

Dockerfile-check

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY bin/ bin/
2020
RUN apt install -y curl
2121
RUN bin/setup.sh
2222
# Temporary fix see https://github.com/fidelity/kraan/issues/114
23-
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.28.4/bin/linux/amd64/kubectl
23+
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.29.7/bin/linux/amd64/kubectl
2424
RUN chmod +x ./kubectl
2525
RUN mv kubectl bin
2626
RUN cp bin/* /usr/local/bin

Dockerfile-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN go mod download
1818
RUN mkdir bin
1919
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o bin/kraan-controller main/main.go
2020
RUN apt install -y curl
21-
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.28.4/bin/linux/amd64/kubectl
21+
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.29.7/bin/linux/amd64/kubectl
2222
RUN chmod +x ./kubectl
2323
RUN mv kubectl bin
2424
RUN curl -LO https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v3.8.7/kustomize_v3.8.7_linux_amd64.tar.gz

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.3.41
1+
v0.3.42

bin/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linter_version=1.55.2
44
mockgen_version=v1.6.0
55
helm_version=v3.6.1
66
kind_version=v0.11.1
7-
kubectl_version=v1.28.4
7+
kubectl_version=v1.29.7
88
kustomize_version=v3.8.7
99

1010
function usage()

chart/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
description: A Helm chart for kraan controller
33
name: kraan-controller
44
type: application
5-
appVersion: v0.3.41
6-
version: v0.3.41
5+
appVersion: v0.3.42
6+
version: v0.3.42

0 commit comments

Comments
 (0)