15 lines
457 B
YAML
15 lines
457 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: deployment
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: manager
|
|
env:
|
|
# We use a patch to set the USE_ISTIO because in other patches
|
|
# we want to set it to a configMapRef and so if we include the value
|
|
# in the base when we do the merge we end up with 2 fields setting the value.
|
|
- name: USE_ISTIO
|
|
value: "false" |