Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: go back to production ingress #11

Merged
merged 1 commit into from
Sep 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions drydock/templates/kustomized/tutor13/extensions/ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
annotations:
kubernetes.io/ingress.class: nginx
{%- if ENABLE_HTTPS and not DRYDOCK_CUSTOM_CERTS%}
cert-manager.io/issuer: letsencrypt-staging
cert-manager.io/issuer: letsencrypt
{%- endif %}
spec:
rules:
Expand Down Expand Up @@ -69,7 +69,7 @@ metadata:
name: letsencrypt
namespace: {{ K8S_NAMESPACE }}
labels:
app.kubernetes.io/name: letsencrypt-staging
app.kubernetes.io/name: letsencrypt
spec:
acme:
# Let's Encrypt will use this to contact you about expiring
Expand All @@ -78,7 +78,7 @@ spec:
# Secret resource that will be used to store the account's private key.
privateKeySecretRef:
name: {{ K8S_NAMESPACE }}-letsencrypt-account-key
server: https://acme-staging-v02.api.letsencrypt.org/directory
server: https://acme-v02.api.letsencrypt.org/directory
solvers:
- http01:
ingress:
Expand Down