10.2 Requests库入门
2026/1/8 21:09:55
# 添加仓库(例如 Bitnami) helm repo add bitnami https://charts.bitnami.com/bitnami # 查看仓库列表 helm repo list # 更新仓库缓存 helm repo update # 删除仓库 helm repo remove bitnami # 查询版本 helm search repo bitnami/mongodb --versions # 以上是平常使用方法,但只有近6个月的,之前的老版本看不到 # github仓库地址 https://github.com/bitnami/charts/tree/archive-full-index # 下载index.yaml文件到本地或者在线添加 helm repo add bitnami-full-index https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami # 启动一个http服务 python2版本:python -m SimpleHTTPServer 5679 python3版本:python3 -m http.server 5679 # 添加 helm repo add full-bitnami http://localhost:5679 # 搜索指定软件,显示所有版本 helm search repo full-bitnami/mongodb --versions相关资料:
https://github.com/bitnami/charts/issues/10833