this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Piped: Fix the secret

+15
+15
cluster/apps/services/piped/app/externalsecret.yaml
··· 10 10 name: *name 11 11 target: 12 12 name: piped-db-creds 13 + creationPolicy: Owner 14 + template: 15 + engineVersion: v2 16 + data: 17 + # App 18 + DB_DATABASE_NAME: &dbName piped 19 + DB_HOSTNAME: &dbHost postgres-rw.databases.svc.cluster.local 20 + DB_USERNAME: &dbUser "{{ .DB_USERNAME }}" 21 + DB_PASSWORD: &dbPass "{{ .DB_PASSWORD }}" 22 + # Postgres Init 23 + INIT_POSTGRES_DBNAME: *dbName 24 + INIT_POSTGRES_HOST: *dbHost 25 + INIT_POSTGRES_USER: *dbUser 26 + INIT_POSTGRES_PASS: *dbPass 27 + INIT_POSTGRES_SUPER_PASS: "{{ .INIT_POSTGRES_SUPER_PASS }}" 13 28 dataFrom: 14 29 - find: 15 30 name: