2020年9月4日金曜日

raspberry pi by helm

参照先:
https://helm.sh/ja/docs/intro/using_helm/


1)インストールを行う。
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3

chmod 700 get_helm.sh

./get_helm.sh


2)導入後、レポジトリ検索ができなかったので、以下の方法で
レポジトリの追加を行う。
helm repo add stable https://kubernetes-charts.storage.googleapis.com


3)例として、wordpressのレポジトリを検索してみる
helm search repo wordpress


4)実際にwordpressのインストールを行う
helm install wordpress stable/wordpress



0 件のコメント:

コメントを投稿

【AI×GitOps】Docker Composeから始めるRaspberry Pi 5 Kubernetesクラスタへの自動デプロイ設計

現在構築を進めている動画管理システム開発において、いきなりKubernetes(K8s)に展開するのではなく、 Docker Composeを中間地点に挟んで段階的にK8s+Argo CD(GitOps)へ移行するアーキテクチャ設計 をまとめました。 Bionic(AIアシスタン...