-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06110e3
commit 4f9cd53
Showing
3 changed files
with
93 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
apiVersion: cert.gardener.cloud/v1alpha1 | ||
kind: Issuer | ||
metadata: | ||
name: issuer-selfsigned | ||
namespace: default | ||
spec: | ||
selfSigned: {} |
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,21 @@ | ||
apiVersion: cert.gardener.cloud/v1alpha1 | ||
kind: Certificate | ||
metadata: | ||
name: cert-selfsigned | ||
namespace: default | ||
spec: | ||
commonName: cert1.mydomain.com | ||
isCA: true | ||
# optional: default is 90 days (2160h). Must be greater 30 days (720h) | ||
# duration: 720h1m | ||
# optional defaults to RSA 2048 | ||
#privateKey: | ||
# algorithm: ECDSA | ||
# size: 384 | ||
issuerRef: | ||
name: issuer-selfsigned | ||
namespace: default # must be specified when issuer runs in shoot! | ||
# optional: secret where the certificate should be stored | ||
#secretRef: | ||
# name: cert-selfsigned-foo | ||
# namespace: default |