Skip to content

Commit 77e0c4c

Browse files
committed
chore: update readiness and liveness probe configurations in kustomization files
- Changed readiness and liveness probe configurations from tcpSocket to httpGet for both management-web and web kustomization files to align with updated standards.
1 parent ccfcc3a commit 77e0c4c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

infra/k8s/base/management-web/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ replacements:
3232
name: management-web
3333
fieldPaths:
3434
- spec.template.spec.containers.0.ports.0.containerPort
35-
- spec.template.spec.containers.0.readinessProbe.tcpSocket.port
36-
- spec.template.spec.containers.0.livenessProbe.tcpSocket.port
35+
- spec.template.spec.containers.0.readinessProbe.httpGet.port
36+
- spec.template.spec.containers.0.livenessProbe.httpGet.port

infra/k8s/base/web/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ replacements:
3232
name: web
3333
fieldPaths:
3434
- spec.template.spec.containers.0.ports.0.containerPort
35-
- spec.template.spec.containers.0.readinessProbe.tcpSocket.port
36-
- spec.template.spec.containers.0.livenessProbe.tcpSocket.port
35+
- spec.template.spec.containers.0.readinessProbe.httpGet.port
36+
- spec.template.spec.containers.0.livenessProbe.httpGet.port

0 commit comments

Comments
 (0)