helm create
指定された名前で新しい chart を作成します
概要
このコマンドは、chart で一般的に使用されるファイルやディレクトリを含む chart ディレクトリを作成します。
例えば、helm create foo を実行すると、次のようなディレクトリ構造が作成されます。
foo/
├── .helmignore # Helm chart のパッケージ化時に無視するパターンを記述します
├── Chart.yaml # chart に関する情報
├── values.yaml # テンプレートのデフォルト値
├── charts/ # この chart が依存する chart
└── templates/ # テンプレートファイル
└── tests/ # テストファイル
helm create は引数としてパスを受け取ります。指定されたパスにディレクトリが存在しない場合、Helm は必要に応じてディレクトリを作成します。指定された出力先が既に存在し、そのディレクトリにファイルがある場合、競合するファイルは上書きされますが、それ以外のファイルはそのまま残ります。
helm create NAME [flags]
オプション
-h, --help help for create
-p, --starter string Helm starter scaffold の名前または絶対パス
親コマンドから継承されたオプション
--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
--qps float32 queries per second used when communicating with the Kubernetes API, not including bursting
--registry-config string path to the registry config file (default "~/.config/helm/registry/config.json")
--repository-cache string path to the directory 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