-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tmp add back cert manager to avoid resource mapping issue
- Loading branch information
1 parent
f2ec9fc
commit e13151e
Showing
3 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: letsencrypt-prod-issuer | ||
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: sanjay@developmentseed.org | ||
# ACME server URL for Let’s Encrypt’s staging environment. | ||
# The staging environment will not issue trusted certificates but is | ||
# used to ensure that the verification process is working properly | ||
# before moving to production | ||
server: https://acme-v02.api.letsencrypt.org/directory | ||
privateKeySecretRef: | ||
# Secret resource used to store the account's private key. | ||
name: letsencrypt-issuer-key | ||
# Enable the HTTP-01 challenge provider | ||
# you prove ownership of a domain by ensuring that a particular | ||
# file is present at the domain | ||
solvers: | ||
- http01: | ||
ingress: | ||
class: nginx |
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,13 @@ | ||
resource "helm_release" "ifrcgo-cert-manager" { | ||
name = "cert-manager" | ||
repository = "https://charts.jetstack.io" | ||
chart = "cert-manager" | ||
version = "v1.6.1" | ||
namespace = "cert-manager" | ||
create_namespace = true | ||
|
||
set { | ||
name = "installCRDs" | ||
value = 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