Skip to content

Commit d4801ee

Browse files
enable conditional use of letsencrypt issuers
1 parent f246b2b commit d4801ee

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

charts/runtime/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: runtime
33
description: Sets up the basic dependencies needed to get a network stack running
44
type: application
5-
version: 0.1.33
5+
version: 0.1.34
66
appVersion: "0.1.0"
77
dependencies:
88
- name: external-dns

charts/runtime/templates/clusterissuers.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{ if .Values.enableLetsEncrypt }}
12
apiVersion: cert-manager.io/v1
23
kind: ClusterIssuer
34
metadata:
@@ -19,6 +20,7 @@ spec:
1920
- http01:
2021
ingress:
2122
ingressClassName: nginx
23+
{{ end }}
2224
{{ if and .Values.acmeEAB.kid .Values.dnsSolver }}
2325
---
2426
apiVersion: cert-manager.io/v1

charts/runtime/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
enableLetsEncrypt: true
2+
13
external-dns:
24
enabled: true
35
provider: plural

0 commit comments

Comments
 (0)