Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions v1.26/daocloud/PRODUCT.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
vendor: DaoCloud
name: DaoCloud Enterprise
version: v5.0
website_url: https://docs.daocloud.io/
documentation_url: https://download.daocloud.io/DaoCloud_Enterprise/DaoCloud_Enterprise
product_logo_url: https://github.com/dasu23/DC-Jenkinsfile/raw/master/DaoCloud.svg
type: distribution
description: 'Daocloud helps you provide a reliable and consistent basic support environment to meet the high SLA requirements of enterprise critical applications
.'
contact_email_address: [email protected]
41 changes: 41 additions & 0 deletions v1.26/daocloud/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
### DaoCloud Enterprise

DaoCloud Enterprise is a platform based on Kubernetes which developed by [DaoCloud](https://www.daocloud.io).

### How to Reproduce

#### Create Cluster

First install [DaoCloud Enterprise](https://docs.daocloud.io/install/offline-install-full/), and login to the console.
After successful login, select "Clusters > create" and config the create page.
The "Clusters" page will display all the clusters created and managed by DaoCloud Enterprise.

#### Run conformance Test by Sonobuoy

Login to the control-plant of the cluster created by DaoCloud Enterprise.

Start the conformance tests:

```
wget https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.56.15/sonobuoy_0.56.15_linux_amd64.tar.gz
tar -xvf sonobuoy_0.56.15_linux_amd64.tar.gz
mv sonobuoy /usr/bin
sonobuoy run --mode=certified-conformance

````

Monitor the conformance tests by tracking the sonobuoy logs, and wait for the line: "no-exit was specified, sonobuoy is now blocking"

```
sonobuoy logs -f

```

Retrieve result:

```
outfile=$(sonobuoy retrieve)
mkdir ./results;
tar -xzf $outfile -C ./results

```
Loading