penShift 4.4を構築してアプリを動かしてみる - アプリ構築編 -


1. Console表示

1.1 アクセス情報

INFO Access the OpenShift web-console here:に書かれているURLを起動します。
ユーザ名とパスワードはuser:kubeadmin, password:に記載されています。

# /usr/local/bin/openshift-install --dir=bare-metal wait-for install-complete --log-level=debug
DEBUG OpenShift Installer 4.4.31
DEBUG Built from commit 0227b5f653786d8d58312cd08a2e924e72ae646f
DEBUG Fetching Install Config...
DEBUG Loading Install Config...
DEBUG   Loading SSH Key...
DEBUG   Loading Base Domain...
DEBUG     Loading Platform...
DEBUG   Loading Cluster Name...
DEBUG     Loading Base Domain...
DEBUG     Loading Platform...
DEBUG   Loading Pull Secret...
DEBUG   Loading Platform...
DEBUG Using Install Config loaded from state file
DEBUG Reusing previously-fetched Install Config
INFO Waiting up to 30m0s for the cluster at https://api.lab.openshift.local:6443 to initialize...
DEBUG Cluster is initialized
INFO Waiting up to 10m0s for the openshift-console route to be created...
DEBUG Route found in openshift-console namespace: console
DEBUG Route found in openshift-console namespace: downloads
DEBUG OpenShift console route is created
INFO Install complete!
INFO To access the cluster as the system:admin user when using 'oc', run 'export KUBECONFIG=/opt/ocp/bare-metal/auth/kubeconfig'
INFO Access the OpenShift web-console here: https://console-openshift-console.apps.lab.openshift.local
INFO Login to the console with user: kubeadmin, password: XXXXX-XXXXX-XXXXX-XXXXX

1.2 kubeadminでログイン

ログイン画面を表示し、kubeadminでログインします。

1.3 ダッシュボード表示

以下のダッシュボードが表示されます。

2. プロジェクトの作成

2.1 プロジェクトの表示

左のメニューからprojectを選択します。

2.2 プロジェクトの作成

メインコンテンツの左上のCreate Project のボタンを選択し、プロジェクト名を入力して、OKボタンを押します。

2.3 プロジェクト作成の確認

無事、sampleprojectが作成されました。

3. サンプルアプリの追加

3.1 ロールの切り替え

左上のAdministratorを選択し、Developerに切り替えます。

3.2 +Add

Developerのメニューで+Addを選択します。

3.3 カタログ選択

From Catalogを選択します。

3.4 アプリの選択

フィルターのテキストにnodeと入力し、node (Builder Image)を選択します。

3.5 アプリの作成

Create Applicationを選択します。

3.6 アプリの詳細

Gitの欄で、Try Sampleのリンクを選択し、一番下のCreateを選択します。

3.7 アプリのビルド開始

自動的にアプリのビルドが開始されます。

3.8 トポロジー表示

左のメニューからTopologyを選択します。
ビルド中は薄い水色で表示されます。

3.9 ビルド完了

ビルドが完了すると、濃い青色に変わり、左下のビルドマークがチェックに変わります。

4. サンプルアプリにアクセス

トポロジーの画面で、右上のリンクを選択します。

5. サンプルアプリが表示されたことを確認します。