All Projects → mfuentesg → Ksd

mfuentesg / Ksd

Licence: mit
kubernetes secret decoder

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Ksd

Djson
Fast Go decoder for dynamic JSON
Stars: ✭ 588 (+896.61%)
Mutual labels:  decoder
Guffer
Guffer tweets based on a daily schedule
Stars: ✭ 12 (-79.66%)
Mutual labels:  secret
Php Qrcode Detector Decoder
This is a PHP library to detect and decode QR-codes. This is first and only QR code reader that works without extensions.
Stars: ✭ 1,034 (+1652.54%)
Mutual labels:  decoder
Gg Shield
Detect secret in source code, scan your repo for leaks. Find secrets with GitGuardian and prevent leaked credentials. GitGuardian is an automated secrets detection & remediation service.
Stars: ✭ 708 (+1100%)
Mutual labels:  secret
Wavevote
Voting system based on Ethereum
Stars: ✭ 22 (-62.71%)
Mutual labels:  secret
Envchain
Environment variables meet macOS Keychain and gnome-keyring <3
Stars: ✭ 876 (+1384.75%)
Mutual labels:  secret
Kubesec
Secure Secret management for Kubernetes (with gpg, Google Cloud KMS and AWS KMS backends)
Stars: ✭ 547 (+827.12%)
Mutual labels:  secret
Reed Solomon
Reed Solomon BCH encoder and decoder
Stars: ✭ 57 (-3.39%)
Mutual labels:  decoder
Idutf8lib
Idiot's UTF-8 Library
Stars: ✭ 12 (-79.66%)
Mutual labels:  decoder
Real Time Public Chat
This program show how to create a public chat using javascript
Stars: ✭ 45 (-23.73%)
Mutual labels:  secret
Turbotransformers
a fast and user-friendly runtime for transformer inference (Bert, Albert, GPT2, Decoders, etc) on CPU and GPU.
Stars: ✭ 826 (+1300%)
Mutual labels:  decoder
Encore
Synonym of angkor
Stars: ✭ 19 (-67.8%)
Mutual labels:  decoder
Py Ubjson
Universal Binary JSON draft-12 serializer for Python
Stars: ✭ 30 (-49.15%)
Mutual labels:  decoder
Trufflehog
Searches through git repositories for high entropy strings and secrets, digging deep into commit history
Stars: ✭ 6,225 (+10450.85%)
Mutual labels:  secret
Get Aws Profile Bash
Fetch AWS keys and secrets from ~/.aws/credentials using a simple bash script
Stars: ✭ 49 (-16.95%)
Mutual labels:  secret
Jave2
The JAVE (Java Audio Video Encoder) library is Java wrapper on the ffmpeg project
Stars: ✭ 570 (+866.1%)
Mutual labels:  decoder
Wxinlineplayer
🤟Super fast H.264/H.265 FLV player
Stars: ✭ 873 (+1379.66%)
Mutual labels:  decoder
Ffjpeg
a simple jpeg codec.
Stars: ✭ 58 (-1.69%)
Mutual labels:  decoder
Mime
Fast, robust, standards-compliant MIME decoder. Ships with extensive tests and fuzz tests.
Stars: ✭ 57 (-3.39%)
Mutual labels:  decoder
Seg Mentor
TFslim based semantic segmentation models, modular&extensible boutique design
Stars: ✭ 43 (-27.12%)
Mutual labels:  decoder

Kubernetes secret decoder a.k.a ksd

Travis codecov

Buy Me A Coffee

ksd is a tool, whose aim is help you to visualize in text plain your kubernetes secrets, either yaml or json outputs.

Installation

Go

$ go get github.com/mfuentesg/ksd

Brew

brew install mfuentesg/tap/ksd

Usage

$ kubectl get secret <secret name> -o <yaml|json> | ksd
$ ksd < kubectl get secret <secret name> <secret file>.<yaml|json>

Example

kube_secret.json

{
    "apiVersion": "v1",
    "data": {
        "password": "c2VjcmV0",
        "app": "a3ViZXJuZXRlcyBzZWNyZXQgZGVjb2Rlcg=="
    },
    "kind": "Secret",
    "metadata": {
        "name": "kubernetes secret decoder",
        "namespace": "ksd"
    },
    "type": "Opaque"
}
$ ksd < kube_secret.json

output

{
    "apiVersion": "v1",
    "data": {
        "password": "secret",
        "app": "kubernetes secret decoder"
    },
    "kind": "Secret",
    "metadata": {
        "name": "kubernetes secret decoder",
        "namespace": "ksd"
    },
    "type": "Opaque"
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].