Skip to content

Commit

Permalink
Add webhooks.containerPort value (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov authored Oct 26, 2022
1 parent a28bc98 commit 8caeec8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD
+ add `webhooks.containerPort` value

## aiven-operator-v0.4.0 - 2022-08-04
* sync with aiven-operator v0.4.0

Expand Down
2 changes: 1 addition & 1 deletion charts/aiven-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:

{{- if .Values.webhooks.enabled }}
- name: webhook
containerPort: 9443
containerPort: {{ .Values.webhooks.containerPort | default 9443 }}
protocol: TCP
{{- end }}

Expand Down
2 changes: 2 additions & 0 deletions charts/aiven-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ fullnameOverride: ""
webhooks:
enabled: true
servicePort: 443
# Set 10250 for GKE, default is 9443
# containerPort: 9443

# generic deployment configurations
image:
Expand Down

0 comments on commit 8caeec8

Please sign in to comment.