Skip to content

Commit 399ccd6

Browse files
committed
fix: change kubectl crictl latest version
Signed-off-by: dusdjhyeon <[email protected]>
1 parent 35958ea commit 399ccd6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ RUN yum install -y https://yum.oracle.com/repo/OracleLinux/OL9/appstream/$(uname
4242
RUN yum install -y https://yum.oracle.com/repo/OracleLinux/OL9/appstream/$(uname -m)/getPackage/stress-ng-0.14.00-2.el9.$(uname -m).rpm
4343

4444
#Installing Kubectl
45-
ENV KUBE_LATEST_VERSION="v1.30.3"
45+
ENV KUBE_LATEST_VERSION="v1.31.0"
4646
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/${TARGETARCH}/kubectl -o /usr/bin/kubectl && \
4747
chmod 755 /usr/bin/kubectl
4848

4949
#Installing crictl binaries
50-
RUN curl -L https://github.com/kubernetes-sigs/cri-tools/releases/download/v1.30.1/crictl-v1.30.1-linux-${TARGETARCH}.tar.gz --output crictl-v1.30.1-linux-${TARGETARCH}.tar.gz && \
51-
tar zxvf crictl-v1.30.1-linux-${TARGETARCH}.tar.gz -C /sbin && \
50+
RUN curl -L https://github.com/kubernetes-sigs/cri-tools/releases/download/v1.31.1/crictl-v1.31.1-linux-${TARGETARCH}.tar.gz --output crictl-v1.31.1-linux-${TARGETARCH}.tar.gz && \
51+
tar zxvf crictl-v1.31.1-linux-${TARGETARCH}.tar.gz -C /sbin && \
5252
chmod 755 /sbin/crictl
5353

5454
#Installing promql cli binaries

0 commit comments

Comments
 (0)