Skip to content

Kubernetes 1.26 upgrade #2458

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

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
87f2e34
went through most of the steps in versions.md up to Non-versioned mod…
tfriedel May 31, 2023
e7ae142
updated nvidia device plugin to 0.14.0
tfriedel May 31, 2023
380a25c
updated Neuron device plugin and scheduler
tfriedel May 31, 2023
98d2ab3
updated prometheus dcgm exporter, statsd exporter, prometheus, promet…
tfriedel May 31, 2023
ea5a449
incorporated changes in Prometheus Kubelet Exporter
tfriedel Jun 1, 2023
80823c9
updated Prometheus kube-state-metrics Exporter
tfriedel Jun 1, 2023
1aa8e19
updated prometheus node exporter to 1.5.0
tfriedel Jun 2, 2023
98a0e52
update grafana from 8.0.4 to 9.5.2
tfriedel Jun 2, 2023
7a2c9e5
updated event exporter
tfriedel Jun 2, 2023
02d5295
updated to alpine 3.18
tfriedel Jun 2, 2023
1242e73
updated Python client dependencies to python 3.7 and newest ver of se…
tfriedel Jun 2, 2023
f83a91c
replaced Handler with ProbeHandler
tfriedel Jun 2, 2023
9f2eedc
changed cortex version to 0.42.2
tfriedel Jun 2, 2023
bd5402e
newest istio go-client changed to pointers
tfriedel Jun 2, 2023
7da2f36
resolved some conflicting packages related to controller-runtime, ist…
tfriedel Jun 2, 2023
38e64a9
changed to kubernetes 1.26 because of incompatibility of amazon-vpc-c…
tfriedel Jun 2, 2023
c168ca1
tests are passing now
tfriedel Jun 2, 2023
4d5ca1a
formatting
tfriedel Jun 3, 2023
16b652c
update of go tools
tfriedel Jun 3, 2023
5633900
some fixes. golang version set to same as in other files
tfriedel Jun 9, 2023
774986d
linter: disabled looppointer because of some errors I couldn't fix. d…
tfriedel Jun 9, 2023
a097eda
set AMI Family to AmazonLinux2 (this was used in previous version per…
tfriedel Jun 9, 2023
aca7d70
downgraded cluster-autoscaler to a version for kubernetes 1.26
tfriedel Jun 12, 2023
7963093
downgraded promotheus operator to 0.62 because of some issues
tfriedel Jun 12, 2023
d639980
use autoscaling v2 instead of b2beta2 + other fixes
tfriedel Jun 12, 2023
5384483
remove mounting of /var/run/docker.sock because we switched from dock…
tfriedel Jun 12, 2023
4f5b109
k8s-device-plugin:v0.14.0-ubuntu20.04 -> k8s-device-plugin:v0.14.0
tfriedel Jun 13, 2023
c594507
fix: nvidia device plugin was not installed
tfriedel Jun 13, 2023
f89cf45
updated go version in CONTRIBUTING.md
tfriedel Jun 13, 2023
7d63258
disabled use of docker for validating docker images as it's not suppo…
tfriedel Jun 13, 2023
8858679
get yaml, go-input and autosccaler from our fork at PEAT-AI
tfriedel Jun 13, 2023
1cf0e42
formatting / make linter happy
tfriedel Jun 13, 2023
6d56744
removed unneccesary file
tfriedel Jun 13, 2023
a1435ea
replaced all remaining references from k8s.gcr.io to registry.k8s.io
tfriedel Jun 13, 2023
81fb67b
fix for "failed to create iamserviceaccount(s)" in case two clusters …
tfriedel Jun 16, 2023
a388d20
fix for ListTagsLogGroup, has been deprecated
tfriedel Jun 11, 2024
08c47ca
update python in manager to ver 3.10 because boto3 for 3.7 is deprecated
tfriedel Jun 12, 2024
98b59ef
updated ami for gpu and updated nvidia device plugin from 0.14.0 to 0…
tfriedel Jun 12, 2024
aa235bf
added images-manager and images-nvidia-device-plugin make targets
tfriedel Apr 2, 2025
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
Prev Previous commit
Next Next commit
downgraded cluster-autoscaler to a version for kubernetes 1.26
  • Loading branch information
tfriedel committed Jun 12, 2023
commit aca7d70eb40e532b3bd89ca8b817160f9ffbccfc
4 changes: 2 additions & 2 deletions images/cluster-autoscaler/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

ARG TARGETARCH, TARGETOS

FROM golang:1.20.4 AS builder
RUN git clone -b cluster-autoscaler-1.27.2-cortex --depth 1 https://github.com/tfriedel/autoscaler /k8s.io/autoscaler
FROM golang:1.19.7 AS builder
RUN git clone -b cluster-autoscaler-1.26.3-cortex --depth 1 https://github.com/tfriedel/autoscaler /k8s.io/autoscaler
WORKDIR /k8s.io/autoscaler/cluster-autoscaler
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build --installsuffix cgo -o cluster-autoscaler k8s.io/autoscaler/cluster-autoscaler \
&& cp cluster-autoscaler /usr/local/bin
Expand Down