问题描述
如何使用kubectl
修改Kubernetes secret
中的值?
How can I modify the values in a Kubernetes secret
using the kubectl
?
我使用kubernetes create secret generic
创建了机密,但是似乎没有修改机密的方法.例如,向其中添加新的秘密值,或在其中更改秘密值.
I created the secret with kubernetes create secret generic
, but there does not seem to be a way to modify a secret. For example, to add a new secret-value to it, or to change a secret-value in it.
我认为我可以进行低级"操作,并编写yaml文件并执行kubectl edit
,但我希望有一种更简单的方法.
I assume i can go 'low-level', and write the yaml-file and do a kubectl edit
but I hope there is a simpler way.
(我正在使用kubernetes 1.2.x
)
推荐答案
最直接(和交互式)的方法应该是执行kubectl edit secret <my secret>
.如果要查看Kubernetes管理的秘密列表,请运行kubectl get secrets
.
The most direct (and interactive) way should be to execute kubectl edit secret <my secret>
. Run kubectl get secrets
if you'd like to see the list of secrets managed by Kubernetes.
这篇关于Kubernetes:使用kubectl修改秘密吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!