Skip to content

Commit

Permalink
Merge pull request #183 from imtoanle/update-probe-locatepin
Browse files Browse the repository at this point in the history
Update probe locatepin
  • Loading branch information
imtoanle authored Mar 26, 2024
2 parents e794fc2 + dfc44f8 commit 34edbc4
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions kubernetes/apps/business/locatepin/app/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,28 @@ spec:
replicas: 1
strategy: Recreate
annotations:
# secret.reloader.stakater.com/reload: "chatwoot-vietwings-secret-envs"
configmap.reloader.stakater.com/reload: "locatepin-backend-secrets"
containers:
main:
image:
repository: ghcr.io/imtoanle/locatepin-server
tag: 0.0.2
pullPolicy: Always
probes:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /health
port: &port 8888
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: false
# resources:
# requests:
# cpu: 250m
Expand All @@ -50,13 +65,28 @@ spec:
adminfe:
replicas: 1
annotations:
# secret.reloader.stakater.com/reload: "chatwoot-vietwings-secret-envs"
# configmap.reloader.stakater.com/reload: "locatepin-backend-secrets"
containers:
main:
image:
repository: ghcr.io/imtoanle/locatepin-adminfe
tag: 0.0.2
pullPolicy: Always
probes:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /api/health
port: &port 8080
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: false
# resources:
# requests:
# cpu: 250m
Expand Down

0 comments on commit 34edbc4

Please sign in to comment.