Skip to content

Instantly share code, notes, and snippets.

@yellowgh0st
Last active January 28, 2021 00:49
Show Gist options
  • Save yellowgh0st/3ecc0715baea348f2f6ecfd7c2e00e75 to your computer and use it in GitHub Desktop.
Save yellowgh0st/3ecc0715baea348f2f6ecfd7c2e00e75 to your computer and use it in GitHub Desktop.
Create secret containing pass and username for Chainlink node
kubectl create secret generic do-admin \
--from-literal=password=yourwalletpass \
--from-literal=api=$'youremail\nYourpass'
@yellowgh0st
Copy link
Author

yellowgh0st commented Jan 28, 2021

It can be created also from a file like this:

kubectl create secret generic do-admin \           
  --from-file=password=./password \
  --from-file=api=./api

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment