Spaces:
Configuration error
Configuration error
File size: 1,024 Bytes
ee6cf3b de5a0fa ee6cf3b de5a0fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # DO NOT apply this file as-is. Every value below is a placeholder, not a
# real secret -- ARF_INTERNAL_API_KEY in particular is a fixed, publicly
# visible string in this repo's git history. Applying it unmodified means
# the "secret" is a known value, not a secret.
#
# Generate real values instead, e.g.:
# kubectl create secret generic arf-api-secrets -n arf-system \
# --from-literal=DATABASE_URL=... \
# --from-literal=ARF_INTERNAL_API_KEY=$(openssl rand -hex 32) \
# --from-literal=ARF_API_KEYS='{}' \
# --from-literal=ARF_REDIS_URL=...
# or manage this via a secrets operator (External Secrets, Sealed Secrets,
# SOPS) rather than a plain committed manifest.
apiVersion: v1
kind: Secret
metadata:
name: arf-api-secrets
namespace: arf-system
type: Opaque
stringData:
# Placeholders only -- see warning above. Replace before applying.
DATABASE_URL: "postgresql://user:password@host:5432/arf"
ARF_INTERNAL_API_KEY: "change-me-to-a-strong-random-key"
ARF_API_KEYS: '{}'
ARF_REDIS_URL: ""
|