Merge pull request #118909 from dims/bump-to-latest-node-problem-detector-version-with-arm64

Bump to latest node-problem-detector version with arm64
This commit is contained in:
Kubernetes Prow Robot 2023-06-27 14:58:42 -07:00 committed by GitHub
commit 48a6fb0c42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -86,6 +86,21 @@ dependencies:
match: BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
- path: cluster/images/etcd/migrate/options.go
- name: "node-problem-detector"
version: 0.8.13
refPaths:
- path: test/e2e_node/image_list.go
match: const defaultImage
# TODO(dims): Ensure newer versions get uploaded to
# - https://console.cloud.google.com/storage/browser/gke-release/winnode/node-problem-detector
# - https://gcsweb.k8s.io/gcs/kubernetes-release/node-problem-detector/
# and then the following references get fixed.
#
# - path: cluster/gce/gci/configure.sh
# match: DEFAULT_NPD_VERSION=
#- path: cluster/gce/windows/k8s-node-setup.psm1
# match: DEFAULT_NPD_VERSION
# From https://github.com/etcd-io/etcd/blob/main/Makefile
- name: "golang: etcd release version"
version: 1.19.9 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md

View File

@ -106,7 +106,7 @@ func isRunningOnArm64() bool {
}
func getNodeProblemDetectorImage() string {
const defaultImage string = "registry.k8s.io/node-problem-detector/node-problem-detector:v0.8.7"
const defaultImage string = "registry.k8s.io/node-problem-detector/node-problem-detector:v0.8.13"
image := os.Getenv("NODE_PROBLEM_DETECTOR_IMAGE")
if image == "" {
image = defaultImage