[k8s]helm原理&私有库搭建&monocularui和kubeapp探究

有些话、适合烂在心里 提交于 2020-03-21 05:28:40
  • 运行最简单的charts示例

helm的2个chart例子:
https://github.com/kubernetes/helm/tree/master/docs/examples/nginx

helm fetch xxx # 得到tgz

helm install --dry-run --debug docs/examples/nginx ## 查看模板和value组合后生成的yaml.

diy yaml后再运行
  • 构建charts私有仓库:

参考:
https://github.com/rootsongjc/kubernetes-handbook/blob/a44ca7efac0b04bf130a4c39ceba3473b9c34210/practice/create-private-charts-repo.md
https://jimmysong.io/posts/manage-kubernetes-native-app-with-helm/

  • 启动本地仓库
helm serve
  • 添加本地仓库
                仓库名  仓库地址
helm repo add monocular https://kubernetes-helm.github.io/monocular

第三方helm ui

https://github.com/kubernetes-helm/monocular

还有另一个和这个类似的:
https://github.com/kubeapps/kubeapps

todo:

研究monocular和kubeapps把私有库搞起来.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!