I am working on kubernetes base/ overlays approach.
Task: add readinessProve to one of the environments; Problem: I have apiVersion: apps.openshift.io/v1, kind: DeploymentConfig and it's not supported with patchStrategicMerge.
Is it possible to add whole object via patchesJson6902 op: add?
Somethign like:
- op: add
path: /spec/template/spec/containers/0
value:
readinessProbe:
failureThreshold: 3
httpGet:
path: /actuator/health
port: 8080