26 lines
674 B
YAML
26 lines
674 B
YAML
- op: add
|
|
path: /spec/template/metadata/annotations
|
|
value:
|
|
dapr.io/enabled: "true"
|
|
dapr.io/app-id: "production-hipster"
|
|
dapr.io/app-port: "8000"
|
|
dapr.io/config: "tracing"
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/env
|
|
value: []
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/env/-
|
|
value:
|
|
name: LOG_LEVEL
|
|
value: "4"
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/env/-
|
|
value:
|
|
name: CI_ENVIRONMENT
|
|
value: "production"
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/livenessProbe/httpGet/path
|
|
value: /healthz
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/readinessProbe/httpGet/path
|
|
value: /healthz |