Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/acm-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ dependencies:
version: 1.1.0
repository: https://rh-mobb.github.io/validated-pattern-helm-charts/
name: acm-operator
version: 0.5.24
version: 0.5.25
apiVersion: v2
description: Chart to deploy Red Hat Advanced Cluster Management (RHACM) with ArgoCD ApplicationSets for spoke cluster management
13 changes: 6 additions & 7 deletions charts/acm-operator/templates/namespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ metadata:
name: "{{ $ns.name }}"
annotations:
argocd.argoproj.io/sync-wave: "-10"
{{- if $ns.annotations }}
annotations:
{{- toYaml $ns.annotations | trimPrefix "|" | indent 2 }}
{{ end }}
labels:
{{- with $ns.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- if $ns.labels }}
{{- toYaml $ns.labels | trimPrefix "|" | indent 2 }}
{{ end }}
labels:
{{- toYaml $ns.labels | nindent 4 }}
{{- end }}
---
{{ end -}}
Loading