15 lines
606 B
YAML
15 lines
606 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: aprs-secrets
|
|
namespace: aprs-app
|
|
type: Opaque
|
|
stringData: # Using stringData for readability, actual secrets should be base64 encoded if using `data`
|
|
DATABASE_URL: "ecto://postgres-service.aprs-app.svc.cluster.local/aprs_prod" # User/pass removed
|
|
POSTGRES_USER: "your_db_user"
|
|
POSTGRES_PASSWORD: "your_db_password"
|
|
SECRET_KEY_BASE: "your_super_secret_key_base_here"
|
|
# Add other secrets like APRS_CALLSIGN, APRS_PASSCODE if needed
|
|
APRS_CALLSIGN: "NOCALL"
|
|
APRS_PASSCODE: "NOPASS"
|
|
PHX_HOST: "your_app_domain.com" # Replace with your actual host
|