15 lines
343 B
YAML
15 lines
343 B
YAML
# PostgreSQL credentials.
|
|
# Replace <YOUR_DB_PASSWORD> with a strong password.
|
|
#
|
|
# Encrypt this file with: sops --encrypt --in-place secrets.yaml
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: postgresql-credentials
|
|
namespace: gitea
|
|
type: Opaque
|
|
stringData:
|
|
POSTGRES_USER: gitea
|
|
POSTGRES_PASSWORD: <YOUR_DB_PASSWORD>
|
|
POSTGRES_DB: gitea
|