mirror of
https://gitlab.kube.huskypup.net/Scooby/Homelabv4.git
synced 2026-08-23 12:56:46 +00:00
Widen letsencrypt-production DNS-01 solver to cover ha.huskypup.net
GitLab's new Gitaly/workhorse TLS certs are the first thing needing a real Let's Encrypt cert under ha.huskypup.net (the cross-site floating- hostname zone) - everything else there (Postgres) uses CNPG's own self-signed certs, never hit this gap. Confirmed live: DNS-01 order failed with 'no configured challenge solvers can be used for this challenge' until this zone was added to the selector. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 5
parent
bce3861083
commit
1febd18bd6
@@ -1,15 +1,15 @@
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: letsencrypt-production
|
||||
spec:
|
||||
acme:
|
||||
server: https://acme-v02.api.letsencrypt.org/directory
|
||||
email: garrettstone499@gmail.com
|
||||
privateKeySecretRef:
|
||||
name: letsencrypt-production
|
||||
solvers:
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: letsencrypt-production
|
||||
spec:
|
||||
acme:
|
||||
server: https://acme-v02.api.letsencrypt.org/directory
|
||||
email: garrettstone499@gmail.com
|
||||
privateKeySecretRef:
|
||||
name: letsencrypt-production
|
||||
solvers:
|
||||
- dns01:
|
||||
cloudflare:
|
||||
email: garrettstone499@gmail.com
|
||||
@@ -19,6 +19,17 @@ spec:
|
||||
selector:
|
||||
dnsZones:
|
||||
- "kube.huskypup.net"
|
||||
# GitLab cross-site replication (see
|
||||
# /home/scooby/.claude/plans/jiggly-snacking-iverson.md) -
|
||||
# first real Let's Encrypt cert needed for anything under
|
||||
# ha.huskypup.net (the floating-hostname zone used for
|
||||
# cross-site Postgres/Gitaly addressing) - everything
|
||||
# before this used CNPG's own self-signed certs, never hit
|
||||
# this gap. Confirmed live: DNS-01 order failed with "no
|
||||
# configured challenge solvers can be used for this
|
||||
# challenge" until this zone was added. Same Cloudflare
|
||||
# account/token as kube.huskypup.net.
|
||||
- "ha.huskypup.net"
|
||||
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
|
||||
Reference in New Issue
Block a user