Skip to content

Commit

Permalink
bump k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin07 committed Aug 15, 2024
1 parent d40977d commit 6ca4049
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/kube_common/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

k8s_version: 1.30.3
k8s_version: 1.30.4
k8s_version_prefix: "{{ k8s_version | ansible.builtin.regex_search('^[0-9]+.[0-9]+') }}"

kubernetes_packages:
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/kubectl_binary/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

kubectl_version: 1.30.3
kubectl_version: 1.30.4
k8s_version_prefix: "{{ kubectl_version | ansible.builtin.regex_search('^[0-9]+.[0-9]+') }}"
4 changes: 2 additions & 2 deletions pipelines/dockerfiles/tool-box/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ RUN set -exo pipefail; curl -fsSL --retry 3 -o ${TERRAFORM_FILE} ${TERRAFORM_URL
unzip -d ${INSTALL_DIR} ${TERRAFORM_FILE}; \
chmod +x ${INSTALL_DIR}/terraform

ARG KUBECTL_VERSION=v1.30.3
ARG KUBECTL_VERSION=v1.30.4
ARG KUBECTL_URL=https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl
ARG KUBECTL_FILE=kubectl
ARG KUBECTL_SHA256=abd83816bd236b266c3643e6c852b446f068fe260f3296af1a25b550854ec7e5
ARG KUBECTL_SHA256=2ffd023712bbc1a9390dbd8c0c15201c165a69d394787ef03eda3eccb4b9ac06

RUN set -exo pipefail; curl -fsSL --retry 3 -o ${KUBECTL_FILE} ${KUBECTL_URL}; \
sha256sum ${KUBECTL_FILE} | grep ${KUBECTL_SHA256}; \
Expand Down
2 changes: 1 addition & 1 deletion pipelines/kubernetes/k8s-upgrade/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pipeline {
}

parameters {
string(name: 'K8S_VERSION', defaultValue: '1.30.3', description: 'The version of Kubernetes to upgrade to.')
string(name: 'K8S_VERSION', defaultValue: '1.30.4', description: 'The version of Kubernetes to upgrade to.')
}

environment {
Expand Down
2 changes: 1 addition & 1 deletion pipelines/kubernetes/k8s-upgrade/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Upgrade Kubernetes cluster.
parameters:
- name: K8S_VERSION
type: stringParam
defaultValue: 1.30.3
defaultValue: 1.30.4
description: The version of Kubernetes to upgrade to.

extensions:
Expand Down

0 comments on commit 6ca4049

Please sign in to comment.