Skip to content

Commit

Permalink
Bump K3s version for release-1.32
Browse files Browse the repository at this point in the history
Updates k3s: k3s-io/k3s@124be74...68fbd1a

Signed-off-by: Brad Davidson <[email protected]>
  • Loading branch information
brandond committed Dec 21, 2024
1 parent 86d0f64 commit 381de22
Show file tree
Hide file tree
Showing 10 changed files with 243 additions and 237 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# in the Dockerfile to include the new trivy version that supports VEX
run: |
docker run --rm -v "$(pwd)/build:/build" -v "$(pwd):/workspace" \
-w /workspace rancher/hardened-build-base:v1.22.8b2 \
-w /workspace rancher/hardened-build-base:v1.23.3b1 \
make scan-images
- name: Upload Scan Results
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG KUBERNETES_VERSION=dev

# Build environment
FROM rancher/hardened-build-base:v1.22.9b1 AS build
FROM rancher/hardened-build-base:v1.23.3b1 AS build
ARG DAPPER_HOST_ARCH
ENV ARCH $DAPPER_HOST_ARCH
RUN set -x && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apk --no-cache add \
unzip

# Dapper/Drone/CI environment
FROM rancher/hardened-build-base:v1.21.5b2 AS dapper
FROM rancher/hardened-build-base:v1.23.3b1 AS dapper
ENV DAPPER_ENV GODEBUG REPO TAG GITHUB_ACTION_TAG PAT_USERNAME PAT_TOKEN KUBERNETES_VERSION DOCKER_BUILDKIT DRONE_BUILD_EVENT IMAGE_NAME AWS_SECRET_ACCESS_KEY AWS_ACCESS_KEY_ID ENABLE_REGISTRY
ARG DAPPER_HOST_ARCH
ENV ARCH $DAPPER_HOST_ARCH
Expand Down
3 changes: 3 additions & 0 deletions channels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ channels:
- name: v1.31
latestRegexp: v1\.31\..*
excludeRegexp: ^[^+]+-
- name: v1.32
latestRegexp: v1\.32\..*
excludeRegexp: ^[^+]+-
github:
owner: rancher
repo: rke2
Expand Down
4 changes: 2 additions & 2 deletions charts/chart_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ charts:
- version: v0.26.101
filename: /charts/rke2-flannel.yaml
bootstrap: true
- version: 1.9.100
- version: 1.10.000
filename: /charts/rancher-vsphere-cpi.yaml
bootstrap: true
- version: 3.3.1-rancher700
- version: 3.3.1-rancher800
filename: /charts/rancher-vsphere-csi.yaml
bootstrap: true
- version: 0.2.600
Expand Down
179 changes: 91 additions & 88 deletions go.mod

Large diffs are not rendered by default.

275 changes: 139 additions & 136 deletions go.sum

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions pkg/rke2/clusterrole.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,11 @@ func setClusterRoles() cmds.StartupHook {
logrus.Fatalf("clusterrole: new k8s client: %v", err)
}

stopChan := make(chan struct{})
defer close(stopChan)

// kube-apiserver has a post-start hook that reconciles the built-in cluster RBAC on every startup.
// We're reusing that here to bootstrap our own roles and bindings.
hookContext := genericapiserver.PostStartHookContext{
LoopbackClientConfig: config,
StopCh: stopChan,
Context: ctx,
}

policy := rbacrest.PolicyData{
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-images
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ EOF

if [ "${GOARCH}" != "arm64" ]; then
xargs -n1 -t docker image pull --quiet << EOF > build/images-vsphere.txt
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere:v1.31.0
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere:v1.32.1
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.3.1
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere-csi-release-syncer:v3.3.1
${REGISTRY}/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.12.0
Expand Down
6 changes: 3 additions & 3 deletions scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ REVISION=$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code;
PLATFORM=${GOOS}-${GOARCH}
RELEASE=${PROG}.${PLATFORM}
# hardcode versions unless set specifically
KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.31.4}
KUBERNETES_IMAGE_TAG=${KUBERNETES_IMAGE_TAG:-v1.31.4-rke2r1-build20241212}
KUBERNETES_VERSION=${KUBERNETES_VERSION:-v1.32.0}
KUBERNETES_IMAGE_TAG=${KUBERNETES_IMAGE_TAG:-v1.32.0-rke2r1-build20241212}
ETCD_VERSION=${ETCD_VERSION:-v3.5.16-k3s1}
PAUSE_VERSION=${PAUSE_VERSION:-3.6}
CCM_VERSION=${CCM_VERSION:-v1.31.2-0.20241016053446-0955fa330f90-build20241016}
CCM_VERSION=${CCM_VERSION:-v1.32.0-rc1.0.20241220224140-68fbd1a6b543-build20241221}

if [ -d .git ]; then
if [ -z "$GIT_TAG" ]; then
Expand Down

0 comments on commit 381de22

Please sign in to comment.