Skip to content

Commit

Permalink
Upgrade to 1.25.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anguslees committed Jan 12, 2023
1 parent 5d880e8 commit 9dc1012
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions kube-system.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ local certman = import "cert-manager.jsonnet";
// 3. kubelets (see coreos-pxe-install.jsonnet:coreos_kubelet_tag)

// renovate: depName=registry.k8s.io/kube-proxy
local version = "v1.24.9";
local version = "v1.25.3";
// renovate: depName=registry.k8s.io/kube-apiserver
local apiserverVersion = "v1.24.9";
local apiserverVersion = "v1.25.3";

local externalHostname = "kube.lan";
local apiServer = "https://%s:6443" % [externalHostname];
Expand Down Expand Up @@ -324,19 +324,20 @@ local CA(name, namespace, issuer) = {
GOMEMLIMIT: kube.ResourceFieldRef("requests.memory"),
},
livenessProbe: {
httpGet: {path: "/health?serializable=true", port: 2381, scheme: "HTTP"},
httpGet: {path: "/health?serializable=true&exclude=NOSPACE", port: 2381, scheme: "HTTP"},
// v1.23 + GRPCContainerProbe feature gate
//grpc: {port: 2379}
failureThreshold: 5,
timeoutSeconds: 15,
periodSeconds: 30,
},
readinessProbe: self.livenessProbe {
httpGet: {path: "/health", port: 2381, scheme: "HTTP"},
httpGet+: {path: "/health?serializable=false"},
tcpSocket: null,
failureThreshold: 3,
},
startupProbe: self.livenessProbe {
httpGet+: {path: "/health?serializable=false"},
local timeoutSeconds = 30 * 60,
failureThreshold: std.ceil(timeoutSeconds / self.periodSeconds),
},
Expand Down Expand Up @@ -518,7 +519,6 @@ local CA(name, namespace, issuer) = {
"metrics-bind-address": "$(POD_IP):10249",
"healthz-bind-address": "$(POD_IP):10256",
feature_gates_:: {
IPv6DualStack: true,
},
"feature-gates": std.join(",", ["%s=%s" % kv for kv in kube.objectItems(self.feature_gates_)]),
},
Expand Down Expand Up @@ -640,7 +640,6 @@ local CA(name, namespace, issuer) = {
command: ["kube-apiserver"],
args_+: {
feature_gates_:: {
IPv6DualStack: true,
DisableCloudProviders: true,
},
"feature-gates": std.join(",", ["%s=%s" % kv for kv in kube.objectItems(self.feature_gates_)]),
Expand Down Expand Up @@ -701,6 +700,9 @@ local CA(name, namespace, issuer) = {
// Workaround old coreos update-operator code.
// https://github.com/coreos/container-linux-update-operator/issues/196
"extensions/v1beta1/daemonsets": true,
// Old rook-ceph version
"batch/v1beta1": true,
"policy/v1beta1": true,
},
"runtime-config": std.join(",", ["%s=%s" % kv for kv in kube.objectItems(self.runtime_config_)]),
},
Expand Down Expand Up @@ -858,7 +860,6 @@ local CA(name, namespace, issuer) = {
"leader-elect-resource-lock": "leases",

feature_gates_:: {
IPv6DualStack: true,
DisableCloudProviders: true,
},
"feature-gates": std.join(",", ["%s=%s" % kv for kv in kube.objectItems(self.feature_gates_)]),
Expand Down Expand Up @@ -1536,7 +1537,6 @@ local CA(name, namespace, issuer) = {
evictionPressureTransitionPeriod: "5m",

featureGates: {
IPv6DualStack: true,
NodeSwap: true,
DisableCloudProviders: true,
},
Expand Down

0 comments on commit 9dc1012

Please sign in to comment.