Helm 安装

安装chart

简介

该命令用于安装chart包。

安装参数必须是chart的引用,一个打包后的chart路径,未打包的chart目录或者是一个URL。

要重写chart中的值,使用’–values’参数传递一个文件或者使用’–set’参数在命令行传递配置,强制使用字符串要用’–set-string’。
当值本身对于命令行太长或者是动态生成的时候,可以使用 ‘–set-file’ 设置独立的值。也可以在命令行使用’–set-json’参数设置json值(scalars/objects/arrays)。

$ helm install -f myvalues.yaml myredis ./redis

或者

$ helm install --set name=prod myredis ./redis

或者

$ helm install --set-string long_int=1234567890 myredis ./redis

或者

$ helm install --set-file my_script=dothings.sh myredis ./redis

或者

$ helm install --set-json 'master.sidecars=[{"name":"sidecar","image":"myImage","imagePullPolicy":"Always",ports":[{"name":"portname","containerPort":1234}]}]' myredis ./redis

你可以多次指定’–values’/’-f’参数。最右侧指定的文件优先级最高。比如,如果两个文件myvalues.yaml和override.yaml
都包含名为’Test’的可以,override.yaml中的值优先:

$ helm install -f myvalues.yaml -f override.yaml  myredis ./redis

可以指定’–set’参数多次,最右边的参数优先级最高,比如,’bar’和’newbar’都设置了一个名为’foo’的可以,’newbar’的值优先:

    $ helm install --set foo=bar --set foo=newbar  myredis ./redis

类似地,下面的示例中’foo’被设置成了'[“four”]’:

    $ helm install --set-json='foo=["one", "two", "three"]' --set-json='foo=["four"]' myredis ./redis

下面的示例中,’foo’被设置成了'{“key1″:”value1″,”key2″:”bar”}’:

    $ helm install --set-json='foo={"key1":"value1","key2":"value2"}' --set-json='foo.key2="bar"' myredis ./redis

为了检测生成的清单,但并不安装到chart,可以将’–debug’和’–dry-run’组合使用。

如果设置了–verify,chart必须有出处文件,且出处文件必须传递所有的验证步骤。

有六种不同的方式来标识需要安装的chart:

  1. 通过chart引用: helm install mymaria example/mariadb
  2. 通过chart包: helm install mynginx ./nginx-1.2.3.tgz
  3. 通过未打包chart目录的路径: helm install mynginx ./nginx
  4. 通过URL绝对路径: helm install mynginx
    https://example.com/charts/nginx-1.2.3.tgz
  5. 通过chart引用和仓库url: helm install –repo
    https://example.com/charts/ mynginx nginx
  6. 通过OCI注册中心: helm install mynginx –version 1.2.3 oci://example.com/charts/nginx

CHART引用

chart引用是在chart仓库中引用chart的一种方便方式。

当你用仓库前缀(‘example/mariadb’)引用chart时,Helm会在本地配置查找名为 ‘example’ 的chart仓库,
然后会在仓库中查找名为’mariadb’的仓库,然后会安装这个chart最新的稳定版本,除非指定了’–devel’参数且包含了开发版本(alpha,
beta,和候选版本),或者使用’–version’参数提供一个版本号。

要查看仓库列表,使用’helm repo list’。要在仓库中搜索chart,使用’helm search’。

helm install [NAME] [CHART] [flags]

可选项

      --atomic                       if set, the installation process deletes the installation on failure. The --wait flag will be set automatically if --atomic is used
      --ca-file string               verify certificates of HTTPS-enabled servers using this CA bundle
      --cert-file string             identify HTTPS client using this SSL certificate file
      --create-namespace             create the release namespace if not present
      --dependency-update            update dependencies if they are missing before installing the chart
      --description string           add a custom description
      --devel                        use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored
      --disable-openapi-validation   if set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema
      --dry-run                      simulate an install
      --enable-dns                                 enable DNS lookups when rendering templates
      --force                        force resource updates through a replacement strategy
  -g, --generate-name                generate the name (and omit the NAME parameter)
  -h, --help                         help for install
      --insecure-skip-tls-verify     skip tls certificate checks for the chart download
      --key-file string              identify HTTPS client using this SSL key file
      --keyring string               location of public keys used for verification (default "~/.gnupg/pubring.gpg")
      --name-template string         specify template used to name the release
      --no-hooks                     prevent hooks from running during install
  -o, --output format                prints the output in the specified format. Allowed values: table, json, yaml (default table)
      --pass-credentials             pass credentials to all domains
      --password string              chart repository password where to locate the requested chart
      --post-renderer postrenderer   the path to an executable to be used for post rendering. If it exists in $PATH, the binary will be used, otherwise it will try to look for the executable at the given path (default exec)
      --render-subchart-notes        if set, render subchart notes along with the parent
      --replace                      re-use the given name, only if that name is a deleted release which remains in the history. This is unsafe in production
      --repo string                  chart repository url where to locate the requested chart
      --set stringArray              set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
      --set-file stringArray         set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)
      --set-json stringArray         set JSON values on the command line (can specify multiple or separate values with commas: key1=jsonval1,key2=jsonval2)
      --set-literal stringArray      set a literal STRING value on the command line
      --set-string stringArray       set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
      --skip-crds                    if set, no CRDs will be installed. By default, CRDs are installed if not already present
      --timeout duration             time to wait for any individual Kubernetes operation (like Jobs for hooks) (default 5m0s)
      --username string              chart repository username where to locate the requested chart
  -f, --values strings               specify values in a YAML file or a URL (can specify multiple)
      --verify                       verify the package before using it
      --version string               specify a version constraint for the chart version to use. This constraint can be a specific tag (e.g. 1.1.1) or it may reference a valid range (e.g. ^2.0.0). If this is not specified, the latest version is used
      --wait                         if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment, StatefulSet, or ReplicaSet are in a ready state before marking the release as successful. It will wait for as long as --timeout

从父命令继承的命令

      --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-%e5%ae%89%e8%a3%85/

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

相关推荐

  • hcitool

    文章目录hcitool安装使用语法命令常用简单示例 hcitool hcitool是一个Linux命令行工具,用于管理和调试蓝牙设备。它可以用于扫描周围的蓝牙设备、连接到蓝牙设备发…

    入门教程 2023年 12月 15日
  • setfacl

    文章目录setfacl补充说明选项 setfacl 设置文件访问控制列表 补充说明 setfacl命令 是用来在命令行里设置ACL(访问控制列表)。在命令行里,一系列的命令跟随以一…

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

    文章目录sum补充说明语法选项参数实例 sum 计算文件的校验码和显示块数 补充说明 sum命令 用于计算并显示指定文件的校验和与文件所占用的磁盘块数。 语法 sum(选项)(参数…

    入门教程 2024年 3月 11日
  • Java 简介

    Java 是由 Sun Microsystems 公司于 1995 年 5 月推出的 Java 面向对象程序设计语言和 Java 平台的总称。由 James Gosling和同事们…

    入门教程 2023年 3月 4日
  • gcc

    文章目录gcc补充说明语法选项参数实例 gcc 基于C/C++的编译器 补充说明 gcc命令 使用GNU推出的基于 C/C++ 的编译器,是开放源代码领域应用最广泛的编译器,具有功…

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

    文章目录export概要主要用途选项参数返回值例子错误用法Q&AQ:对变量或函数设置导出属性有什么用?Q:如果我编写的脚本修改了已有的环境变量的值,那么执行它会在当前终端生…

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

    文章目录php补充说明语法选项参数 php PHP语言的命令行接口 补充说明 php命令 是流行的Web开发语言PHP的命令行接口,可以使用PHP语言开发基于命令行的系统管理脚本程…

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

    文章目录dc说明语法选项示例支持的运算 dc 任意精度计算器 说明 dc 是一款逆波兰表达式计算器,支持无限制精度的算术运算。它还允许您定义和调用宏。通常,dc从标准输入读取,也可…

    入门教程 2023年 12月 7日
  • 指针

    文章目录指针什么是指针?指针的声明指针的空值指针的解引用向函数传递指针参数不要向函数传递数组的指针,而应该使用切片Go 不支持指针运算 指针 上一节:第十四篇 字符串下一节:第十六…

    2023年 12月 5日
  • systemctl

    文章目录systemctl补充说明实例 systemctl 系统服务管理器指令 补充说明 systemctl命令 是系统服务管理器指令,它实际上将 service 和 chkcon…

    入门教程 2024年 3月 11日
Translate »