You'll first need to get started with IBM Cloud Kubernetes Service by setting up an IBM Cloud account. For details, see the getting started instructions. Then follow the steps below to create a cluster and run the conformance tests.
If you haven't already done so, install the CLI for IBM Cloud Kubernetes Service. You may then create a cluster using the CLI or UI.
$ # Option 1: Create a cluster using classic infrastructure provider.
$ ibmcloud ks cluster-create --name conformance --kube-version 1.15 --zone <zone name> --machine-type <machine type> --private-vlan <private VLAN> --public-vlan <public VLAN> --workers <number of workers>
$ # Option 2: Create a cluster using vpc-classic infrastructure provider.
$ ibmcloud ks cluster-create-vpc-classic --name conformance --kube-version 1.15 --zone <zone name> --flavor <flavor name> --vpc-id <vpc ID> --subnet-id <subnet ID> --workers <number of workers>
Go to IBM Cloud catalog
and select Kubernetes Cluster
and follow the instructions to create a cluster.
Wait for the cluster and all worker nodes to reach normal
state.
$ ibmcloud ks cluster-config --admin conformance
$ ibmcloud ks cluster-get conformance
$ ibmcloud ks workers conformance
Then follow the test instructions to run the conformance tests.