2
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?

minikubeをインストール

Posted at

minikubeインストールするのにCPUとメモリーが大事です。
CPU最新、メモリーは最低でも16GBは積んでください。
自分はWSL2メモリー32GBでminikube立ち上げています。(Ubuntu24.04)

curl -o minikube -L https://storage.googleapis.com/minikube/releases/v1.34.0/minikube-linux-amd64

sudo install -o root -g root -m 0755 minikube /usr/local/bin/minikube

minikube version

dockerをユーザモードできないとダメなので修正

sudo groupadd docker
sudo usermod -a -G docker $USER
docker run hello-world

でユーザーモードでdocker使えるようにする。

minikube start --kubernetes-version=v1.31.4 --nodes 4 --driver docker

Done! kubectl is now configured to use "minikube" cluster and
"default" namespace by default

これがでれば成功です。

次回TiDBのインストールです。

2
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
2
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?