Skip to content

Commit 6f8f7d1

Browse files
committed
fixup! enhancement: add livez endpoint
1 parent eb80c09 commit 6f8f7d1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/autosharding/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
name: telemetry
5050
readinessProbe:
5151
httpGet:
52-
path: /
52+
path: /metrics
5353
port: 8081
5454
initialDelaySeconds: 5
5555
timeoutSeconds: 5

examples/daemonsetsharding/daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
name: telemetry
4545
readinessProbe:
4646
httpGet:
47-
path: /
47+
path: /metrics
4848
port: 8081
4949
initialDelaySeconds: 5
5050
timeoutSeconds: 5

examples/daemonsetsharding/deployment-no-node-pods.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
name: telemetry
4040
readinessProbe:
4141
httpGet:
42-
path: /
42+
path: /metrics
4343
port: 8081
4444
initialDelaySeconds: 5
4545
timeoutSeconds: 5

examples/daemonsetsharding/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
name: telemetry
3939
readinessProbe:
4040
httpGet:
41-
path: /
41+
path: /metrics
4242
port: 8081
4343
initialDelaySeconds: 5
4444
timeoutSeconds: 5

examples/standard/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
name: telemetry
3737
readinessProbe:
3838
httpGet:
39-
path: /
39+
path: /metrics
4040
port: 8081
4141
initialDelaySeconds: 5
4242
timeoutSeconds: 5

jsonnet/kube-state-metrics/kube-state-metrics.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
} },
198198
readinessProbe: { timeoutSeconds: 5, initialDelaySeconds: 5, httpGet: {
199199
port: 8081,
200-
path: '/',
200+
path: '/metrics',
201201
} },
202202
};
203203

0 commit comments

Comments
 (0)