Furnace
Runbooks

Credentials

How to get furnace credentials

Furnace credentials are store in the secret furnace-credentials in the default namespace. They serve both to log into the plateform and to connect to the SFTP server.

How to get the credentials

How to get the username

kubectl get secret furnace-credentials -o jsonpath='{.data.username}' | base64 --decode

How to get the password

kubectl get secret furnace-credentials -o jsonpath='{.data.password}' | base64 --decode

How to edit the credentials

In the helm chart, the username is definied as credentials.username with the default value of admin, and the password as credentials.password, with the default value of furnace. They can both be edited in the chart/values.yaml file.

You can also set them with the cli:

   helm upgrade --install furnace chart/ \
    --set credentials.username=admin \
    --set credentials.password=furnace \
    --wait

Title

Make sure to add a space before the command to avoid it to remain in the command line history.

On this page