Skip to content
Snippets Groups Projects
Unverified Commit 9323c4c9 authored by Frederic Branczyk's avatar Frederic Branczyk Committed by GitHub
Browse files

Merge pull request #436 from lilic/remove-checks-ksm

jsonnet/kube-prometheus/kube-state-metrics: Remove probes
parents b6ad6644 5469bea0
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,9 @@ ...@@ -33,7 +33,9 @@
template+: { template+: {
spec+: { spec+: {
containers: std.map(function(c) c { containers: std.map(function(c) c {
ports: null, ports:: null,
livenessProbe:: null,
readinessProbe:: null,
args: ['--host=127.0.0.1', '--port=8081', '--telemetry-host=127.0.0.1', '--telemetry-port=8082'], args: ['--host=127.0.0.1', '--port=8081', '--telemetry-host=127.0.0.1', '--telemetry-port=8082'],
}, super.containers), }, super.containers),
}, },
......
...@@ -24,20 +24,7 @@ spec: ...@@ -24,20 +24,7 @@ spec:
- --telemetry-host=127.0.0.1 - --telemetry-host=127.0.0.1
- --telemetry-port=8082 - --telemetry-port=8082
image: quay.io/coreos/kube-state-metrics:v1.9.5 image: quay.io/coreos/kube-state-metrics:v1.9.5
livenessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 5
name: kube-state-metrics name: kube-state-metrics
ports: null
readinessProbe:
httpGet:
path: /
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
securityContext: securityContext:
runAsUser: 65534 runAsUser: 65534
- args: - args:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment