Created
July 21, 2024 05:39
-
-
Save superbrothers/52413a32cad6ef731d23d1148a202733 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: cert-manager.io/v1 | |
kind: Issuer | |
metadata: | |
name: hubble-ca-issuer | |
namespace: kube-system | |
spec: | |
selfSigned: {} | |
--- | |
apiVersion: cert-manager.io/v1 | |
kind: Certificate | |
metadata: | |
name: hubble-ca | |
namespace: kube-system | |
spec: | |
isCA: true | |
commonName: hubble-grpc.cilium.io | |
secretName: hubble-ca-crt | |
issuerRef: | |
kind: Issuer | |
name: hubble-ca-issuer | |
--- | |
apiVersion: cert-manager.io/v1 | |
kind: Issuer | |
metadata: | |
name: hubble-issuer | |
namespace: kube-system | |
spec: | |
ca: | |
secretName: hubble-ca-crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment