first commit

This commit is contained in:
sttlab
2026-07-22 14:41:10 +00:00
commit e1577fe061
35 changed files with 1847 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Copy to secret.yaml, fill in real values, and apply with:
# kubectl apply -f secret.yaml
# Never commit the filled-in secret.yaml to git.
#
# POSTGRES_USER/POSTGRES_PASSWORD must match k8s/postgres/secret.yaml.
apiVersion: v1
kind: Secret
metadata:
name: miniflux-credentials
namespace: watch
type: Opaque
stringData:
DATABASE_URL: postgres://postgres:changeme@postgres-postgresql.postgres.svc.cluster.local:5432/miniflux?sslmode=disable
ADMIN_USERNAME: admin
ADMIN_PASSWORD: changeme