Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies.yaml with Kubernetes v1.32 #3846

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ dependencies:
# Example:
# - v1.100.0-go1.17-bullseye.0 satisfies SemVer regex, while:
# - v1.100-go1.17-bullseye.0 does not
#
# Update after the stable marker has been updated to stable.0
- name: "Kubernetes version (stable.0)"
version: v1.31.0
refPaths:
Expand All @@ -107,6 +109,7 @@ dependencies:
- path: images/build/cross/variants.yaml
match: "KUBERNETES_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"

# Update after the stable marker has been updated to stable.0
- name: "Kubernetes version (next candidate.0)"
version: v1.32.0
refPaths:
Expand Down Expand Up @@ -179,6 +182,28 @@ dependencies:
# - path: images/build/cross/variants.yaml
# match: "CONFIG: 'go\\d+.\\d+-bullseye'"

# kube-cross (Kubernetes v1.32)
# To be updated before kubernetes/kubernetes update
- name: "registry.k8s.io/build-image/kube-cross (v1.32-go1.23)"
version: v1.32.0-go1.23.3-bullseye.0
refPaths:
- path: images/build/cross/variants.yaml
match: "IMAGE_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"

- name: "registry.k8s.io/build-image/kube-cross: config variant (v1.32-go1.23)"
version: go1.23-bullseye
refPaths:
- path: images/build/cross/variants.yaml
match: "CONFIG: 'go\\d+.\\d+-bullseye'"

- name: "registry.k8s.io/build-image/kube-cross: image revision (v1.32-go1.23)"
version: 0
refPaths:
- path: images/build/cross/Makefile
match: REVISION \?= \d+
- path: images/build/cross/variants.yaml
match: REVISION:\ '\d+'

# kube-cross (Kubernetes v1.31)
# To be updated before kubernetes/kubernetes update
- name: "registry.k8s.io/build-image/kube-cross (v1.31-go1.23)"
Expand Down Expand Up @@ -322,6 +347,13 @@ dependencies:
- path: images/releng/k8s-ci-builder/variants.yaml
match: "GO_VERSION: '\\d+.\\d+(alpha|beta|rc)?\\.?(\\d+)?'"

# Golang (previous release branch: 1.32)
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.32)"
version: 1.23.3
refPaths:
- path: images/releng/k8s-ci-builder/variants.yaml
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?

# Golang (previous release branch: 1.31)
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.31)"
version: 1.22.8
Expand Down