Installing Single Node OpenShift (SNO)

OpenShift AI は SNO クラスターにデプロイできます。これは多くの場合、テスト、調査、およびデモンストレーションの目的に対しては十分です。

  1. 以下のサンプル install-config.yaml を使用して、シングルノード OpenShift (SNO) をデプロイします。

apiVersion: v1
baseDomain: rhoai.rh-aiservices-bu.com
compute:
  - architecture: amd64
    hyperthreading: Enabled
    name: worker
    platform:
      aws:
        type: m6i.4xlarge
    replicas: 0
controlPlane:
  architecture: amd64
  hyperthreading: Enabled
  name: master
  platform:
    aws:
      type: g6.12xlarge
      rootVolume:
        size: 1000
  replicas: 1
metadata:
  name: test-rc2
networking:
  clusterNetwork:
    - cidr: 10.128.0.0/14
      hostPrefix: 23
  machineNetwork:
    - cidr: 10.0.0.0/16
  networkType: OVNKubernetes
  serviceNetwork:
    - 172.30.0.0/16
platform:
  aws:
    region: us-west-2
publish: External
pullSecret: "<your pull secret>"
sshKey: "<your ssh Key>"
  1. https://console.redhat.com/openshift/downloads#tool-x86_64-openshift-install からOpenShiftインストーラーをダウンロードします。

  2. install-config.yaml ファイルを使用してインストールを実行してください。

./openshift-install create cluster --dir . --log-level=info
  1. インストールが完了したら、kubeadmin の認証情報を使用してクラスターにログインできます。