- Merge harbor-alt-tls into harbor-tls certificate - Single certificate now covers both DNS names: - the-seas.local.mk-labs.cloud (EPCOT theme) - harbor.local.mk-labs.cloud (functional name) - Remove duplicate certificate-alt.yaml - Reduces cert-manager overhead and simplifies certificate management
18 lines
572 B
YAML
18 lines
572 B
YAML
# ------------------------------------------------------------------------------
|
|
# Certificate — Harbor TLS Certificate (staging until stable)
|
|
# DNS Names: the-seas.local.mk-labs.cloud, harbor.local.mk-labs.cloud
|
|
# ------------------------------------------------------------------------------
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: harbor-tls
|
|
namespace: harbor
|
|
spec:
|
|
secretName: harbor-tls
|
|
issuerRef:
|
|
name: letsencrypt-staging
|
|
kind: ClusterIssuer
|
|
dnsNames:
|
|
- the-seas.local.mk-labs.cloud
|
|
- harbor.local.mk-labs.cloud
|