Helm | Helm 仓库更新

helm repo update

从chart仓库中更新本地可用chart的信息

简介

更新从各自chart仓库中获取的有关chart的最新信息。信息会缓存在本地,被诸如’helm search’等命令使用。

你可以指定需要更新的仓库列表。
$ helm repo update <repo_name> …
使用 ‘helm repo update’ 更新所有仓库。

helm repo update [REPO1 [REPO2 ...]] [flags]

可选项

      --fail-on-repo-update-fail   update fails if any of the repository updates fail
  -h, --help   help for update

从父命令继承的命令

      --burst-limit int                 client-side default throttling limit (default 100)
      --debug                           enable verbose output
      --kube-apiserver string           the address and the port for the Kubernetes API server
      --kube-as-group stringArray       group to impersonate for the operation, this flag can be repeated to specify multiple groups.
      --kube-as-user string             username to impersonate for the operation
      --kube-ca-file string             the certificate authority file for the Kubernetes API server connection
      --kube-context string             name of the kubeconfig context to use
      --kube-insecure-skip-tls-verify   if true, the Kubernetes API server's certificate will not be checked for validity. This will make your HTTPS connections insecure
      --kube-tls-server-name string     server name to use for Kubernetes API server certificate validation. If it is not provided, the hostname used to contact the server is used
      --kube-token string               bearer token used for authentication
      --kubeconfig string               path to the kubeconfig file
  -n, --namespace string                namespace scope for this request
      --registry-config string          path to the registry config file (default "~/.config/helm/registry/config.json")
      --repository-cache string         path to the file containing cached repository indexes (default "~/.cache/helm/repository")
      --repository-config string        path to the file containing repository names and URLs (default "~/.config/helm/repositories.yaml")

请参阅

  • helm repo – 添加、列出、删除、更新和索引chart仓库

若文章对你有帮助,可以点赞或打赏支持我们。发布者:Aurora,转载请注明出处:http://61.174.243.28:13541/AY-knowledg-hub/helm-helm-%e4%bb%93%e5%ba%93%e6%9b%b4%e6%96%b0/

(0)
AuroraAurora站点维系者
上一篇 2023年 12月 14日 下午4:32
下一篇 2023年 12月 14日 下午6:09

相关推荐

  • iOS自动布局

    文章目录IOS自动布局简介实例步骤输出 IOS自动布局 简介 自动布局在iOS 6.0中引入,仅可以支持IOS6.0 及 更高版本。它可以帮助我们创建用于多个种设备的界面。 实例步…

    2023年 4月 1日
  • mail

    文章目录mail补充说明语法选项参数实例 mail 命令行下发送和接收电子邮件 补充说明 mail命令 是命令行的电子邮件发送和接收工具。操作的界面不像elm或pine那么容易使用…

    入门教程 2024年 1月 3日
  • Docker 存储目录的平滑迁移

    文章目录docker 目录的迁移迁移准备常用运维指令迁移停止docker服务创建新的目录或磁盘目录相关指令磁盘相关指令删除磁盘分区格式化硬盘建立挂载目录挂载硬盘卸载磁盘从旧目录迁移…

    2021年 11月 4日
  • Java Number & Math 类

    一般地,当需要使用数字的时候,我们通常使用内置数据类型,如:byte、int、long、double 等。 文章目录实例Test.java 文件代码:Java Math 类Test…

    2023年 3月 4日
  • mv

    文章目录mv补充说明语法选项参数实例 mv 用来对文件或目录重新命名 补充说明 mv命令 用来对文件或目录重新命名,或者将文件从一个目录移到另一个目录中。source表示源文件或目…

    入门教程 2024年 1月 3日
  • diff

    文章目录diff补充说明语法选项参数实例以正常模式比较差异以上下文 (context) 模式比较差异以联合 (unified) 模式比较差异多文件比较差异 diff 比较给定的两个…

    入门教程 2023年 12月 7日
  • paste

    文章目录paste补充说明语法选项参数 paste 将多个文件按列队列合并 补充说明 paste命令 用于将多个文件按照列队列进行合并。 语法 paste(选项)(参数) 选项 -…

    入门教程 2024年 3月 1日
  • HTML 基础

    文章目录HTML 基础- 4个实例HTML 标题实例HTML 段落实例HTML 链接实例HTML 图像实例 HTML 基础- 4个实例 不要担心本章中您还没有学过的例子。 您将在下…

    入门教程 2023年 4月 11日
  • 32. panic 和 recover

    欢迎来到 Golang 系列教程的第 32 篇。 文章目录什么是 panic?什么时候应该使用 panic?panic 示例发生 panic 时的 deferrecoverpani…

    2023年 12月 5日
  • nm

    文章目录nm补充说明语法选项参数 nm 显示二进制目标文件的符号表 补充说明 nm命令 被用于显示二进制目标文件的符号表。 语法 nm(选项)(参数) 选项 -A:每个符号前显示文…

    入门教程 2024年 1月 10日
Translate »