Skip to content

Commit

Permalink
Fix the labels indentation in the helm charts
Browse files Browse the repository at this point in the history
labels are in the metadata section instead of the root of the YAML.
Moving them back to the expected place to avoid (non-blocking) errors
when applying the helm chart.
  • Loading branch information
cbosdo committed Oct 7, 2024
1 parent 06ac3d1 commit 17aa848
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions containers/proxy-helm/proxy-helm.changes.cbosdo.helm-fixes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix labels indentation (bsc#1231150)
4 changes: 2 additions & 2 deletions containers/proxy-helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: Deployment
metadata:
name: uyuni-proxy
namespace: "{{ .Release.Namespace }}"
labels:
app: uyuni-proxy
labels:
app: uyuni-proxy
spec:
replicas: 1
selector:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix labels indentation (bsc#1231150)
4 changes: 2 additions & 2 deletions containers/server-helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: Deployment
metadata:
name: uyuni
namespace: "{{ .Release.Namespace }}"
labels:
app: uyuni
labels:
app: uyuni
spec:
replicas: 1
selector:
Expand Down

0 comments on commit 17aa848

Please sign in to comment.