Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用Kops成功配置了 Kubernetes 集群。
但是,我找不到在哪里更改自动生成的管理员密码 - 我该怎么做?
目前没有简单的方法可以做到这一点,因为无法通过 Kops API 创建“秘密”类型的秘密(我知道这很混乱)。唯一的解决方法是更改凭据,在这种情况下,您的密码直接在您的 s3 配置中,如下所述:
https://github.com/kubernetes/kops/blob/master/docs/secrets.md#workaround-for-chang-secrets-with-type-secret
并通过更改其配置来强制滚动更新您的集群(例如,我刚刚更新到新版本的 k8s)或简单地运行kops rolling-update cluster --yes --force
kops rolling-update cluster --yes --force
显然,未来版本之一将很快解决此问题。