Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions base-kustomize/heat/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,37 @@ resources:
- hpa-heat-api.yaml
- hpa-heat-cfn.yaml
- hpa-heat-engine.yaml

patches:
- target:
kind: Deployment
name: heat-api
patch: |-
- op: replace
path: /spec/template/spec/containers/0/livenessProbe
value:
failureThreshold: 3
httpGet:
path: /
port: 8004
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 60
successThreshold: 1
timeoutSeconds: 120
- target:
kind: Deployment
name: heat-cfn
patch: |-
- op: replace
path: /spec/template/spec/containers/0/livenessProbe
value:
failureThreshold: 3
httpGet:
path: /
port: 8004
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 60
successThreshold: 1
timeoutSeconds: 120