Skip to content

Commit

Permalink
[patch] Add unlimited retries and fix suite cert/dns sync (#192)
Browse files Browse the repository at this point in the history
* [minor] Set retry unlimited on cluster + instance

* Set retry to unlimited

* Run olm job at same time as dns
  • Loading branch information
whitfiea authored Sep 16, 2024
1 parent 03b51c5 commit ffbd7f0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
name: "ibm-suite-certs-v1-{{ .Values | toYaml | adler32sum }}"
namespace: mas-{{ .Values.instance_id }}-syncres
annotations:
argocd.argoproj.io/sync-wave: "00"
argocd.argoproj.io/sync-wave: "003"
{{- if .Values.custom_labels }}
labels:
{{ .Values.custom_labels | toYaml | indent 4 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
name: "ibm-suite-dns-v1-{{ .Values | toYaml | adler32sum }}"
namespace: mas-{{ .Values.instance_id }}-syncres
annotations:
argocd.argoproj.io/sync-wave: "00"
argocd.argoproj.io/sync-wave: "003"
{{- if .Values.custom_labels }}
labels:
{{ .Values.custom_labels | toYaml | indent 4 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ spec:
prune: true
{{- end }}
selfHeal: true
retry:
limit: -1
syncOptions:
- CreateNamespace=false
- RespectIgnoreDifferences=true
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ spec:
syncOptions:
- CreateNamespace=false
- RespectIgnoreDifferences=true
retry:
limit: -1
ignoreDifferences:
- group: '*'
kind: ServiceAccount
Expand Down

0 comments on commit ffbd7f0

Please sign in to comment.