Helm | Helm 推送

helm push

将chart推送到远程

简介

上传chart到注册表。

如果chart有其他相关文件,也会一起上传。

helm push [chart] [remote] [flags]

可选项

      --ca-file string             verify certificates of HTTPS-enabled servers using this CA bundle
      --cert-file string           identify registry client using this SSL certificate file
  -h, --help                       help for push
      --insecure-skip-tls-verify   skip tls certificate checks for the chart upload
      --key-file string            identify registry client using this SSL key file

从父命令继承的可选项

      --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 – 针对Kubernetes的Helm包管理器。

若文章对你有帮助,可以点赞或打赏支持我们。发布者:Aurora,转载请注明出处:http://61.174.243.28:13541/AY-knowledg-hub/helm-helm-%e6%8e%a8%e9%80%81/

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

相关推荐

  • dpkg

    文章目录dpkg补充说明语法选项参数实例 dpkg Debian Linux系统上安装、创建和管理软件包 补充说明 dpkg命令 是Debian Linux系统用来安装、创建和管理…

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

    文章目录rmmod补充说明语法选项参数实例 rmmod 从运行的内核中移除指定的内核模块 补充说明 rmmod命令 用于从当前运行的内核中移除指定的内核模块。执行rmmod指令,可…

    入门教程 2024年 3月 4日
  • fg

    文章目录fg概要主要用途参数返回值例子注意 fg 将后台作业移动到前台终端运行 概要 fg [job_spec …] 主要用途 用于将后台作业(在后台运行的或者在后台挂起的作业…

    入门教程 2023年 12月 14日
  • bzdiff

    文章目录bzdiff补充说明语法参数 bzdiff 直接比较两个.bz2压缩包中文件的不同 补充说明 bzdiff命令 用于直接比较两个“.bz2”压缩包中文件的不同,省去了解压缩…

    入门教程 2023年 12月 6日
  • tftp

    文章目录tftp补充说明语法选项参数实例 tftp 在本机和tftp服务器之间使用TFTP协议传输文件 补充说明 tftp命令 用在本机和tftp服务器之间使用TFTP协议传输文件…

    入门教程 2024年 3月 11日
  • shift

    文章目录shift概要主要用途参数返回值例子注意 shift 移动位置参数。 概要 shift [n] 主要用途 将位置参数$n, $n+1…重命名为$1, $2…。 参数…

    入门教程 2024年 3月 4日
  • whereis

    文章目录whereis补充说明语法选项参数实例 whereis 查找二进制程序、代码等相关文件路径 补充说明 whereis命令 用来定位指令的二进制程序、源代码文件和man手册页…

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

    文章目录egrep补充说明语法实例 egrep 在文件内查找指定的字符串 补充说明 egrep命令 用于在文件内查找指定的字符串。egrep执行效果与grep -E相似,使用的语法…

    入门教程 2023年 12月 14日
  • ispell

    文章目录ispell补充说明语法参数 ispell 检查文件中出现的拼写错误 补充说明 ispell命令 用于检查文件中出现的拼写错误。 语法 ispell(参数) 参数 文件:指…

    入门教程 2023年 12月 19日
  • Git 查看提交历史

    Git 提交历史一般常用两个命令: git log – 查看历史提交记录。 git blame – 以列表形式查看指定文件的历史修改记录。 git log …

    2024年 4月 30日
Translate »