diff --git a/deploy/addons/metrics-server/metrics-server-deployment.yaml.tmpl b/deploy/addons/metrics-server/metrics-server-deployment.yaml.tmpl index 9e1d621b96..e8ed7029e4 100644 --- a/deploy/addons/metrics-server/metrics-server-deployment.yaml.tmpl +++ b/deploy/addons/metrics-server/metrics-server-deployment.yaml.tmpl @@ -47,14 +47,14 @@ spec: protocol: TCP readinessProbe: httpGet: - path: /readyz + path: /readyz?exclude=livez port: https scheme: HTTPS periodSeconds: 10 failureThreshold: 3 livenessProbe: httpGet: - path: /livez + path: /livez?exclude=readyz port: https scheme: HTTPS periodSeconds: 10 diff --git a/deploy/kicbase/Dockerfile b/deploy/kicbase/Dockerfile index 56ff88ee11..f1fea1d304 100644 --- a/deploy/kicbase/Dockerfile +++ b/deploy/kicbase/Dockerfile @@ -170,7 +170,7 @@ RUN export ARCH=$(dpkg --print-architecture | sed 's/ppc64el/ppc64le/') && \ curl -LO https://downloadcontent.opensuse.org/repositories/devel:kubic:libcontainers:stable/xUbuntu_20.04/Release.key && \ apt-key add - < Release.key && \ if [ "$ARCH" != "ppc64le" ]; then \ - clean-install containers-common conmon containernetworking-plugins cri-tools crun podman podman-plugins catatonit; \ + clean-install containers-common conmon containernetworking-plugins cri-tools crun podman-plugins catatonit; \ else \ clean-install containers-common conmon containernetworking-plugins crun; \ fi