2019-10-10 19:42:44 +01:00
|
|
|
# k8sec
|
|
|
|
|
|
|
|
> Command line interface tool to manage Kubernetes secrets.
|
|
|
|
> More information: <https://github.com/dtan4/k8sec>.
|
|
|
|
|
|
|
|
- List all secrets:
|
|
|
|
|
|
|
|
`k8sec list`
|
|
|
|
|
2019-10-13 13:37:51 +01:00
|
|
|
- List a specific secret as a base64-encoded string:
|
2019-10-10 19:42:44 +01:00
|
|
|
|
|
|
|
`k8sec list {{secret_name}} --base64`
|
|
|
|
|
|
|
|
- Set a secret's value:
|
|
|
|
|
|
|
|
`k8sec set {{secret_name}} {{key=value}}`
|
|
|
|
|
|
|
|
- Set a base64-encoded value:
|
|
|
|
|
|
|
|
`k8sec set --base64 {{secret_name}} {{key=encoded_value}}`
|
|
|
|
|
|
|
|
- Unset a secret:
|
|
|
|
|
|
|
|
`k8sec unset {{secret_name}}`
|
|
|
|
|
|
|
|
- Load secrets from a file:
|
|
|
|
|
|
|
|
`k8sec load -f {{path/to/file}} {{secret_name}}`
|
|
|
|
|
|
|
|
- Dump secrets to a file:
|
|
|
|
|
|
|
|
`k8sec dump -f {{path/to/file}} {{secret_name}}`
|