Skip to content

Commit

Permalink
Fix templating
Browse files Browse the repository at this point in the history
  • Loading branch information
frankh committed Oct 9, 2023
1 parent 7e47512 commit 3c95cc5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/posthog/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 30.29.0
version: 30.30.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
2 changes: 1 addition & 1 deletion charts/posthog/templates/events-pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }}
annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }}
spec:
maxUnavailable: .Values.events.pdb.maxUnavailable
maxUnavailable: {{ .Values.events.pdb.maxUnavailable }}
selector:
matchLabels:
app: {{ template "posthog.fullname" . }}
Expand Down
2 changes: 1 addition & 1 deletion charts/posthog/templates/recordings-pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }}
annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }}
spec:
maxUnavailable: .Values.recordings.pdb.maxUnavailable
maxUnavailable: {{ .Values.recordings.pdb.maxUnavailable }}
selector:
matchLabels:
app: {{ template "posthog.fullname" . }}
Expand Down
2 changes: 1 addition & 1 deletion charts/posthog/templates/web-pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
labels: {{- include "_snippet-metadata-labels-common" . | nindent 4 }}
annotations: {{- include "_snippet-metadata-annotations-common" . | nindent 4 }}
spec:
maxUnavailable: .Values.web.pdb.maxUnavailable
maxUnavailable: {{ .Values.web.pdb.maxUnavailable }}
selector:
matchLabels:
app: {{ template "posthog.fullname" . }}
Expand Down

0 comments on commit 3c95cc5

Please sign in to comment.