-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split cert manager/flux installation from runtime chart
- Loading branch information
1 parent
151e9e7
commit 58d920f
Showing
10 changed files
with
187 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: letsencrypt-staging | ||
spec: | ||
selfSigned: {} | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: letsencrypt-prod | ||
spec: | ||
acme: | ||
email: {{ .Values.ownerEmail }} | ||
server: {{ .Values.letsencryptServer }} | ||
privateKeySecretRef: | ||
name: letsencryt-prod-key | ||
solvers: | ||
- http01: | ||
ingress: | ||
ingressClassName: nginx | ||
{{ if and .Values.acmeEAB.kid .Values.dnsSolver }} | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: plural | ||
spec: | ||
acme: | ||
# You must replace this email address with your own. | ||
# Let's Encrypt will use this to contact you about expiring | ||
# certificates, and issues related to your account. | ||
email: {{ .Values.ownerEmail }} | ||
server: {{ .Values.acmeServer }} | ||
{{ if .Values.acmeEAB.kid }} | ||
externalAccountBinding: | ||
keyID: {{ .Values.acmeEAB.kid }} | ||
keySecretRef: | ||
name: acme-eab-secret | ||
key: eab-secret | ||
keyAlgorithm: HS256 | ||
{{ end }} | ||
privateKeySecretRef: | ||
# Secret resource that will be used to store the account's private key. | ||
name: cert-manager-key | ||
# Add a single challenge solver, dns01, configured using the appropriate cloud dns setup | ||
solvers: | ||
- dns01: | ||
{{ .Values.dnsSolver | toYaml | nindent 8 }} | ||
{{ end }} |
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
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,6 @@ | ||
installCRDs: true | ||
serviceAccount: | ||
name: cert-manager | ||
securityContext: | ||
fsGroup: 1000 | ||
runAsNonRoot: true |
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,14 @@ | ||
helmController: | ||
create: false | ||
imageAutomationController: | ||
create: false | ||
imageReflectionController: | ||
create: false | ||
kustomizeController: | ||
create: false | ||
notificationController: | ||
create: false | ||
sourceController: | ||
create: true | ||
policies: | ||
create: false |
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