Thursday, July 08, 2021

Simplify Red Hat Quay/Clair Upgrade From 3.3.4 to 3.5.4

 

Security in Kubernetes and OpenShift environments for many customers is very important.  Everything from firewall rules, role bindings and limiting access to services is on the table.   For customers who run their own private registry using Red Hat Quay that security is extended with Clair which can scan their images as they are placed into the registry for known vulnerabilities.    The binary combo of Quay and Clair makes it a great combination.  However along with the sense of security comes the need for a smooth transition when upgrading Quay and Clair.   In the following blog I will demonstrate how I upgraded my Quay & Clair  3.3.4 environment to 3.5.4.   

The upgrade of Quay & Clair from 3.3.4 to 3.5.4 one would think is very trivial but there are a few things that change along the way which means the order of operation is important here.  Some of those changes are as follows and ones I experienced:

  • From 3.3.4 to 3.4.5 there is a database schema update that is performed so one will want to ensure they have a good backup of their MySQL or PostgreSQL.
  • From 3.3.4 to 3.4.5 the Clair scanning version changes from version 2 to version 4.  This means we first need to configure a brand new PostgreSQL database and then configure Clair and Quay for v4 scanning.
  • From 3.3.4 to 3.4.5 SSL certs now require to have Subject Alternative Names (SAN)

 Before we start the upgrade lets look at the current running environment.  In all my examples the docker command is used.  This could easily be replaced with podman and even in the official documentation podman is the preferred command from Quay 3.4+.

First lets look at the running containers by running the docker ps command:

# docker ps
CONTAINER ID     IMAGE                                             COMMAND                  CREATED        STATUS      PORTS                                                            NAMES
713cb9e63813     quay.io/redhat/clair-jwt:v3.3.4                   "/clair/clair-entr..."   3 hours ago    Up 3 hours  0.0.0.0:6060-6061->6060-6061/tcp                                 youthful_ptolemy
32c922276bf4     quay.io/redhat/quay:v3.3.4                        "/quay-registry/qu..."   3 hours ago    Up 3 hours  7443/tcp, 9091/tcp, 0.0.0.0:80->8080/tcp, 0.0.0.0:443->8443/tcp  blissful_thompson
1b05a8997caa     registry.access.redhat.com/rhscl/mysql-57-rhel7   "container-entrypo..."   3 hours ago    Up 3 hours  0.0.0.0:3306->3306/tcp                                           mysql
9de27908c351     postgres                                          "docker-entrypoint..."   3 hours ago    Up 3 hours  0.0.0.0:5432->5432/tcp                                           postgres
53b420f0c0be     registry.access.redhat.com/rhscl/redis-32-rhel7   "container-entrypo..."   3 hours ago    Up 3 hours  0.0.0.0:6379->6379/tcp                                           jovial_sinoussi

From the output above we can see that in this environment all processes run on the same server with the exception of the S3 storage that actually stores our registry data.   So lets break down what is running:

Container ID

Process

Purpose

External Port

Internal Port

713cb9e63813

Clair 3.3.4

Image Scanning

6060 & 6061

6060 & 6061

9de27908c351

PostgreSQL 

DB for Clair

5432

5432

32c922276bf4

Quay 3.3.4

Registry

80 & 443

8080 & 8443

1b05a8997caa

MySQL

DB for Quay

3306

3306

53b420f0c0be

Redis

DB Cache

6379

6379


Next I want to show the firewalld rules we have allowed.  Note that the list below also shows the additional ports I want opened for the upgrade process.

# firewall-cmd --list-all
public (active)
  target: default
  icmp-block-inversion: no
  interfaces: eth0
  sources: 
  services: dhcpv6-client ssh
  ports: 8443/tcp 80/tcp 443/tcp 3306/tcp 6379/tcp 5432/tcp 6060/tcp 6161/tcp 6061/tcp 6062/tcp 6063/tcp 5433/tcp 8080/tcp 8081/tcp 8089/tcp
  protocols: 
  masquerade: no
  forward-ports: 
  source-ports: 
  icmp-blocks: 
  rich rules:

Now lets take a look at the current Quay config.yaml file:

# cat /mnt/quay/config/config.yaml
AUTHENTICATION_TYPE: Database
BITTORRENT_FILENAME_PEPPER: af936296-6a1f-444a-8642-a2cd26184cb4
BUILDLOGS_REDIS:
  host: quay.schmaustech.com
  port: 6379
DATABASE_SECRET_KEY: '19413931088941115129071567106986409590936979178495908481080155841238934557252'
DB_URI: mysql+pymysql://quayuser:JzxCTamgFBmHRhcGFtoPHFkrx1BH2vwQ@192.168.0.11/enterpriseregistrydb
DEFAULT_TAG_EXPIRATION: 2w
DISTRIBUTED_STORAGE_CONFIG:
  default:
  - RadosGWStorage
  - access_key: BKIKJAA5BMMU2RHO6IBB
    bucket_name: schmaustech
    hostname: 192.168.0.21
    is_secure: false
    port: '9100'
    secret_key: V7f1CwQqAcwo80UEIJEjc5gVQUSSx5ohQ9GSrr12
    storage_path: /datastorage/registry
DISTRIBUTED_STORAGE_DEFAULT_LOCATIONS: []
DISTRIBUTED_STORAGE_PREFERENCE:
- default
ENTERPRISE_LOGO_URL: /static/img/RH_Logo_Quay_Black_UX-horizontal.svg
FEATURE_ACI_CONVERSION: false
FEATURE_ANONYMOUS_ACCESS: true
FEATURE_APP_REGISTRY: false
FEATURE_APP_SPECIFIC_TOKENS: true
FEATURE_BUILD_SUPPORT: false
FEATURE_CHANGE_TAG_EXPIRATION: true
FEATURE_DIRECT_LOGIN: true
FEATURE_MAILING: false
FEATURE_PARTIAL_USER_AUTOCOMPLETE: true
FEATURE_REPO_MIRROR: false
FEATURE_REQUIRE_TEAM_INVITE: true
FEATURE_RESTRICTED_V1_PUSH: true
FEATURE_SECURITY_NOTIFICATIONS: true
FEATURE_SECURITY_SCANNER: true
FEATURE_USERNAME_CONFIRMATION: true
FEATURE_USER_CREATION: true
FEATURE_USER_LOG_ACCESS: true
GITHUB_LOGIN_CONFIG: {}
GITHUB_TRIGGER_CONFIG: {}
GITLAB_TRIGGER_KIND: {}
GPG2_PRIVATE_KEY_FILENAME: signing-private.gpg
GPG2_PUBLIC_KEY_FILENAME: signing-public.gpg
LOGS_MODEL: database
LOGS_MODEL_CONFIG: {}
LOG_ARCHIVE_LOCATION: default
MAIL_DEFAULT_SENDER: support@quay.io
MAIL_PORT: 587
MAIL_USE_TLS: true
PREFERRED_URL_SCHEME: https
REGISTRY_TITLE: Red Hat Quay
REGISTRY_TITLE_SHORT: Red Hat Quay
REPO_MIRROR_SERVER_HOSTNAME: null
REPO_MIRROR_TLS_VERIFY: true
SECRET_KEY: '61665332226336867411689064816174816874267671771605676993213345229382029684425'
SECURITY_SCANNER_ENDPOINT: http://quay.schmaustech.com:6060
SECURITY_SCANNER_ISSUER_NAME: security_scanner
SERVER_HOSTNAME: quay.schmaustech.com
SETUP_COMPLETE: true
SIGNING_ENGINE: gpg2
SUPER_USERS:
- admin
TAG_EXPIRATION_OPTIONS:
- 0s
- 1d
- 1w
- 2w
- 4w
TEAM_RESYNC_STALE_TIME: 60m
TESTING: false
USERFILES_LOCATION: default
USERFILES_PATH: userfiles/
USER_EVENTS_REDIS:
  host: quay.schmaustech.com
  port: 6379
USE_CDN: false

And then lets take a look at the current Clair config.yaml keeping in mind this is Clair v2 and during the upgrade process to Quay 3.4.3 we will be upgrading to Clair v4 so this file will be replaced:

# cat /mnt/clair/config/config.yaml 
clair:
  database:
    type: pgsql
    options:
      # A PostgreSQL Connection string pointing to the Clair Postgres database.
      # Documentation on the format can be found at: http://www.postgresql.org/docs/9.4/static/libpq-connect.html
      source: postgresql://postgres:password@quay.schmaustech.com:5432/clairtest?sslmode=disable 
      cachesize: 16384
  api:
    #The port at which Clair will report its health status. For example, if Clair is running at
    #https://clair.mycompany.com, the health will be reported at
    #http://clair.mycompany.com:6061/health.
    healthport: 6061

    port: 6062
    timeout: 900s

    # paginationkey can be any random set of characters. *Must be the same across all Clair instances*.
    paginationkey:

  updater:
    # interval defines how often Clair will check for updates from its upstream vulnerability databases.
    interval: 6h
  notifier:
    attempts: 3
    renotifyinterval: 1h
    http:
      # QUAY_ENDPOINT defines the endpoint at which Quay is running.
      # For example: https://myregistry.mycompany.com
      endpoint: https://quay.schmaustech.com/secscan/notify
      proxy: http://localhost:6063

jwtproxy:
  signer_proxy:
    enabled: true
    listen_addr: :6063
    ca_key_file: /certificates/mitm.key # Generated internally, do not change.
    ca_crt_file: /certificates/mitm.crt # Generated internally, do not change.
    signer:
      issuer: security_scanner
      expiration_time: 5m
      max_skew: 1m
      nonce_length: 32
      private_key:
        type: autogenerated
        options:
          rotate_every: 12h
          key_folder: /clair/config/
          key_server:
            type: keyregistry
            options:
              # QUAY_ENDPOINT defines the endpoint at which Quay is running.
              # For example: https://myregistry.mycompany.com
              registry: https://quay.schmaustech.com/keys/


  verifier_proxies:
  - enabled: true
    # The port at which Clair will listen.
    listen_addr: :6060

    # If Clair is to be served via TLS, uncomment these lines. See the "Running Clair under TLS"
    # section below for more information.
    #key_file: /clair/config/domain.key
    #crt_file: /clair/config/domain.crt

    verifier:
      # CLAIR_ENDPOINT is the endpoint at which this Clair will be accessible. Note that the port
      # specified here must match the listen_addr port a few lines above this.
      # Example: https://myclair.mycompany.com:6060
      audience: http://quay.schmaustech.com:6060

      upstream: http://localhost:6062
      key_server:
        type: keyregistry
        options:
          # QUAY_ENDPOINT defines the endpoint at which Quay is running.
          # Example: https://myregistry.mycompany.com
          registry: https://quay.schmaustech.com/keys/

At this point we have looked at the current running environment but before we begin upgrade I would recommend taking a Quay database backup whether its running MySQL or PostgreSQL.  We should do this because during the upgrade process of Quay the DB schema will get updated and so if we had to revert back we would need to restore from backup.

Now lets start the upgrade process from 3.3.4 to 3.4.5.   During this upgrade process we will be upgrading three components:  Redis, Clair & Quay.  Lets start with the Redis upgrade first as we can do this with the current Quay environment.   Below we will stop the current Redis container and then start the new Redis container for the 3.4.3 environment:

# docker stop 53b420f0c0be
53b420f0c0be

# docker run -d --rm --name redis -p 6379:6379 -e REDIS_PASSWORD=strongpassword registry.redhat.io/rhel8/redis-5:1
84f42084adae1e2e9d5b11aa8e06b90dde49dce015b8f30e72541631c8e98e05

# docker ps
CONTAINER ID        IMAGE                                       COMMAND                  CREATED             STATUS              PORTS                       NAMES
84f42084adae        registry.redhat.io/rhel8/redis-5:1          "container-entrypo..."   5 seconds ago       Up 4 seconds        0.0.0.0:6379->6379/tcp      redis

Since we added a password switch to Redis on the new version we need to also update the Quay config.yaml to include that password:

BUILDLOGS_REDIS:
    host: quay.schmaustech.com
    password: strongpassword
    port: 6379
    
USER_EVENTS_REDIS:
    host: quay.schmaustech.com
    password: strongpassword
    port: 6379

Now lets stop and start the Quay 3.3.4 container and confirm our Redis change takes effect:

# docker stop 32c922276bf4
32c922276bf4

# docker run --restart=always -p 443:8443 -p 80:8080    --sysctl net.core.somaxconn=4096    --privileged=true    -v /mnt/quay/config:/conf/stack:Z    -v /mnt/quay/storage:/datastorage:Z    -d quay.io/redhat/quay:v3.3.4
f0ab641a5d253532e263d38820ca1849f17428e0d7d12b6f79b676222d310b06

# docker ps
CONTAINER ID    IMAGE                        COMMAND                  CREATED              STATUS              PORTS                                                             NAMES
f0ab641a5d25    quay.io/redhat/quay:v3.3.4   "/quay-registry/qu..."   About a minute ago   Up About a minute   7443/tcp, 9091/tcp, 0.0.0.0:80->8080/tcp, 0.0.0.0:443->8443/tcp   gifted_einstein

Now lets move onto the upgrade of the Clair component.  For this we will need a new database for Clair to consume.    In my example I am going to run a new PostgreSQL database container completely separate from the current PostgreSQL container we originally had for our 3.3.4 environment.  To do this I will run the following commands:

# mkdir /mnt/postgres-clair4
# setfacl -m u:26:-wx /mnt/postgres-clair4
# docker run -d --rm --name postgresql-clair4 -e POSTGRESQL_USER=clairuser -e POSTGRESQL_PASSWORD=clairpass -e POSTGRESQL_DATABASE=clair -e POSTGRESQL_ADMIN_PASSWORD=password -p 5433:5432 -v /mnt/postgres-clair4:/var/lib/pgsql/data:Z -d registry.redhat.io/rhel8/postgresql-10:1
2b4b1afa3345d24bb6058c713e2f4d363a09da5bff75242d18bad69ddb720d34

# docker ps
CONTAINER ID        IMAGE                                           COMMAND                  CREATED             STATUS              PORTS                     NAMES
2b4b1afa3345        registry.redhat.io/rhel8/postgresql-10:1        "container-entrypo..."   3 seconds ago       Up 2 seconds        0.0.0.0:5433->5432/tcp    postgresql-clair4


Because Clair requires the uuid-ossp extensions in the PostgreSQL database we need to run the following SQL command against the database:

# docker exec -it postgresql-clair4 /bin/bash -c 'echo "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\"" | psql -d clair -U postgres'
CREATE EXTENSION

With the Clair v4 PostgreSQL database running lets turn our attention to the Clair v4 config.yaml.  Below I created my Clair config path and then added the contents to the config.yaml:

# mkdir -p /mnt/clair4/config
# cat /mnt/clair4/config/config.yaml 
http_listen_addr: :8081
introspection_addr: :8089
log_level: debug
indexer:
  connstring: host=quay.schmaustech.com port=5433 dbname=clair user=clairuser password=clairpass sslmode=disable
  scanlock_retry: 10
  layer_scan_concurrency: 5
  migrations: true
matcher:
  connstring: host=quay.schmaustech.com port=5433 dbname=clair user=clairuser password=clairpass sslmode=disable
  max_conn_pool: 100
  run: ""
  migrations: true
  indexer_addr: clair-indexer
notifier:
  connstring: host=quay.schmaustech.com port=5433 dbname=clair user=clairuser password=clairpass sslmode=disable
  delivery_interval: 1m
  poll_interval: 5m
  migrations: true
auth:
  psk:
    key: "MTU5YzA4Y2ZkNzJoMQ=="
    iss: ["quay"]
# tracing and metrics
trace:
  name: "jaeger"
  probability: 1
  jaeger:
    agent_endpoint: "localhost:6831"
    service_name: "clair"
metrics:
  name: "prometheus"

Before we start up the Clair v4 container though lets go ahead and make the changes we need to the Quay config.yaml as well.  Add or verify the following lines in the configuration:

FEATURE_SECURITY_NOTIFICATIONS: false
FEATURE_SECURITY_SCANNER: true
SECURITY_SCANNER_INDEXING_INTERVAL: 30
SECURITY_SCANNER_V4_ENDPOINT: http://quay.schmaustech.com:8081
SECURITY_SCANNER_V4_PSK: MTU5YzA4Y2ZkNzJoMQ==
SERVER_HOSTNAME: quay.schmaustech.com

At this point we are ready to stop the current Quay and Clair containers:

# docker stop 713cb9e63813 f0ab641a5d25 9de27908c351
713cb9e63813
f0ab641a5d25
9de27908c351

# docker rm 713cb9e63813 f0ab641a5d25 9de27908c351
713cb9e63813
f0ab641a5d25
9de27908c351

Next lets start up the Clair v4 container:

# docker run -d --rm --name clairv4 -p 8081:8081 -p 8089:8089 -e CLAIR_CONF=/clair/config.yaml -e CLAIR_MODE=combo -v /mnt/clair4/config:/clair:Z registry.redhat.io/quay/clair-rhel8:v3.4.5
b627ef1ee4669341d8a5fe72c095e14bb8931200a08d016f95faaec19d466423
[root@quay config]# docker ps
CONTAINER ID        IMAGE                                             COMMAND                  CREATED             STATUS              PORTS                                                      NAMES
b627ef1ee466        registry.redhat.io/quay/clair-rhel8:v3.4.5        "/usr/bin/dumb-ini..."   3 seconds ago       Up 1 second         0.0.0.0:8081->8081/tcp, 6060/tcp, 0.0.0.0:8089->8089/tcp   clairv4And finally lets start up the new Quay 3.4.3 container:

Once Clair v4 is up and running we can then start Quay up on version 3.4.5.  Note however that the image scanning may need some additional time to come up as Clair is repopulating the database of vulnerabilities.

# docker run -d --rm -p 443:8443 -p 8080:8080 --name quay -v /mnt/quay/config:/conf/stack:Z -v /mnt/quay/storage:/datastorage:Z registry.redhat.io/quay/quay-rhel8:v3.4.5
1f127bd3791e600a9bcf6f6e20f1fb1e368de27868da802f9ec8d6e5bf87310a
# docker ps
CONTAINER ID        IMAGE                                             COMMAND                  CREATED             STATUS              PORTS                                                      NAMES
1f127bd3791e        registry.redhat.io/quay/quay-rhel8:v3.4.5         "dumb-init -- /qua..."   4 seconds ago       Up 4 seconds        7443/tcp, 0.0.0.0:8080->8080/tcp, 0.0.0.0:443->8443/tcp    quay


If everything went well we should now have a Quay 3.4.3 and Clair 3.4.5 environment.   Before I proceed I want to validate that I can still push/pull content from my registry and that Clair v4 is scanning images appropriately.


Also this is a good time to quickly look at what the running environment should look like:

# docker ps
CONTAINER ID        IMAGE                                           COMMAND                  CREATED           STATUS            PORTS                                                      NAMES
1f127bd3791e        registry.redhat.io/quay/quay-rhel8:v3.4.5       "dumb-init -- /qua..."   35 minutes ago    Up 35 minutes     7443/tcp, 0.0.0.0:8080->8080/tcp, 0.0.0.0:443->8443/tcp  quay 
627ef1ee466        registry.redhat.io/quay/clair-rhel8:v3.4.5      "/usr/bin/dumb-ini..."   38 minutes ago     Up 38 minutes     0.0.0.0:8081->8081/tcp, 6060/tcp, 0.0.0.0:8089->8089/tcp  clairv4
2b4b1afa3345        registry.redhat.io/rhel8/postgresql-10:1        "container-entrypo..."   2 hours ago       Up 2 hours        0.0.0.0:5433->5432/tcp                                      postgresql-clair4
84f42084adae        registry.redhat.io/rhel8/redis-5:1              "container-entrypo..."   2 hours ago       Up 2 hours        0.0.0.0:6379->6379/tcp                                      redis
1b05a8997caa        registry.access.redhat.com/rhscl/mysql-57-rhel7 "container-entrypo..."   20 hours ago      Up 20 hours       0.0.0.0:3306->3306/tcp                                      mysql

Here is the chart view again of the environment breakdown:

Container ID

Process

Purpose

External Port

Internal Port

f8f4f441a89d

Clair 3.4.5

Image Scanning

8080 & 8081

8080 & 8081

2b4b1afa3345

PostgreSQL 

DB for Clair

5433

5432

1f127bd3791e

Quay 3.4.5

Registry

8080 & 443

8080 & 8443

1b05a8997caa

MySQL

DB for Quay

3306

3306

84f42084adae

Redis

DB Cache

6379

6379


At this point I am feeling confident we can move forward with the upgrade process to Quay 3.5.4.   Thankfully this step is not as complex as the move from 3.3.4 to 3.4.5.  In fact its just a matter of switching out the images being used for the containers.  The first step then is to stop the current Quay and Clair containers:

# docker stop f8f4f441a89d 1f127bd3791e
f8f4f441a89d
1f127bd3791e


In Quay 3.5.4 Helm & OCI artifacts have been enabled by default however since this is an upgrade we need to add those feature switches to the Quay config.yaml if we want them enabled:

FEATURE_GENERAL_OCI_SUPPORT: true
FEATURE_HELM_OCI_SUPPORT: true

Once we have stopped the current running containers for Quay and Clair and we have made any changes we needed to the config.yaml we can begin to start the Clair 3.5.4 container:

# docker run -d --rm --name clairv4 -p 8081:8081 -p 8089:8089 -e CLAIR_CONF=/clair/config.yaml -e CLAIR_MODE=combo -v /mnt/clair4/config:/clair:Z registry.redhat.io/quay/clair-rhel8:v3.5.4
0a046b625f4ef348e43a181db81341772cd690162df5eb34478dc525fabd591b
# docker ps
CONTAINER ID    IMAGE                                         COMMAND                CREATED         STATUS          PORTS                                                      NAMES
0a046b625f4e    registry.redhat.io/quay/clair-rhel8:v3.5.4    "/usr/bin/dumb-ini..." 3 seconds ago   Up 2 seconds    0.0.0.0:8081->8081/tcp, 6060/tcp, 0.0.0.0:8089->8089/tcp   clairv4

Once Clair is running we can now start the Quay 3.5.4 container:

# docker run -d --rm -p 443:8443 -p 8080:8080 --name quay -v /mnt/quay/config:/conf/stack:Z -v /mnt/quay/storage:/datastorage:Z registry.redhat.io/quay/quay-rhel8:v3.5.4
264ff68abb49fd53b0a2debeffd9684fb6504fa1558b874baadd271ac7a08225
# docker ps
CONTAINER ID   IMAGE                                       COMMAND                CREATED        STATUS         PORTS                                                      NAMES
264ff68abb49   registry.redhat.io/quay/quay-rhel8:v3.5.4   "dumb-init -- /qua..." 4 seconds ago  Up 3 seconds   7443/tcp, 0.0.0.0:8080->8080/tcp, 0.0.0.0:443->8443/tcp    quay

At this point we should again confirm that we can push/pull images from the Quay environment and also confirm that any new images are being scanned properly by Clair.



If everything checks out and works then we can declare success!


Friday, June 04, 2021

Migrating From OpenShiftSDN to OVNKubernetes

 


In previous version of OpenShift if one wanted to switch from OpenShiftSDN to OVNKubernetes there was no migration path and hence the cluster needed to be reinstalled.   That burden is about to become a thing of the past with OpenShift 4.8 because in this version and beyond the ability to migrate the cluster without re-installation is now possible.   In the following details below I will outline and show an example of how this process looks on a working OpenShift cluster.

First lets cover some basics about the environment setup.   I have a five node OpenShift 4.8.0-fc.7 pre-release cluster.   Three of those nodes are masters and the other two are worker nodes in a baremetal IPI deployment.   My current network type is configured as OpenShiftSDN.

First lets validate that the current cluster is running without issues.  We can start by confirming all the nodes are in a ready state:

$ oc get nodes
NAME                                 STATUS   ROLES    AGE     VERSION
master-0.n6s2d.dynamic.opentlc.com   Ready    master   31m     v1.21.0-rc.0+4b2b6ff
master-1.n6s2d.dynamic.opentlc.com   Ready    master   31m     v1.21.0-rc.0+4b2b6ff
master-2.n6s2d.dynamic.opentlc.com   Ready    master   31m     v1.21.0-rc.0+4b2b6ff
worker-0.n6s2d.dynamic.opentlc.com   Ready    worker   13m     v1.21.0-rc.0+4b2b6ff
worker-1.n6s2d.dynamic.opentlc.com   Ready    worker   8m53s   v1.21.0-rc.0+4b2b6ff

Next lets confirm the cluster operators are all functioning properly and are available:

$ oc get co
NAME                                       VERSION      AVAILABLE   PROGRESSING   DEGRADED   SINCE
authentication                             4.8.0-fc.7   True        False         False      51s
baremetal                                  4.8.0-fc.7   True        True          False      29m
cloud-credential                           4.8.0-fc.7   True        False         False      43m
cluster-autoscaler                         4.8.0-fc.7   True        False         False      29m
config-operator                            4.8.0-fc.7   True        False         False      30m
console                                    4.8.0-fc.7   True        False         False      7m30s
csi-snapshot-controller                    4.8.0-fc.7   True        False         False      15m
dns                                        4.8.0-fc.7   True        False         False      29m
etcd                                       4.8.0-fc.7   True        False         False      28m
image-registry                             4.8.0-fc.7   True        False         False      25m
ingress                                    4.8.0-fc.7   True        False         False      12m
insights                                   4.8.0-fc.7   True        False         False      23m
kube-apiserver                             4.8.0-fc.7   True        False         False      27m
kube-controller-manager                    4.8.0-fc.7   True        False         False      27m
kube-scheduler                             4.8.0-fc.7   True        False         False      28m
kube-storage-version-migrator              4.8.0-fc.7   True        False         False      17m
machine-api                                4.8.0-fc.7   True        False         False      24m
machine-approver                           4.8.0-fc.7   True        False         False      30m
machine-config                             4.8.0-fc.7   True        False         False      29m
marketplace                                4.8.0-fc.7   True        False         False      29m
monitoring                                 4.8.0-fc.7   True        False         False      8m9s
network                                    4.8.0-fc.7   True        False         False      30m
node-tuning                                4.8.0-fc.7   True        False         False      29m
openshift-apiserver                        4.8.0-fc.7   True        False         False      15m
openshift-controller-manager               4.8.0-fc.7   True        False         False      28m
openshift-samples                          4.8.0-fc.7   True        False         False      25m
operator-lifecycle-manager                 4.8.0-fc.7   True        False         False      29m
operator-lifecycle-manager-catalog         4.8.0-fc.7   True        False         False      29m
operator-lifecycle-manager-packageserver   4.8.0-fc.7   True        False         False      26m
service-ca                                 4.8.0-fc.7   True        False         False      30m
storage                                    4.8.0-fc.7   True        False         False      30m

And for fun lets show that the OpenShiftSDN pods are running as that is our current network type on this cluster:

$ oc get pods -n openshift-sdn 
NAME                   READY   STATUS    RESTARTS   AGE
sdn-controller-chcvr   1/1     Running   3          31m
sdn-controller-wzhdz   1/1     Running   0          31m
sdn-controller-zp4qr   1/1     Running   0          31m
sdn-czhf6              2/2     Running   0          9m14s
sdn-fvnt6              2/2     Running   0          31m
sdn-njcfn              2/2     Running   0          14m
sdn-nmpt2              2/2     Running   0          31m
sdn-zj2fz              2/2     Running   0          31m

At this point I feel comfortable moving onto the migration process.  If anything above looked suspicious or not functioning properly then I would pause and address that first.   For now though we can move on and the first this we will do is backup the current configuration for the cluster network:

$ oc get Network.config.openshift.io cluster -o yaml > cluster-openshift-sdn.yaml
$

Once we have our backup we can now set the migration field on the cluster network operator.  Note that this will not trigger a migration but rather tell the machine config operator (MCO) to apply new machine configs to all the nodes in the cluster in preparation for OVN-Kubernetes:

$ oc patch Network.operator.openshift.io cluster --type='merge' --patch '{ "spec": { "migration": {"networkType": "OVNKubernetes" } } }'
network.operator.openshift.io/cluster patched

At this point if we look at the mcp and describe our nodes and grep for macine config we can see things are starting to update from an MCO perspective:

$ oc get mcp
NAME     CONFIG                                             UPDATED   UPDATING   DEGRADED   MACHINECOUNT   READYMACHINECOUNT   UPDATEDMACHINECOUNT   DEGRADEDMACHINECOUNT   AGE
master   rendered-master-1309c87d08601c58ddf8abd9bb08a7ea   False     True       False      3              0                   0                     0                      34m
worker   rendered-worker-67d75dc2ab02f295344703f157da14d7   False     True       False      2              0                   0                     0                      34m

$ oc describe node | egrep "hostname|machineconfig"
                    kubernetes.io/hostname=master-0.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-1309c87d08601c58ddf8abd9bb08a7ea
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-1309c87d08601c58ddf8abd9bb08a7ea
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=master-1.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-1309c87d08601c58ddf8abd9bb08a7ea
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Working
                    kubernetes.io/hostname=master-2.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-1309c87d08601c58ddf8abd9bb08a7ea
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-1309c87d08601c58ddf8abd9bb08a7ea
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=worker-0.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-worker-67d75dc2ab02f295344703f157da14d7
                    machineconfiguration.openshift.io/desiredConfig: rendered-worker-e17471318b8b3a61fc931cedeca303e1
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Working
                    kubernetes.io/hostname=worker-1.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-worker-67d75dc2ab02f295344703f157da14d7
                    machineconfiguration.openshift.io/desiredConfig: rendered-worker-67d75dc2ab02f295344703f157da14d7
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done

We will know the updates are done when we see that the updated field for the mcp is set to true for both the worker and master nodes.  We should also see that the status of the machine configuration state is set to done for every node in the cluster.  Do not preceed until the output looks similar to the below:

$ oc get mcp
NAME     CONFIG                                             UPDATED   UPDATING   DEGRADED   MACHINECOUNT   READYMACHINECOUNT   UPDATEDMACHINECOUNT   DEGRADEDMACHINECOUNT   AGE
master   rendered-master-9b49007a4d027c9d7f40cfd3c485e31f   True      False      False      3              3                   3                     0                      46m
worker   rendered-worker-e17471318b8b3a61fc931cedeca303e1   True      False      False      2              2                   2                     0                      46m

$ oc describe node | egrep "hostname|machineconfig"
                    kubernetes.io/hostname=master-0.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=master-1.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=master-2.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/desiredConfig: rendered-master-9b49007a4d027c9d7f40cfd3c485e31f
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=worker-0.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-worker-e17471318b8b3a61fc931cedeca303e1
                    machineconfiguration.openshift.io/desiredConfig: rendered-worker-e17471318b8b3a61fc931cedeca303e1
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done
                    kubernetes.io/hostname=worker-1.n6s2d.dynamic.opentlc.com
                    machineconfiguration.openshift.io/controlPlaneTopology: HighlyAvailable
                    machineconfiguration.openshift.io/currentConfig: rendered-worker-e17471318b8b3a61fc931cedeca303e1
                    machineconfiguration.openshift.io/desiredConfig: rendered-worker-e17471318b8b3a61fc931cedeca303e1
                    machineconfiguration.openshift.io/reason: 
                    machineconfiguration.openshift.io/state: Done

To confirm that OVN-Kubernetes has been appropriately staged for the migration we can look at the machine config for both workers and masters and see that the configure-ovs.sh script has been set to start OVNKubernetes:

$ oc get machineconfig rendered-master-9b49007a4d027c9d7f40cfd3c485e31f -o yaml | grep ExecStart | grep OVNKubernetes
ExecStart=/usr/local/bin/configure-ovs.sh OVNKubernetes $ oc get machineconfig rendered-worker-e17471318b8b3a61fc931cedeca303e1 -o yaml | grep ExecStart | grep OVNKubernetes ExecStart=/usr/local/bin/configure-ovs.sh OVNKubernetes

At this point we are ready to start the migration process and we do that by patching the network type and setting it to OVNKubernetes:

$ oc patch Network.config.openshift.io cluster --type='merge' --patch '{ "spec": { "networkType": "OVNKubernetes" } }'
network.config.openshift.io/cluster patched

Once we have executed the patch command the multus daemon set will begin to be rolled out.  We can observe that by watching the rollout status:

$ oc -n openshift-multus rollout status daemonset/multus
Waiting for daemon set "multus" rollout to finish: 1 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 1 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 1 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 2 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 2 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 2 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 3 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 3 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 3 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 4 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 4 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 4 out of 5 new pods have been updated...
Waiting for daemon set "multus" rollout to finish: 4 of 5 updated pods are available...
daemon set "multus" successfully rolled out

One the rollout status is complete we next need to reboot all the nodes in the cluster.  The following script below makes it easy to do this process assuming ssh keys are configured properly:

$ cat << EOF > ~/reboot-nodes.sh
#!/bin/bash
 
for ip in $(oc get nodes  -o jsonpath='{.items[*].status.addresses[?(@.type=="InternalIP")].address}')
do
  echo "reboot node $ip"
  ssh -o StrictHostKeyChecking=no core@\$ip sudo shutdown -r -t 3
done
EOF

Once we have created the script we can go ahead and execute it to start the reboot process:

$ ~/reboot-nodes.sh
reboot node 10.20.0.100
Warning: Permanently added '10.20.0.100' (ECDSA) to the list of known hosts.
Shutdown scheduled for Fri 2021-06-04 13:44:07 UTC, use 'shutdown -c' to cancel.
reboot node 10.20.0.101
Warning: Permanently added '10.20.0.101' (ECDSA) to the list of known hosts.
Shutdown scheduled for Fri 2021-06-04 13:44:08 UTC, use 'shutdown -c' to cancel.
reboot node 10.20.0.102
Warning: Permanently added '10.20.0.102' (ECDSA) to the list of known hosts.
Shutdown scheduled for Fri 2021-06-04 13:44:08 UTC, use 'shutdown -c' to cancel.
reboot node 10.20.0.200
Warning: Permanently added '10.20.0.200' (ECDSA) to the list of known hosts.
Shutdown scheduled for Fri 2021-06-04 13:44:09 UTC, use 'shutdown -c' to cancel.
reboot node 10.20.0.201
Warning: Permanently added '10.20.0.201' (ECDSA) to the list of known hosts.
Shutdown scheduled for Fri 2021-06-04 13:44:10 UTC, use 'shutdown -c' to cancel.


Depending on the number of nodes and how quickly they reboot this process could take a little bit.    After some time has passed though we should be cable to confirm that the nodes are back up and in a ready state:

$ oc get nodes
NAME                                 STATUS   ROLES    AGE   VERSION
master-0.n6s2d.dynamic.opentlc.com   Ready    master   64m   v1.21.0-rc.0+4b2b6ff
master-1.n6s2d.dynamic.opentlc.com   Ready    master   64m   v1.21.0-rc.0+4b2b6ff
master-2.n6s2d.dynamic.opentlc.com   Ready    master   64m   v1.21.0-rc.0+4b2b6ff
worker-0.n6s2d.dynamic.opentlc.com   Ready    worker   46m   v1.21.0-rc.0+4b2b6ff
worker-1.n6s2d.dynamic.opentlc.com   Ready    worker   41m   v1.21.0-rc.0+4b2b6ff

We can also confirm that the network type is now configured as OVNKubernetes:

$ oc get network.config/cluster -o jsonpath='{.status.networkType}{"\n"}'
OVNKubernetes

We should also confirm that there are no pods that are in a pending or crashloop state:

$ oc get pods --all-namespaces -o wide --sort-by='{.spec.nodeName}' | egrep -v "Running|Completed"
NAMESPACE          NAME       READY   STATUS      RESTARTS   AGE    IP            NODE               NOMINATED NODE   READINESS GATES

And we can also validate that all the cluster operators are running appropriately:

$ oc get co
NAME                                       VERSION      AVAILABLE   PROGRESSING   DEGRADED   SINCE
authentication                             4.8.0-fc.7   True        False         False      4m36s
baremetal                                  4.8.0-fc.7   True        False         False      63m
cloud-credential                           4.8.0-fc.7   True        False         False      76m
cluster-autoscaler                         4.8.0-fc.7   True        False         False      63m
config-operator                            4.8.0-fc.7   True        False         False      64m
console                                    4.8.0-fc.7   True        False         False      4m21s
csi-snapshot-controller                    4.8.0-fc.7   True        False         False      21m
dns                                        4.8.0-fc.7   True        False         False      63m
etcd                                       4.8.0-fc.7   True        False         False      62m
image-registry                             4.8.0-fc.7   True        False         False      59m
ingress                                    4.8.0-fc.7   True        False         False      4m5s
insights                                   4.8.0-fc.7   True        False         False      57m
kube-apiserver                             4.8.0-fc.7   True        False         False      61m
kube-controller-manager                    4.8.0-fc.7   True        False         False      60m
kube-scheduler                             4.8.0-fc.7   True        False         False      61m
kube-storage-version-migrator              4.8.0-fc.7   True        False         False      27m
machine-api                                4.8.0-fc.7   True        False         False      58m
machine-approver                           4.8.0-fc.7   True        False         False      63m
machine-config                             4.8.0-fc.7   True        False         False      63m
marketplace                                4.8.0-fc.7   True        False         False      63m
monitoring                                 4.8.0-fc.7   True        False         False      4m6s
network                                    4.8.0-fc.7   True        False         False      64m
node-tuning                                4.8.0-fc.7   True        False         False      63m
openshift-apiserver                        4.8.0-fc.7   True        False         False      4m40s
openshift-controller-manager               4.8.0-fc.7   True        False         False      62m
openshift-samples                          4.8.0-fc.7   True        False         False      59m
operator-lifecycle-manager                 4.8.0-fc.7   True        False         False      63m
operator-lifecycle-manager-catalog         4.8.0-fc.7   True        False         False      63m
operator-lifecycle-manager-packageserver   4.8.0-fc.7   True        False         False      4m30s
service-ca                                 4.8.0-fc.7   True        False         False      64m
storage                                    4.8.0-fc.7   True        False         False      64m

If everything looked good from the steps above we can go ahead and remove the cluster network object configuration object by setting it to null:

$ oc patch Network.operator.openshift.io cluster --type='merge' --patch '{ "spec": { "migration": null } }'
network.operator.openshift.io/cluster patched

We can also remove the customer configuration for OpenShiftSDN:

$ oc patch Network.operator.openshift.io cluster --type='merge' --patch '{ "spec": { "defaultNetwork": { "openshiftSDNConfig": null } } }'
network.operator.openshift.io/cluster patched (no change)

And finally we can remove the old openshift-sdn:

$ oc delete namespace openshift-sdn
namespace "openshift-sdn" deleted

And just for one final confirmation of success lets confirm the OVNKubernetes pods are up and running:

$ oc get pods -n openshift-ovn-kubernetes
NAME                   READY   STATUS    RESTARTS   AGE
ovnkube-master-5v8ch   6/6     Running   14         50m
ovnkube-master-kmwkp   6/6     Running   6          50m
ovnkube-master-zlgnv   6/6     Running   14         50m
ovnkube-node-7vrmq     4/4     Running   4          50m
ovnkube-node-kz4l9     4/4     Running   4          50m
ovnkube-node-nhbdz     4/4     Running   5          50m
ovnkube-node-nwnnk     4/4     Running   5          50m
ovnkube-node-t27gb     4/4     Running   5          50m

Thursday, May 27, 2021

Deploying Single Node OpenShift (SNO) from Existing OpenShift Cluster


 

Making SNO in the summer has never been easier with a little help from Hive and the Assisted Installer operators in OpenShift.   If this sounds like something of interested then please read further on as I step through the method to get a Single Node OpenShift (SNO) deployed from an existing OpenShift cluster.

The first thing I will need to perform the procedure will be to have an existing OpenShift cluster running on 4.8.  In my case I am using a pre-release version of 4.8.0-fc3 running on an existing SNO deployed cluster which is a virtual machine.  Further I will need another unused virtual node that will become my new SNO OpenShift cluster. 

Now that I have identified my environment lets go ahead and start the configuration process.  First we need to enable and configure the Local-Storage operator so that we can provide some PVs that can be consumed by the AI operator for the Postgres and bucket requirements of that operator.  Note that any dynamic storage provider can be used for this but in my environment Local-Storage made the most sense.   First lets create the local-storage-operator.yaml:

$ cat << EOF > ~/local-storage-operator.yaml
---
apiVersion: v1
kind: Namespace
metadata:
  name: openshift-local-storage
spec: {}
---
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
  name: openshift-local-storage
  namespace: openshift-local-storage
spec:
  targetNamespaces:
  - openshift-local-storage
---
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: local-storage-operator
  namespace: openshift-local-storage
spec:
  channel: "4.7"
  installPlanApproval: Automatic
  name: local-storage-operator
  source: redhat-operators
  sourceNamespace: openshift-marketplace
EOF

Now lets use the local-storage-operator.yaml file we created to install the operator:

$ oc create -f ~/local-storage-operator.yaml 
namespace/openshift-local-storage created
operatorgroup.operators.coreos.com/openshift-local-storage created
subscription.operators.coreos.com/local-storage-operator created

Once the operator is created in a few minutes we should see a running pod in the openshift-local-storage namespace:

$ oc get pods -n openshift-local-storage
NAME                                      READY   STATUS    RESTARTS   AGE
local-storage-operator-845457cd85-ttb8g   1/1     Running   0          37s

Now that the operator is installed and running we can go ahead and configure a hive-local-storage.yaml to consume any of the disks we have assigned on our worker nodes.  In my example since I have a single master/worker virtual machine I went ahead and added a bunch of small qcow2 disks.   The devices paths might vary depending on the environment but the rest of the content should be similar to the following:

$ cat << EOF > ~/hive-local-storage.yaml
apiVersion: local.storage.openshift.io/v1
kind: LocalVolume
metadata:
  name: fs
  namespace: openshift-local-storage
spec:
  logLevel: Normal
  managementState: Managed
  storageClassDevices:
    - devicePaths:
        - /dev/sdb
        - /dev/sdc
        - /dev/sdd
        - /dev/sde
        - /dev/sdf
        - /dev/sdg
        - /dev/sdh
        - /dev/sdi
        - /dev/sdj
        - /dev/sdk
        - /dev/sdl
        - /dev/sdm
      fsType: ext4
      storageClassName: local-storage
      volumeMode: Filesystem
EOF

With the hive-local-storage.yaml created we can now create the resource:

$ oc create -f hive-local-storage.yaml 
localvolume.local.storage.openshift.io/fs created

Once it has created we can verify everything is working properly by looking at the additional pods that are running in the openshift-local-storage namespace:

$ oc get pods -n openshift-local-storage
NAME                                      READY   STATUS    RESTARTS   AGE
fs-local-diskmaker-nv5xr                  1/1     Running   0          46s
fs-local-provisioner-9dt2m                1/1     Running   0          46s
local-storage-operator-845457cd85-ttb8g   1/1     Running   0          4m25s


We can also confirm if our disks were picked up by looking at the PVs available on the cluster and the local-storage storageclass that is now defined:

$ oc get pv
NAME                CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM   STORAGECLASS    REASON   AGE
local-pv-188fc254   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-6d45f357   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-96d2cc66   10Gi       RWO            Delete           Available           local-storage            33s
local-pv-99a52316   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-9e0442ea   10Gi       RWO            Delete           Available           local-storage            33s
local-pv-c061aa19   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-c26659da   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-d08519a8   10Gi       RWO            Delete           Available           local-storage            33s
local-pv-d2f2a467   10Gi       RWO            Delete           Available           local-storage            33s
local-pv-d4a12edd   20Gi       RWO            Delete           Available           local-storage            33s
local-pv-f5e1ca69   10Gi       RWO            Delete           Available           local-storage            33s
local-pv-ffdb70b    10Gi       RWO            Delete           Available           local-storage            33s

$ oc get sc
NAME            PROVISIONER                    RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
local-storage   kubernetes.io/no-provisioner   Delete          WaitForFirstConsumer   false                  72s

Because I want PVCs to automatically get their storage from the local-storage storageclass I am going to go ahead and patch the storageclass setting it to default.   I can confirm this by looking at the storageclasses again:

$ oc patch storageclass local-storage -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
storageclass.storage.k8s.io/local-storage patched
$ oc get sc
NAME                      PROVISIONER                    RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
local-storage (default)   kubernetes.io/no-provisioner   Delete          WaitForFirstConsumer   false                  2m14s

Now that we have the local-storage configured we can move onto getting Hive installed.   Lets go ahead and create the hive-operator.yaml below:

$ cat << EOF > ~/hive-operator.yaml
---
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: hive-operator
  namespace: openshift-operators
spec:
  channel: alpha
  installPlanApproval: Automatic
  name: hive-operator
  source: community-operators
  sourceNamespace: openshift-marketplace
  startingCSV: hive-operator.v1.1.4
EOF

And then lets use oc create with the yaml we created to install the Hive operator:

$ oc create -f hive-operator.yaml
subscription.operators.coreos.com/hive-operator created

We can confirm the Hive operator is installed by looking at the operators and specifically grabbing the Hive operator.   If we look at the pods under the hive namespace we can see there are no pods and this is completely normal:

$ oc get operators hive-operator.openshift-operators
NAME                                AGE
hive-operator.openshift-operators   2m28s
$ oc get pods -n hive
No resources found in hive namespace.

One thing the Hive operator does seem to do is create an assisted-installer namespace.  This namespace creates and issue once the assisted -installer operator is installed for postgres as identified in this BZ#1951812.  Because of that we are going to delete the assisted-installer namespace.  It will get recreated in the next steps:

$ oc delete namespace assisted-installer
namespace "assisted-installer" deleted

Now we are ready to install the Assisted-Installer operator.  Before we can install the operator though we need to create a catalog resource file like the one below:

$ cat << EOF > ~/assisted-installer-catsource.yaml
---
apiVersion: v1
kind: Namespace
metadata:
  name: assisted-installer
  labels:
    name: assisted-installer
---
apiVersion: operators.coreos.com/v1alpha1
kind: CatalogSource
metadata:
  name: assisted-service
  namespace: openshift-marketplace
spec:
  sourceType: grpc
  image: quay.io/ocpmetal/assisted-service-index:latest
EOF

We also need to create the Assisted-Installer operator subscription yaml:

$ cat << EOF > ~/assisted-installer-operator.yaml
---
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
  name: assisted-service-operator
  namespace: assisted-installer
spec:
  targetNamespaces:
  - assisted-installer
---
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: assisted-service-operator
  namespace: assisted-installer 
spec:
  channel: alpha
  installPlanApproval: Automatic
  name: assisted-service-operator
  source: assisted-service
  sourceNamespace: openshift-marketplace
EOF

With both files created we can go ahead and run the oc create commands against them.  First doing the Assisted-Installer catalog source file and then the Assisted-Installer subscription file that will install the operator:

$ oc create -f assisted-installer-catsource.yaml
namespace/assisted-installer created
catalogsource.operators.coreos.com/assisted-service created

$ oc create -f assisted-installer-operator.yaml
operatorgroup.operators.coreos.com/assisted-service-operator created
subscription.operators.coreos.com/assisted-service-operator created

We can confirm the operator is installed by looking at the running pods under the assisted-installer namespace:

$ oc get pods -n assisted-installer
NAME                                         READY   STATUS    RESTARTS   AGE
assisted-service-operator-579679d899-x982l   1/1     Running   0          56s

Finally to complete the installation of the Assisted-Installer we need to configure the agent service config file like the example one below.   The storage sizes can be larger if needed but I am using 20GB as that is what volume sizes are available from the local-storage I configured in my environment:

$ cat << EOF > ~/assisted-installer-agentserviceconfig.yaml
apiVersion: agent-install.openshift.io/v1beta1
kind: AgentServiceConfig
metadata:
  name: agent
spec:
  databaseStorage:
    accessModes:
      - ReadWriteOnce
    resources:
      requests:
        storage: 20Gi
  filesystemStorage:
    accessModes:
      - ReadWriteOnce
    resources:
      requests:
        storage: 20Gi
  osImages:
    - openshiftVersion: '4.8'
      rootFSUrl: >-
        https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/4.8.0-fc.3/rhcos-live-rootfs.x86_64.img
      url: >-
        https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/4.8.0-fc.3/rhcos-4.8.0-fc.3-x86_64-live.x86_64.iso
      version: 48.84.202105062123-0
EOF

Once we have created the agent service config we can go ahead and apply it to the hub cluster:

$ oc create -f ~/assisted-installer-agentserviceconfig.yaml
agentserviceconfig.agent-install.openshift.io/agent created

We can confirm everything is running by looking at both the pods under the assisted-installer namespace and also by looking at the PVCs consumed by the assisted-installer namespace:

$ oc get pods -n assisted-installer
NAME                                         READY   STATUS    RESTARTS   AGE
assisted-service-b7dc8b8d7-2cztd             1/2     Running   1          53s
assisted-service-operator-579679d899-x982l   1/1     Running   0          3m50s

$ oc get pvc -n assisted-installer
NAME               STATUS   VOLUME              CAPACITY   ACCESS MODES   STORAGECLASS    AGE
assisted-service   Bound    local-pv-99a52316   20Gi       RWO            local-storage   87s
postgres           Bound    local-pv-6d45f357   20Gi       RWO            local-storage   87s

At this point we have configured and confirmed all the required service operators needed to enable us to do a deployment of OpenShift with the Assisted-Installer.  Now this configuration will allow us to deploy any one of the OpenShift deployments: Multi-Node-IPv4, SNO-IPv4, Multi-Node-IPv6, SNO-IPv6 and SNO-Dual-Stack.   For demonstration purposes I will be using the SNO-IPv4 deployment type.

Before we start the deployment I need to create some resource yamls that we will apply to the hub cluster to enable the deployment process.  The first file is the cluster imageset yaml which tells the Assisted-Installer which OpenShift release we are going to use.  In my example we will be using 4.8.0-fc.3.   Create the following assisted-installer-clusterimageset.yaml below and then apply it to the hub cluster:

$ cat << EOF > ~/assisted-installer-clusterimageset.yaml
apiVersion: hive.openshift.io/v1
kind: ClusterImageSet
metadata:
  name: openshift-v4.8.0
  namespace: assisted-installer
spec:
  releaseImage: quay.io/openshift-release-dev/ocp-release:4.8.0-fc.3-x86_64
EOF

$ oc create -f ~/assisted-installer-clusterimageset.yaml
clusterimageset.hive.openshift.io/openshift-v4.8.0 created

The next resource file we need is the Assisted-Installer pullsecret.   This contains the pull-secret used to authenticate to pull down the images from Quay during deployment.   Note that the "OPENSHIFT-PULL-SECRET-HERE" should be replaced with a real pull secret from cloud.redhat.com.  Create the following assisted-installer-secrets.yaml and then apply it to the hub cluster:

$ cat << EOF > ~/assisted-installer-secrets.yaml
apiVersion: v1
kind: Secret
metadata:
  name: assisted-deployment-pull-secret
  namespace: assisted-installer
stringData:
  .dockerconfigjson: 'OPENSHIFT-PULL-SECRET-HERE'
EOF

$ oc create -f ~/assisted-installer-secrets.yaml
secret/assisted-deployment-pull-secret created

Next we need a resource file that defines the ssh private key to be used.  This private key will enable us to login to the OpenShift nodes we deploy should we ever need to do troubleshooting of the cluster nodes.   Create the assisted-installer-sshprivate.yaml and then apply it to the hub cluster:

$ cat << EOF > ~/assisted-installer-sshprivate.yaml
apiVersion: v1
kind: Secret
metadata:
  name: assisted-deployment-ssh-private-key
  namespace: assisted-installer
stringData:
  ssh-privatekey: |-
    -----BEGIN OPENSSH PRIVATE KEY-----
    b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
    NhAAAAAwEAAQAAAYEA7uOSmvd8CgAUDaqGheAUcBsEOOoFAZYqtLKL9N0HameO6Fhv1t/l
    a4tG8BQMiu3pm5DWpRrq/O12OjjVDOHHSjwcMX/qfn8OKNVtPVq0SMZRbbkkpnK2WLMwLg
    ...
    8QT4AK4mb7H8tHo1RQkOB4foAQwPLXHvRBHrEGXnIugAeCszn8twZruRtcoX2jRiw7MS8B
    R+AuTLBeBwEXYGoxFhsaLhiCVUueEKJDUt66tVCr3ovvz8eapWv1LUM2QGeP56Z5QUsIrl
    wJwTtficCtwxK0XL+gJro9qYslbX2XxVD67goxVecIfNVmxtZ8KHeo6ICLkhOJjTAveAm+
    tF77qty2d0d0UAAAAXYnNjaG1hdXNAcmhlbDgtb2NwLWF1dG8BAgME
    -----END OPENSSH PRIVATE KEY-----
type: Opaque
EOF

$ oc create -f ~/assisted-installer-sshprivate.yaml
secret/assisted-deployment-ssh-private-key created

Next we need an agent cluster install resource configured.  This file contains some of the networking details one might find in the install-config.yaml when doing a OpenShift IPI installation.   Generate the assisted-installer-agentclusterinstall.yaml file and then apply it to the hub cluster:

$ cat << EOF > ~/assisted-installer-agentclusterinstall.yaml
---
apiVersion: extensions.hive.openshift.io/v1beta1
kind: AgentClusterInstall
metadata:
  name: test-cluster-virtual-aci
  namespace: assisted-installer
spec:
  clusterDeploymentRef:
    name: test-cluster-virtual
  imageSetRef:
    name: openshift-v4.8.0
  networking:
    clusterNetwork:
      - cidr: "10.128.0.0/14"
        hostPrefix: 23
    serviceNetwork:
      - "172.30.0.0/16"
    machineNetwork:
      - cidr: "192.168.0.0/24"
  provisionRequirements:
    controlPlaneAgents: 1
  sshPublicKey: 'ssh-rsa AAB3NzaC1yc2EAAAADAQABAAABgQDu45Ka93wKABQNqoaF4BRwGwQ46gUBliq0sov03QdqZ47oWG/W3+Vri0bwFAyK7embkNalGur87XY6ONUM4cdKPBwxf+p+fw4o1W09WrRIxlFtuSSmcrZYszAuD3NlHDS2WbXRHbeaMz8QsA9qNceZZj7PyB+fNULJYS2iNtlIING4DZTvoEr6KCe2cOIdDnjOW0xNng+ejKMe3vszwutLqgPMwQXS2tqJSHOMIS1kDdLFd3ZIT25xvORoNC/PWy5NAkxp9gJbrYEDlcvy7eUxqLAM9lTCWJQ0l31gqIQDOkGmS7M41x3nJ6kG1ilLn1miMfwrGKDramp7+8ejfr0QBspikp9S4Tmj6s0PA/lEL6EST4N12sr+GsJkHqhWa+HwutcMbg0qIFwhUMFN689Q84Tz9abSPnQipn09xNv1YtAEQLJxypZj3NB6/ZYZXWjB/IGgbJ4tifD1cTYdSA1A4UeNyvhIFj9yyjRF8mucGUR873xSMTlcLIq3V0aZqXU= bschmaus@rhel8-ocp-auto'
EOF

$ oc create -f ~/assisted-installer-agentclusterinstall.yaml
agentclusterinstall.extensions.hive.openshift.io/test-cluster-virtual-aci created

Finally we need the cluster deployment yaml which will enable the deployment of the cluster we are going to deploy.   Create the following assisted-installer-clusterdeployment.yaml file and then apply it to the hub cluster:

$ cat << EOF > ~/assisted-installer-clusterdeployment.yaml
---
apiVersion: hive.openshift.io/v1
kind: ClusterDeployment
metadata:
  name: test-cluster-virtual
  namespace: assisted-installer
spec:
  baseDomain: schmaustech.com
  clusterName: kni3
  controlPlaneConfig:
    servingCertificates: {}
  installed: false
  clusterInstallRef:
    group: extensions.hive.openshift.io
    kind: AgentClusterInstall
    name: test-cluster-virtual-aci
    version: v1beta1
  platform:
    agentBareMetal: 
      agentSelector:
        matchLabels:
          bla: "aaa"
  pullSecretRef:
    name: assisted-deployment-pull-secret
EOF

$ oc create -f ~/assisted-installer-clusterdeployment.yaml
clusterdeployment.hive.openshift.io/test-cluster-virtual created

Last but not least we have an infrastructure environment file which binds a lot of the previous files together.   Create the assisted-installer-infraenv.yaml file below and then apply it to the hub cluster: 

$ cat << EOF > ~/assisted-installer-infraenv.yaml
---
apiVersion: agent-install.openshift.io/v1beta1 
kind: InfraEnv
metadata:
  name: test-cluster-virtual-infraenv
  namespace: assisted-installer
spec:
  clusterRef:
    name: test-cluster-virtual
    namespace: assisted-installer
  sshAuthorizedKey: 'ssh-rsa AAB3NzaC1yc2EAAAADAQABAAABgQDu45Ka93wKABQNqoaF4BRwGwQ46gUBliq0sov03QdqZ47oWG/W3+Vri0bwFAyK7embkNalGur87XY6ONUM4cdKPBwxf+p+fw4o1W09WrRIxlFtuSSmcrZYszAuD3NlHDS2WbXRHbeaMz8QsA9qNceZZj7PyB+fNULJYS2iNtlIING4DZTvoEr6KCe2cOIdDnjOW0xNng+ejKMe3vszwutLqgPMwQXS2tqJSHOMIS1kDdLFd3ZIT25xvORoNC/PWy5NAkxp9gJbrYEDlcvy7eUxqLAM9lTCWJQ0l31gqIQDOkGmS7M41x3nJ6kG1ilLn1miMfwrGKDramp7+8ejfr0QBspikp9S4Tmj6s0PA/lEL6EST4N12sr+GsJkHqhWa+HwutcMbg0qIFwhUMFN689Q84Tz9abSPnQipn09xNv1YtAEQLJxypZj3NB6/ZYZXWjB/IGgbJ4tifD1cTYdSA1A4UeNyvhIFj9yyjRF8mucGUR873xSMTlcLIq3V0aZqXU= bschmaus@rhel8-ocp-auto'
  agentLabelSelector:
    matchLabels:
      bla: aaa
  pullSecretRef:
    name: assisted-deployment-pull-secret
EOF

$ oc create -f ~/assisted-installer-infraenv.yaml
infraenv.agent-install.openshift.io/test-cluster-virtual-infraenv created

Once all of the resource files have been applied to the hub cluster we should now be able to extract the RHCOS LiveOS ISO download URL for the image we will use to boot up our single node for our  spoke SNO IPv4 deployment.  We can do that by running the following command:

$ oc get infraenv test-cluster-virtual-infraenv -o jsonpath='{.status.isoDownloadURL}' -n assisted-installer
https://assisted-service-assisted-installer.apps.kni1.schmaustech.com/api/assisted-install/v1/clusters/b38c1d3e-e460-4111-a35f-4a8d79203585/downloads/image.iso?api_key=eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbHVzdGVyX2lkIjoiYjM4YzFkM2UtZTQ2MC00MTExLWEzNWYtNGE4ZDc5MjAzNTg1In0.0sjy-0I9DstyaRA8oIUF9ByyUe31Kl6rUpVzBXSsO9mFfqLCDtF-Rh2NCWvVtjKyd4BZ7Zo5ZUIMsEtHX5sKWg

Now that we know the URL to the ISO image we can pull that image down to a location that can be accessed by our remote physical node via virtual media (iDrac/BMC).   In my case since the spoke SNO node I am using is a virtual machine I will be running a wget command on the hypervisor hosts where my virtual machine resides and storing the ISO under the /var/lib/libvirt/images path on that host:

# pwd
/var/lib/libvirt/images

# wget --no-check-certificate https://assisted-service-assisted-installer.apps.kni1.schmaustech.com/api/assisted-install/v1/clusters/b38c1d3e-e460-4111-a35f-4a8d79203585/downloads/image.iso?api_key=eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbHVzdGVyX2lkIjoiYjM4YzFkM2UtZTQ2MC00MTExLWEzNWYtNGE4ZDc5MjAzNTg1In0.0sjy-0I9DstyaRA8oIUF9ByyUe31Kl6rUpVzBXSsO9mFfqLCDtF-Rh2NCWvVtjKyd4BZ7Zo5ZUIMsEtHX5sKWg -O discover.iso
--2021-05-26 15:16:13--  https://assisted-service-assisted-installer.apps.kni1.schmaustech.com/api/assisted-install/v1/clusters/b38c1d3e-e460-4111-a35f-4a8d79203585/downloads/image.iso?api_key=eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbHVzdGVyX2lkIjoiYjM4YzFkM2UtZTQ2MC00MTExLWEzNWYtNGE4ZDc5MjAzNTg1In0.0sjy-0I9DstyaRA8oIUF9ByyUe31Kl6rUpVzBXSsO9mFfqLCDtF-Rh2NCWvVtjKyd4BZ7Zo5ZUIMsEtHX5sKWg
Resolving assisted-service-assisted-installer.apps.kni1.schmaustech.com (assisted-service-assisted-installer.apps.kni1.schmaustech.com)... 192.168.0.204
Connecting to assisted-service-assisted-installer.apps.kni1.schmaustech.com (assisted-service-assisted-installer.apps.kni1.schmaustech.com)|192.168.0.204|:443... connected.
WARNING: The certificate of ‘assisted-service-assisted-installer.apps.kni1.schmaustech.com’ is not trusted.
WARNING: The certificate of ‘assisted-service-assisted-installer.apps.kni1.schmaustech.com’ hasn't got a known issuer.
HTTP request sent, awaiting response... 200 OK
Length: 109111296 (104M) [application/octet-stream]
Saving to: ‘discover.iso’

discover.iso                                         100%[=====================================================================================================================>] 104.06M   104MB/s    in 1.0s    

2021-05-26 15:16:14 (104 MB/s) - ‘discover.iso’ saved [109111296/109111296]

# ls -l *.iso
-rw-r--r--. 1 root root 109111296 May 26 15:16 discover.iso

Now that I have the image on the local hypervisor I can edit the virtual machine node to make sure the CDROM has the ISO image set to that path so it will boot to the RHCOS LiveOS ISO:

# virsh list --all
 Id   Name       State
---------------------------
 -    nuc4-vm1   shut off

# virsh dumpxml nuc4-vm1 | sed "/^    <disk device="cdrom" type="file">/a \ \ \ \ <source file="/var/lib/libvirt/images/discover.iso"></source>" | virsh define /dev/stdin

# virsh start nuc4-vm1
Domain nuc4-vm1 started

At this point we can watch the RHCOS LiveOS ISO boot from the virtual machines console.  If this is being done on a real server one could watch from the real servers BMC interface and/or iDRAC console if it is a Dell server.



Once the RHCOS Live ISO boots it will pull down an RHCOS image that will be applied to the local disk of the node.   At this point we can shift back to the cli and watch the progress of the install from there by watching the status of the agent cluster install using the syntax below.  One of the first things we notice is that during the initial install there seems to be an agent approval that is required:

$ oc get agentclusterinstalls test-cluster-virtual-aci -o json -n assisted-installer | jq '.status.conditions[]'
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The Spec has been successfully applied",
  "reason": "SyncOK",
  "status": "True",
  "type": "SpecSynced"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The installation is pending on the approval of 1 agents",
  "reason": "UnapprovedAgents",
  "status": "False",
  "type": "RequirementsMet"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The cluster's validations are passing",
  "reason": "ValidationsPassing",
  "status": "True",
  "type": "Validated"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not yet started",
  "reason": "InstallationNotStarted",
  "status": "False",
  "type": "Completed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not failed",
  "reason": "InstallationNotFailed",
  "status": "False",
  "type": "Failed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation is waiting to start or in progress",
  "reason": "InstallationNotStopped",
  "status": "False",
  "type": "Stopped"
}

We can view that approval requirement by looking at the agent installer from another view point like the syntax below.  Notice it says the agent is not approved and until it is the installation will wait and not continue.

$ oc get agents.agent-install.openshift.io -n assisted-installer  -o=jsonpath='{range .items[*]}{"\n"}{.spec.clusterDeploymentName.name}{"\n"}{.status.inventory.hostname}{"\n"}{range .status.conditions[*]}{.type}{"\t"}{.message}{"\n"}{end}'

test-cluster-virtual
master-0.kni5.schmaustech.com
SpecSynced	The Spec has been successfully applied
Connected	The agent's connection to the installation service is unimpaired
ReadyForInstallation	The agent is not approved
Validated	The agent's validations are passing
Installed	The installation has not yet started

We can view what cluster agents approved states yet another way by looking at the cluster status list:

$ oc get agents.agent-install.openshift.io -n assisted-installer
NAME                                   CLUSTER                APPROVED
e4117b8b-a2ef-45df-baf0-2ebc6ae1bf8e   test-cluster-virtual   false

Lets go ahead and approve this cluster by patching the approval to true using the syntax below:

$ oc -n assisted-installer patch agents.agent-install.openshift.io e4117b8b-a2ef-45df-baf0-2ebc6ae1bf8e -p '{"spec":{"approved":true}}' --type merge
agent.agent-install.openshift.io/e4117b8b-a2ef-45df-baf0-2ebc6ae1bf8e patched

Now that the approval has been made the cluster can continue on the installation process:

$ oc get agents.agent-install.openshift.io -n assisted-installer  -o=jsonpath='{range .items[*]}{"\n"}{.spec.clusterDeploymentName.name}{"\n"}{.status.inventory.hostname}{"\n"}{range .status.conditions[*]}{.type}{"\t"}{.message}{"\n"}{end}'

test-cluster-virtual
master-0.kni5.schmaustech.com
SpecSynced	The Spec has been successfully applied
Connected	The agent's connection to the installation service is unimpaired
ReadyForInstallation	The agent cannot begin the installation because it has already started
Validated	The agent's validations are passing
Installed	The installation is in progress: Host is preparing for installation

We can now see that the cluster is being prepared for installation:

$ oc get agentclusterinstalls test-cluster-virtual-aci -o json -n assisted-installer | jq '.status.conditions[]'
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The Spec has been successfully applied",
  "reason": "SyncOK",
  "status": "True",
  "type": "SpecSynced"
}
{
  "lastProbeTime": "2021-05-27T17:50:12Z",
  "lastTransitionTime": "2021-05-27T17:50:12Z",
  "message": "The cluster requirements are met",
  "reason": "ClusterAlreadyInstalling",
  "status": "True",
  "type": "RequirementsMet"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The cluster's validations are passing",
  "reason": "ValidationsPassing",
  "status": "True",
  "type": "Validated"
}
{
  "lastProbeTime": "2021-05-27T17:50:12Z",
  "lastTransitionTime": "2021-05-27T17:50:12Z",
  "message": "The installation is in progress: Preparing cluster for installation",
  "reason": "InstallationInProgress",
  "status": "False",
  "type": "Completed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not failed",
  "reason": "InstallationNotFailed",
  "status": "False",
  "type": "Failed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation is waiting to start or in progress",
  "reason": "InstallationNotStopped",
  "status": "False",
  "type": "Stopped"
}

As we wait a little longer we can now see the installation process has begun.   This took about 70 minutes in my virtualized environment:

$ oc get agentclusterinstalls test-cluster-virtual-aci -o json -n assisted-installer | jq '.status.conditions[]'
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The Spec has been successfully applied",
  "reason": "SyncOK",
  "status": "True",
  "type": "SpecSynced"
}
{
  "lastProbeTime": "2021-05-27T17:50:12Z",
  "lastTransitionTime": "2021-05-27T17:50:12Z",
  "message": "The cluster requirements are met",
  "reason": "ClusterAlreadyInstalling",
  "status": "True",
  "type": "RequirementsMet"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The cluster's validations are passing",
  "reason": "ValidationsPassing",
  "status": "True",
  "type": "Validated"
}
{
  "lastProbeTime": "2021-05-27T17:52:00Z",
  "lastTransitionTime": "2021-05-27T17:52:00Z",
  "message": "The installation is in progress: Installation in progress",
  "reason": "InstallationInProgress",
  "status": "False",
  "type": "Completed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not failed",
  "reason": "InstallationNotFailed",
  "status": "False",
  "type": "Failed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation is waiting to start or in progress",
  "reason": "InstallationNotStopped",
  "status": "False",
  "type": "Stopped"
}

As we continue to watch the status of the cluster installation via the agent cluster install we can see that the installation process is in the finalization phase:

$ oc get agentclusterinstalls test-cluster-virtual-aci -o json -n assisted-installer | jq '.status.conditions[]'
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The Spec has been successfully applied",
  "reason": "SyncOK",
  "status": "True",
  "type": "SpecSynced"
}
{
  "lastProbeTime": "2021-05-27T17:50:12Z",
  "lastTransitionTime": "2021-05-27T17:50:12Z",
  "message": "The cluster requirements are met",
  "reason": "ClusterAlreadyInstalling",
  "status": "True",
  "type": "RequirementsMet"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The cluster's validations are passing",
  "reason": "ValidationsPassing",
  "status": "True",
  "type": "Validated"
}
{
  "lastProbeTime": "2021-05-27T18:37:20Z",
  "lastTransitionTime": "2021-05-27T18:37:20Z",
  "message": "The installation is in progress: Finalizing cluster installation",
  "reason": "InstallationInProgress",
  "status": "False",
  "type": "Completed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not failed",
  "reason": "InstallationNotFailed",
  "status": "False",
  "type": "Failed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation is waiting to start or in progress",
  "reason": "InstallationNotStopped",
  "status": "False",
  "type": "Stopped"
}

And finally after 70 minutes we can see the cluster completed installation:

$ oc get agentclusterinstalls test-cluster-virtual-aci -o json -n assisted-installer | jq '.status.conditions[]'
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The Spec has been successfully applied",
  "reason": "SyncOK",
  "status": "True",
  "type": "SpecSynced"
}
{
  "lastProbeTime": "2021-05-27T18:50:00Z",
  "lastTransitionTime": "2021-05-27T18:50:00Z",
  "message": "The cluster installation stopped",
  "reason": "ClusterInstallationStopped",
  "status": "True",
  "type": "RequirementsMet"
}
{
  "lastProbeTime": "2021-05-27T17:43:30Z",
  "lastTransitionTime": "2021-05-27T17:43:30Z",
  "message": "The cluster's validations are passing",
  "reason": "ValidationsPassing",
  "status": "True",
  "type": "Validated"
}
{
  "lastProbeTime": "2021-05-27T18:50:00Z",
  "lastTransitionTime": "2021-05-27T18:50:00Z",
  "message": "The installation has completed: Cluster is installed",
  "reason": "InstallationCompleted",
  "status": "True",
  "type": "Completed"
}
{
  "lastProbeTime": "2021-05-26T20:07:00Z",
  "lastTransitionTime": "2021-05-26T20:07:00Z",
  "message": "The installation has not failed",
  "reason": "InstallationNotFailed",
  "status": "False",
  "type": "Failed"
}
{
  "lastProbeTime": "2021-05-27T18:50:00Z",
  "lastTransitionTime": "2021-05-27T18:50:00Z",
  "message": "The installation has stopped because it completed successfully",
  "reason": "InstallationCompleted",
  "status": "True",
  "type": "Stopped"
}

Now lets validate that the cluster is indeed installed and functioning correctly.   To do this we need to first extract the kubeconfig secret from our hub cluster and then set it as the KUBECONFIG variable:

$ oc get secret -n assisted-installer test-cluster-virtual-admin-kubeconfig -o json | jq -r '.data.kubeconfig' | base64 -d > /tmp/sno-spoke-kubeconfig 
$ export KUBECONFIG=/tmp/sno-spoke-kubeconfig

Now lets run some oc commands.  First we will look at the node count with a wide view:

$ oc get nodes -o wide
NAME                            STATUS   ROLES           AGE   VERSION                INTERNAL-IP     EXTERNAL-IP   OS-IMAGE                                                       KERNEL-VERSION          CONTAINER-RUNTIME
master-0.kni5.schmaustech.com   Ready    master,worker   53m   v1.21.0-rc.0+291e731   192.168.0.200   <none>        Red Hat Enterprise Linux CoreOS 48.84.202105062123-0 (Ootpa)   4.18.0-293.el8.x86_64   cri-o://1.21.0-90.rhaos4.8.git07becf8.el8

Next we will confirm all the cluster operators are up and available:

$ oc get co
NAME                                       VERSION      AVAILABLE   PROGRESSING   DEGRADED   SINCE
authentication                             4.8.0-fc.3   True        False         False      9m35s
baremetal                                  4.8.0-fc.3   True        False         False      30m
cloud-credential                           4.8.0-fc.3   True        False         False      48m
cluster-autoscaler                         4.8.0-fc.3   True        False         False      30m
config-operator                            4.8.0-fc.3   True        False         False      50m
console                                    4.8.0-fc.3   True        False         False      9m46s
csi-snapshot-controller                    4.8.0-fc.3   True        False         False      9m23s
dns                                        4.8.0-fc.3   True        False         False      22m
etcd                                       4.8.0-fc.3   True        False         False      31m
image-registry                             4.8.0-fc.3   True        False         False      21m
ingress                                    4.8.0-fc.3   True        False         False      14m
insights                                   4.8.0-fc.3   True        False         False      13m
kube-apiserver                             4.8.0-fc.3   True        False         False      22m
kube-controller-manager                    4.8.0-fc.3   True        False         False      22m
kube-scheduler                             4.8.0-fc.3   True        False         False      29m
kube-storage-version-migrator              4.8.0-fc.3   True        False         False      31m
machine-api                                4.8.0-fc.3   True        False         False      30m
machine-approver                           4.8.0-fc.3   True        False         False      48m
machine-config                             4.8.0-fc.3   True        False         False      20m
marketplace                                4.8.0-fc.3   True        False         False      30m
monitoring                                 4.8.0-fc.3   True        False         False      9m24s
network                                    4.8.0-fc.3   True        False         False      51m
node-tuning                                4.8.0-fc.3   True        False         False      22m
openshift-apiserver                        4.8.0-fc.3   True        False         False      22m
openshift-controller-manager               4.8.0-fc.3   True        False         False      30m
openshift-samples                          4.8.0-fc.3   True        False         False      21m
operator-lifecycle-manager                 4.8.0-fc.3   True        False         False      30m
operator-lifecycle-manager-catalog         4.8.0-fc.3   True        False         False      48m
operator-lifecycle-manager-packageserver   4.8.0-fc.3   True        False         False      6m34s
service-ca                                 4.8.0-fc.3   True        False         False      50m
storage                                    4.8.0-fc.3   True        False         False      30m

And finally we can check the cluster version:

$ oc get clusterversion
NAME      VERSION      AVAILABLE   PROGRESSING   SINCE   STATUS
version   4.8.0-fc.3   True        False         6m26s   Cluster version is 4.8.0-fc.3

Everything in the installation appears to be working for this SNO based deployment!