Created
November 29, 2022 10:18
-
-
Save mohllal/d2eb12a27f177248f2b6ff0897b35f39 to your computer and use it in GitHub Desktop.
An example of Kubernetes Secret for the TLS certificate of the admission server
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
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: kubernetes-sidecar-injector | |
type: Opaque | |
data: | |
tls-cert-file: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JS... | |
tls-private-key-file: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0t... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment