用語

  • helm
    • Kubernetesのパッケージマネージャ
  • chart
    • helmで扱うパッケージのこと。rpmやdebに相当

インストール

$ sudo snap install helm --classic

リポジトリ追加

hubとrepoとあるけど、hubの方が新しいバージョンが多い?

$ helm repo add stable https://kubernetes-charts.storage.googleapis.com/ $ helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/

chartの検索

$ helm search nextcloud

chartのインストール

$ helm install stable/nextcloud --set name=nextcloud-helm

<テストのみ> --dry-run

$ helm install stable/nextcloud --set name=nextcloud-helm --dry-run