Skip to content

Commit

Permalink
Fix headless service variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
a-thomas-22 committed Dec 26, 2024
1 parent 83dca75 commit e9776f6
Show file tree
Hide file tree
Showing 12 changed files with 330 additions and 330 deletions.
2 changes: 1 addition & 1 deletion charts/das/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.5.13
version: 0.5.14

appVersion: "v3.2.1-d81324d"
188 changes: 94 additions & 94 deletions charts/das/README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions charts/das/templates/headlessservice.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.headlessservice.enabled -}}
{{- if .Values.headlessService.enabled -}}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -12,5 +12,5 @@ spec:
- None
selector:
{{- include "das.selectorLabels" . | nindent 4 }}
publishNotReadyAddresses: {{ .Values.headlessservice.publishNotReadyAddresses }}
publishNotReadyAddresses: {{ .Values.headlessService.publishNotReadyAddresses }}
{{- end }}
6 changes: 3 additions & 3 deletions charts/das/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ serviceMonitor:
perReplicaService:
enabled: false

## @param headlessservice.enabled Enable headless service
## @param headlessservice.publishNotReadyAddresses Publish not ready addresses
headlessservice:
## @param headlessService.enabled Enable headless service
## @param headlessService.publishNotReadyAddresses Publish not ready addresses
headlessService:
enabled: false
publishNotReadyAddresses: true

Expand Down
2 changes: 1 addition & 1 deletion charts/nitro/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.6.22
version: 0.6.23

appVersion: "v3.2.1-d81324d"
300 changes: 150 additions & 150 deletions charts/nitro/README.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions charts/nitro/templates/headlessservice.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{{- if .Values.headlessservice.enabled -}}
{{- if .Values.headlessService.enabled -}}
apiVersion: v1
kind: Service
metadata:
name: {{ include "nitro.fullname" . }}-headless
labels:
{{- include "nitro.labels" . | nindent 4 }}
annotations:
{{- if $.Values.headlessservice.annotations }}
{{- toYaml $.Values.headlessservice.annotations | nindent 4 }}
{{- if $.Values.headlessService.annotations }}
{{- toYaml $.Values.headlessService.annotations | nindent 4 }}
{{- end }}
spec:
type: ClusterIP
Expand All @@ -16,6 +16,6 @@ spec:
- None
selector:
{{- include "nitro.selectorLabels" . | nindent 4 }}
publishNotReadyAddresses: {{ .Values.headlessservice.publishNotReadyAddresses }}
publishNotReadyAddresses: {{ .Values.headlessService.publishNotReadyAddresses }}
{{- end }}

8 changes: 4 additions & 4 deletions charts/nitro/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ perReplicaHeadlessService:
publishNotReadyAddresses: true
annotations: {}

## @param headlessservice.enabled Enable headless service
## @param headlessservice.publishNotReadyAddresses Publish not ready addresses
## @param headlessservice.annotations Annotations for the headless service
headlessservice:
## @param headlessService.enabled Enable headless service
## @param headlessService.publishNotReadyAddresses Publish not ready addresses
## @param headlessService.annotations Annotations for the headless service
headlessService:
enabled: true
publishNotReadyAddresses: true
annotations: {}
Expand Down
2 changes: 1 addition & 1 deletion charts/relay/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.5.8
version: 0.5.9

appVersion: "v3.2.1-d81324d"
130 changes: 65 additions & 65 deletions charts/relay/README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions charts/relay/templates/headlesssvc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.headlessservice.enabled -}}
{{- if .Values.headlessService.enabled -}}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -12,5 +12,5 @@ spec:
- None
selector:
{{- include "relay.selectorLabels" . | nindent 4 }}
publishNotReadyAddresses: {{ .Values.headlessservice.publishNotReadyAddresses }}
publishNotReadyAddresses: {{ .Values.headlessService.publishNotReadyAddresses }}
{{- end }}
6 changes: 3 additions & 3 deletions charts/relay/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ perReplicaService:
enabled: false
publishNotReadyAddresses: false

## @param headlessservice.enabled Enable headless service
## @param headlessservice.publishNotReadyAddresses Publish not ready addresses
headlessservice:
## @param headlessService.enabled Enable headless service
## @param headlessService.publishNotReadyAddresses Publish not ready addresses
headlessService:
enabled: true
publishNotReadyAddresses: true

Expand Down

0 comments on commit e9776f6

Please sign in to comment.