Skip to content

Commit

Permalink
fixup! enhancement: add livez endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rexagod committed Jun 25, 2024
1 parent eb80c09 commit 6f8f7d1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/autosharding/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
name: telemetry
readinessProbe:
httpGet:
path: /
path: /metrics
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion examples/daemonsetsharding/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
name: telemetry
readinessProbe:
httpGet:
path: /
path: /metrics
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion examples/daemonsetsharding/deployment-no-node-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
name: telemetry
readinessProbe:
httpGet:
path: /
path: /metrics
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion examples/daemonsetsharding/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
name: telemetry
readinessProbe:
httpGet:
path: /
path: /metrics
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion examples/standard/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
name: telemetry
readinessProbe:
httpGet:
path: /
path: /metrics
port: 8081
initialDelaySeconds: 5
timeoutSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/kube-state-metrics/kube-state-metrics.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
} },
readinessProbe: { timeoutSeconds: 5, initialDelaySeconds: 5, httpGet: {
port: 8081,
path: '/',
path: '/metrics',
} },
};

Expand Down

0 comments on commit 6f8f7d1

Please sign in to comment.