0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Kubernetes 学習環境の構築(for mac)

Last updated at Posted at 2020-01-13

Kubernetesを勉強するために学習環境をmacにインストールしたのでその備忘です。

1.Docker for Mac のインストール

こちらの記事参照

2.VirtualBoxのインストール

下記リンクからインストール。OS X hostsをクリックして、dmbをダウンロード。
オプションは全てデフォルトでOK。
https://www.virtualbox.org/wiki/Downloads
image.png

3.kubectlコマンドのインストール

こちらの記事参照

4.Minikube*のインストール

*小規模なKubernetes環境を作成するために作られたパッケージです。 1台のPC上に、仮想的にKubernetesの環境を構築することができます。 Minikubeは、Windows上でもLinux上でもインストールできるのが特徴

macosのPKGマネージャー Homebrewを使ってインストール

$ brew install minikube
 ..(中略)..
$ minikube version
minikube version: v1.6.2

$ 下記コマンドだとエラーが出るので注意
$ brew cask install minikube
 ..(中略)..
Error: Running Homebrew as root is extremely dangerous and no longer supported.
***

エラーの詳細は下記。
https://github.com/kubernetes/website/pull/17296

5.Vagrantのインストール

Mac OSをクリックしてダウンロード
https://www.vagrantup.com/downloads.html
image.png

6.Gitコマンドのインストール

$brew install git
...(中略)...
==> Summary
🍺  /usr/local/Cellar/gettext/0.20.1: 1,893 files, 18.4MB

以上で環境構築は完了です。ここからkubernetesが触れます。詳細は別で。

99.参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?