KO
|
EN
gitlite — search
Search
#javascript
#react
#api
#flutter
#python
#nextjs
#postgresql
#firebase
#tailwindcss
#game
#chatgpt
#php
kube-secret-editor
★ 59
Open GitHub ↗
Edit Kubernetes secrets
Download README (.md)
Explore Similar Repositories
launchd-portrep
:
CVE-2018-4280: Mach port replacement vulnerability in launchd on macOS 10.13.5 leading to local privilege escalation and SIP bypass.
react-chat-demo
:
A demo application to play around with React, SignalR and ASP.NET Core
eval_kitti
:
Tools to evaluate object detection results using the KITTI dataset.
Machine-Learning-Notes
:
Notes for several Machine Learning and Deep Learning courses, textbooks, and talks
android-upgrade
:
这是一个安卓软件升级库。支持普通升级、强制升级、灰度升级。安装包下载支持 断点续传,分流下载,动态网络监听下载。
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
kube-secret-editor
?
Download (.md)
# Edit Kubernetes secrets Installation: $> pip install -r requirements.txt --user Usage: $> KUBE_EDITOR=/path/to/kube-secret-editor.py kubectl edit secret my-secret By default vi editor will be used, to use a different editor: $> EDITOR=nano KUBE_EDITOR=/path/to/kube-secret-editor.py kubectl edit secret my-secret The script will: - decode the secret values coming from k8s - call $EDITOR - encode the values back I have a handy shell alias to use it: alias kedit-secret="KUBE_EDITOR=kube-secret-editor kubectl edit secret"