-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for reusing the webhook TLS certificate across differen…
…t deployments to prevent cases where operator takes too long to start up (#282)
- Loading branch information
1 parent
c774a00
commit 2edc900
Showing
8 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
intents-operator/templates/intents-operator-webhook-secret.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: v1 | ||
type: Opaque | ||
kind: Secret | ||
metadata: | ||
name: intents-operator-webhook-cert | ||
labels: | ||
{{- with .Values.global.commonLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
app.kubernetes.io/version: {{ .Chart.Version }} | ||
annotations: | ||
{{- with .Values.global.commonAnnotations }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
app.kubernetes.io/version: {{ .Chart.Version }} | ||
data: | ||
tls.crt: {{ "placeholder" | b64enc | quote }} | ||
tls.key: {{ "placeholder" | b64enc | quote }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters