The miniflux user password is auto-generated by CloudNativePG and stored in blumeops-pg-app secret. Updated README and secret template to document the correct setup process.
13 lines
620 B
Smarty
13 lines
620 B
Smarty
# Miniflux database connection secret
|
|
#
|
|
# The miniflux user password is auto-generated by CloudNativePG and stored in
|
|
# blumeops-pg-app secret in the databases namespace. To create this secret:
|
|
#
|
|
# 1. Get the URI from CNPG secret:
|
|
# kubectl -n databases get secret blumeops-pg-app -o jsonpath='{.data.uri}' | base64 -d
|
|
#
|
|
# 2. Create the secret (one-liner):
|
|
# kubectl create secret generic miniflux-db -n miniflux \
|
|
# --from-literal=url="$(kubectl -n databases get secret blumeops-pg-app -o jsonpath='{.data.uri}' | base64 -d)"
|
|
#
|
|
# Note: Uses internal k8s DNS hostname (blumeops-pg-rw.databases) not Tailscale
|