From de2f38d8c9c92ddf2974354ff2dbb84cf551aec7 Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Sat, 14 Sep 2024 21:56:42 +0200 Subject: [PATCH] Add overlay patches 11 --- ...argocd-notifications-controller-patch.yaml | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/argocd/overlays/argocd-notifications-controller-patch.yaml b/argocd/overlays/argocd-notifications-controller-patch.yaml index fba974e..d17fadd 100644 --- a/argocd/overlays/argocd-notifications-controller-patch.yaml +++ b/argocd/overlays/argocd-notifications-controller-patch.yaml @@ -1,3 +1,17 @@ -- op: replace #action - path: /spec/template/spec/containers/livenessProbe #resouirce we want to change - value: {} #value we want to use for patching \ No newline at end of file +apiVersion: apps/v1 +kind: Deployment +metadata: + name: argocd-notifications-controller + namespace: argocd +$patch: replace +spec: + template: + spec: + containers: + - livenessProbe: {} + # failureThreshold: 3 + # periodSeconds: 10 + # successThreshold: 1 + # tcpSocket: + # port: 9001 + # timeoutSeconds: 1 \ No newline at end of file