/kubenake

Kubenake is a simple filter program to uncode kubernetes secrets

Primary LanguageGoApache License 2.0Apache-2.0

KubeNake Go Report Card Build Status

KubeNake is a simple filter written in go to decode Kubernetes secrets.

Install

go get github.com/smileisak/kubenake

Usage

By passing kubenake after a pipelined secret, all base64 encoded strings will be decoded.

$ ➜ k get secrets example -o yaml | kubenake

apiVersion: v1
kind: Secret
data:
  password: pass
type: Opaque
metadata:
  creationTimestamp: "2018-07-12T15:36:15Z"
  name: example
  namespace: default

Contributing

Feel free to send PRs, i'll be so grateful.