作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用大三角帆 Helm 图表在我的kubernetes集群中部署大三角帆。
https://github.com/helm/charts/tree/master/stable/spinnaker
使用以下步骤,我们可以将k8s集群添加到大三角帆。
$ kubectl create secret generic --from-file=$HOME/.kube/config my-kubeconfig
kubeConfig:
enabled: true
secretName: my-kubeconfig
secretKey: config
contexts:
# Names of contexts available in the uploaded kubeconfig
- my-context
# This is the context from the list above that you would like
# to deploy Spinnaker itself to.
deploymentContext: my-context
最佳答案
您需要确保所有上下文都在$HOME/.kube/config
文件中:
contexts:
- context:
cluster: dev
user: dev
name: dev
- context:
cluster: test
user: test
name: test
- context:
cluster: qa
user: qa
name: qa
values.yaml
文件上附加所有上下文:
kubeConfig:
enabled: true
secretName: my-kubeconfig
secretKey: config
contexts:
# Names of contexts available in the uploaded kubeconfig
- dev
test
qa
deploymentContext: dev
关于kubernetes - 如何将Kubernetes集群添加到Spinnaker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59034468/
我是一名优秀的程序员,十分优秀!