diff --git a/k8s/applications/templates/loki.yaml b/k8s/applications/templates/loki.yaml index 486b75e..7b6e6f4 100644 --- a/k8s/applications/templates/loki.yaml +++ b/k8s/applications/templates/loki.yaml @@ -31,3 +31,7 @@ spec: kind: PodLogs jsonPointers: - /spec/relabelings + - group: apps + kind: StatefulSet + jsonPointers: + - /spec/replicas diff --git a/k8s/argocd/base/applications.yaml b/k8s/argocd/base/applications.yaml index 4c6870a..4dc187e 100644 --- a/k8s/argocd/base/applications.yaml +++ b/k8s/argocd/base/applications.yaml @@ -23,3 +23,8 @@ spec: duration: 5s factor: 2 maxDuration: 3m + ignoreDifferences: + - group: argoproj.io + kind: Application + jsonPointers: + - /status diff --git a/k8s/webrtc-be/templates/deployment.yml b/k8s/webrtc-be/templates/deployment.yml index 41db99c..7225081 100644 --- a/k8s/webrtc-be/templates/deployment.yml +++ b/k8s/webrtc-be/templates/deployment.yml @@ -68,14 +68,6 @@ spec: periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 - {{- with .Values.nodeSelector }} - nodeSelector: - {{- toYaml . | nindent 8 }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 8 }} - {{- end }} readinessProbe: httpGet: path: /healthcheck @@ -84,4 +76,12 @@ spec: initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 5 - failureThreshold: 3 \ No newline at end of file + failureThreshold: 3 + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} \ No newline at end of file