Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created August 6, 2023 19:29
Show Gist options
  • Save gowatana/1bf4e77085c98a963de203882b25e424 to your computer and use it in GitHub Desktop.
Save gowatana/1bf4e77085c98a963de203882b25e424 to your computer and use it in GitHub Desktop.
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: selfsigned-ca-issuer
spec:
selfSigned: {}
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: selfsigned-ca
namespace: cert-manager
spec:
isCA: true
commonName: selfsigned-ca
secretName: root-secret
privateKey:
algorithm: ECDSA
size: 256
issuerRef:
name: selfsigned-ca-issuer
kind: ClusterIssuer
group: cert-manager.io
@gowatana
Copy link
Author

gowatana commented Aug 8, 2023

下記の投稿むけ。

Tanzu Mission Control Self-Managed 自宅ラボ構築。Part-04 cert-manager のインストール
https://vm.gowatana.jp/entry/2023/08/08/022352

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment