#secret #kubernetes #kubectl #namespaces #kubes

app kubesm

A tool for creating kubernetes secret objects without saving secrets to disk

3 stable releases

Uses old Rust 2015

1.1.0 Dec 20, 2017
1.0.1 Dec 12, 2017
1.0.0 Dec 11, 2017

#11 in #secrets

Download history 13/week @ 2024-02-21 15/week @ 2024-02-28 17/week @ 2024-03-27 34/week @ 2024-04-03

51 downloads per month

MIT license

7KB
77 lines

Kubernetes Secret Maker

GitHub release GitHub license CircleCI Crates.io Docker Pulls

Problem:

  • You want to put secrets inside your kubernetes cluster
  • You want to do it in a clean repeatable way
  • You don't want to leave those secrets lying around in files

Solution:

  • Temporarily put the secrets in the environment
  • Generate a secrets file on stdout
  • Pipe it into kubectl apply -f -

Usage

You can use this tool through Rust's Cargo:

$ cargo install kubesm
$ NAME=test SK_MY_SECRET="my secret" kubesm | kubectl apply -f -

or with Docker:

$ docker run --rm -e NAME=test -e SK_MY_SECRET="my secret" apolitical/kubesm | kubectl apply -f -

For added safety, you can tell your shell not to remember commands that started with a space.

$ HISTCONTROL=ignorespace
$  NAME=test SK_MY_SECRET="my secret" kubesm | kubectl apply -f -
  ^ extra space

How it works

Provide a NAME for the resource that will be created, each secret should be prefixed with SK_, but this will be removed when output. You can optionally provide NAMESPACE, but it isn't required. Here's what just the output would look like:

$ NAME=test NAMESPACE=test-namespace SK_MY_SECRET="my secret" kubesm
---
apiVersion: v1
kind: Secret
metadata:
  name: test
  namespace: "test-namespace"
type: Opaque
data:
  MY_SECRET: bXkgc2VjcmV0

Limitations

Most of the above is statically stored in the binary. There's currently no flexability in the apiVersion or type

Contributing

If you want to help, that's brilliant! Have a look at our Contributing Guide. We also adhere to a Code of Conduct, so please check that out, it includes details on who to contact if you have any concerns.

Dependencies

~1.4–2MB
~48K SLoC