社区app软件开发如何提升用户互动与品牌忠诚度
752
2022-11-30
Helm chart仓库操作
配置国内存放 chart 仓库的地址
chart图标是存放资源清单的东西,它是存在于远程仓库当中的
阿里云仓库(chart 仓库,国内可能无法访问。微软仓库(chart 这里都有,国内可能无法访问。
#添加阿里云的 chart 仓库
[root@master ~]# helm repo add aliyun has been added to your repositories
#添加 bitnami 的 chart 仓库
[root@xianchaomaster1 ~]# helm repo add bitnami chart 仓库
[root@xianchaomaster1 ~]# helm repo update
#查看配置的 chart 仓库有哪些
[root@xianchaomaster1 ~]# helm repo list
#删除 chart 仓库地址
[root@xianchaomaster1 ~]# helm repo remove aliyun"aliyun" has been removed from your repositories
#从指定 chart 仓库地址搜索 chart
[root@xianchaomaster1 ~]# helm search repo aliyun
搜索和-Chart
#查看阿里云 chart 仓库中的 memcached
[root@master1 ~]# helm search repo aliyun |grep memcachedaliyun/mcrouter 0.1.0 0.36.0 Mcrouter is aaliyun/memcached 2.0.1 Free & open
#查看 chart 信息
[root@master1 ~]# helm show chart aliyun/memcachedapiVersion: v1description: Free & open source, high-performance, distributed memory object caching system.home: chart 包到本地
[root@master1 ~]# helm pull aliyun/memcached[root@master1 ~]# tar zxvf memcached-2.0.1.tgz[root@master1 ~]# cd memcached[root@master1 memcached]# lsChart.yaml README.md templates values.yaml
Chart.yaml: chart 的基本信息,包括版本名字之类templates: 存放 k8s 的部署资源模板,通过渲染变量得到部署文件values.yaml:存放全局变量,templates 下的文件可以调用
[root@xianchaomaster1 memcached]# cd templates/[root@xianchaomaster1 templates]# ls
_helpers.tpl NOTES.txt pdb.yaml statefulset.yaml svc.yaml_helpers.tpl 存放能够复用的模板NOTES.txt 为用户提供一个关于 chart 部署后使用说明的文件
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~