如何使用 KOPS 加载当前的 Kubernetes 集群配置?
How to load the current Kubernetes cluster configuration with KOPS?
使用 KOPS 检索配置与以下内容一起使用:
kops get cluster --name <cluster-name> --output yaml
然后,我们必须使用以下内容调用实例组配置:
kops get ig --name <cluster-name> --output yaml
加入文档需要添加yaml分隔符---
。
是否有更简单的方法来使用 KOPS 检索当前的 Kubernetes 集群配置?
根据https://github.com/kubernetes/kops/issues/1758#issuecomment-336604987,以下命令将打印出用于创建集群的原始配置:
kops get -o yaml
配置将包括整个集群定义!
使用 KOPS 检索配置与以下内容一起使用:
kops get cluster --name <cluster-name> --output yaml
然后,我们必须使用以下内容调用实例组配置:
kops get ig --name <cluster-name> --output yaml
加入文档需要添加yaml分隔符---
。
是否有更简单的方法来使用 KOPS 检索当前的 Kubernetes 集群配置?
根据https://github.com/kubernetes/kops/issues/1758#issuecomment-336604987,以下命令将打印出用于创建集群的原始配置:
kops get -o yaml
配置将包括整个集群定义!