reorg for argo

This commit is contained in:
2025-12-30 20:05:38 +11:00
parent 461ecccbb7
commit 7097f2d53e
4 changed files with 25 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-dns01-cloudflare
spec:
acme:
# Let's Encrypt production endpoint
server: https://acme-v02.api.letsencrypt.org/directory
email: conanscott@gmail.com
privateKeySecretRef:
# cert-manager will create and store the account key here
name: letsencrypt-cloudflare-account-key
solvers:
- dns01:
cloudflare:
# This references a secret with your Cloudflare API token
apiTokenSecretRef:
name: cloudflare-api-token-secret
key: api-token

View File

@@ -0,0 +1,3 @@
oc create secret generic cloudflare-api-token-secret \
--from-literal=api-token='L7LuxQa-5vrAFVkAyF1OtbuFrHMgwm8oralYWQJF' \
-n openshift-operators