5
2

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.

Windows10でOpenShift CodeReady Container(CRC)を試す

Posted at

Windows10でOpenShift Code Ready Container (CRC) を試す

1. Hyper-Vを有効化

Windowsの機能で、Hyper-VWindows ハイパーバイザープラットフォームを有効化します。
※ 有効化には再起動が必要です。
image.png

2. RedHat から OpenShift Code Ready Containerを入手する

以下のサイトにアクセスし、プルダウンからWindowsを選択して、Download CodeReady Containerを選択します。
合わせて、その下のDownload pull secretを選択し、pull-secret.txtもダウンロードします。
https://cloud.redhat.com/openshift/create/local

image.png

3. zipの展開

2.でダウンロードしたCRCpull-secret.txtをフォルダに展開します。
image.png

4. コマンドプロンプトの起動

エクスプローラのアドレスにcmdと入力して、Enterを押します。
image.png

image.png

5. Setup

以下のコマンドを実行します。

crc.exe setup

image.png

6. Start

pull-secret.txtのパスを指定して、crc startを実行します。

crc.exe start --pull-secret-file [pull-secret.txtのパス]

image.png

WARN Failed public DNS query from the cluster: ssh command error:

以下のメッセージが出た場合、正常に起動ができていません。

INFO Check internal and public DNS query ...
WARN Failed public DNS query from the cluster: ssh command error:
command : host -R 3 quay.io
err     : Process exited with status 1\n : ;; connection timed out; no servers could be reached
INFO Check DNS query from host ...

image.png

以下のコマンドを実行し、一度、OpenShift CodeReady Containerを停止します。

crc stop

image.png

その後、nameserverのパラメータを付けて再起動します。

crc start --nameserver 1.1.1.1

image.png

7. 管理画面表示

コンソールに表示されているhttps://console-openshift-console.apps-crc.testingにアクセスし、kubeadminとパスワードを入力します。

image.png

image.png

自己署名

OCPは自己署名のため、Chromeでは、以下の画面が表示されますが無視してアクセスしてください。
(複数回表示されることがあります。)

image.png

8. stop

OpenShift CodeReady Container の停止は、以下のコマンドを実行します。

crc stop

image.png

9. cleanup

完全にクリーンアップする場合、以下のコマンドを実行します。

crc cleanup
5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?