# Set PostgreSQL Credentials

- Set a Kubernetes Secret named `kfuse-pg-credentials` which will set the password

````console
kubectl create secret generic kfuse-pg-credentials \
    --from-literal=postgres=<password>
````

Copied!
