24 lines
585 B
YAML
24 lines
585 B
YAML
# Github runners/workers needs access to secret to set env variable for various things
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: postgres-secret
|
|
namespace: arc-systems
|
|
type: Opaque
|
|
stringData:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: averysecretpasswordPersonAppleWinter938
|
|
POSTGRES_DB: stripe_invoice
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: postgres-prod-secret
|
|
namespace: arc-systems
|
|
type: Opaque
|
|
stringData:
|
|
POSTGRES_USER: stripe_invoice_prod
|
|
POSTGRES_PASSWORD: productionPassword1142M@ke!tH@rd2Br3akWith$ymb0ls
|
|
POSTGRES_DB: stripe_invoice_prod
|