Skip to content

Commit

Permalink
fix: use correct values for cluster issuer
Browse files Browse the repository at this point in the history
  • Loading branch information
foo0x29a committed Aug 11, 2023
1 parent 046b9d0 commit 4ca01df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/cert-manager-issuer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1
version: 0.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
dns01:
route53:
region: {{ $.Values.region }}
role: {{ $.Values.role }}
hostedZoneID: {{ $.Values.hostedZoneID }}
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
Expand All @@ -24,14 +24,14 @@ metadata:
spec:
acme:
server: https://acme-staging-v02.api.letsencrypt.org/directory
email: {{ $.Values.dnsZone }}
email: {{ $.Values.acme.email }}
privateKeySecretRef:
name: letsencrypt-staging
solvers:
- selector:
dnsZones:
- "example.com"
- {{ $.Values.dnsZone }}
dns01:
route53:
region: {{ $.Values.region }}
role: {{ $.Values.role }}
hostedZoneID: {{ $.Values.hostedZoneID }}
4 changes: 2 additions & 2 deletions charts/cert-manager-issuer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Declare variables to be passed into your templates.

region: us-east-1
dnsZone: nowhere.com
role: nobody
hostedZoneID: none
dnsZones: nowhere.com

acme:
email: [email protected]

0 comments on commit 4ca01df

Please sign in to comment.