Skip to content

Latest commit

 

History

History
 
 

QKE

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

How to Reproduce

Login

Sign in to QingCloud Console with you own account.

Create QKE Cluster

You can create QKE cluster according to QKE User Guide.

  • Choose Product & Services and navigate to QKE cluster

  • Create Cluster with standard test resource configuration

  • Connect to the worker node with ubuntu/k8s password

Note: please choose ap2a region to avoid network issues when pulling gcr.io images.

Run conformance tests

  • Start the conformance tests on your test host
sonobuoy run \
  --mode=certified-conformance \

You can monitor the conformance tests by tracking the sonobuoy logs. Wait for the line no-exit was specified, sonobuoy is now blocking, which signals the end of the testing.

sonobuoy logs -f

Upon completion of the tests you can obtain the results by copying them off the sonobuoy pod.

OUTPUT_PATH=$(sonobuoy retrieve)
echo ${OUTPUT_PATH}
mkdir ./results
tar xzf ${OUTPUT_PATH} -C ./results