Sekret is a CLI tool to encrypt and edit Kubernetes Secrets. Sekret makes management and deployment for Secret secure and simple.
You can get Sekret with go get
.
Also, you can download binaries from GitHub Releases.
sekret
command is used following subcommands enc
/ dec
/ new
/ edit
.
The environment variable ENCRYPTION_KEY
is used as the encryption key for all subcommands. Encryption keys must be 16 or 32 bytes. EDITOR
variable specifies the editor for new
and edit
subcommands. Command options can also specify them.
Following commands encrypt secret.yaml
and then commit it on Git.
Easy to decrypt and apply Secrets.
new
subcommand creates a new encrypted Secret YAMLs.
sekret new
opens specified editor with the Secret template like following YAML.
Values of data
must be encoded as base64 in Kubernetes Secrets, but sekret encodes and decodes automatically on opening and saving them. So you can write YAML as completely plain text. If you want to edit as base64, use --decode-base64=false
option.
Sekret validates before saving YAML, so it doesn’t save YAML when invalid.
You can edit encrypted Secret YAML like plaintexts with edit
subcommand.
sekret edit
opens decrypted and base64 decoded YAML in the specified editor. When the editor is closed, it saves encrypted and base64 encoded YAML. Of course, it validates YAML before saving.
Sekret makes lifecycle of Sekret very simple and secure. It is effortless to manage and deploy Secret YAML.