conformance results for v1.33/JDOS (#3754)
conformance results for v1.33/JDOS Signed-off-by: yangyefei <yangyefei90@gmail.com>
This commit is contained in:
parent
3ab3e895cd
commit
0586352160
|
@ -0,0 +1,9 @@
|
|||
vendor: JD.com
|
||||
name: JDOS
|
||||
version: v3.0
|
||||
website_url: http://tig.jd.com/en/products/jdos
|
||||
documentation_url: http://tig.jd.com/docs/jdos
|
||||
product_logo_url: https://landscape.cncf.io/logos/jd-cloud-member.svg
|
||||
type: Distribution
|
||||
description: "JDOS is Jingdong Datacenter OS for automated management of shared container clusters and containerized applications in a scalable and elastic manner. The key systems include ContainerFS, ContainerDNS and ContainerLB."
|
||||
contact_email_address: yangyefei@jd.com
|
|
@ -0,0 +1,63 @@
|
|||
### How To Reproduce:
|
||||
|
||||
#### Introduction
|
||||
|
||||
JDOS is Jingdong Datacenter OS for automated management of shared container clusters and containerized applications in a scalable and elastic manner. The key systems include ContainerFS, ContainerDNS and ContainerLB (https://github.com/tiglabs). You need to contact us to get the product.
|
||||
|
||||
#### Deploy A JDOS Cluster
|
||||
|
||||
Send mail with subject "Apply for JDOS deployment tool" to csp@jd.com, then we will send a tool to your email.
|
||||
Next, follow the steps to insalll.
|
||||
|
||||
```
|
||||
Step 1
|
||||
```
|
||||
|
||||
$ mkdir -p /root/jdosdeploytool && tar xvf jdosdeploytool.tar.gz -C /root/jdosdeploytool
|
||||
|
||||
```
|
||||
Step 2
|
||||
```
|
||||
|
||||
$ /bin/bash ./download.sh && /bin/bash ./install.sh
|
||||
|
||||
|
||||
#### Run Conformance Test
|
||||
|
||||
```
|
||||
Deploy a Sonobuoy pod to your cluster with:
|
||||
```
|
||||
|
||||
$ sonobuoy run
|
||||
|
||||
```
|
||||
View actively running pods:
|
||||
```
|
||||
|
||||
$ sonobuoy status
|
||||
|
||||
```
|
||||
To inspect the logs:
|
||||
```
|
||||
|
||||
$ sonobuoy logs
|
||||
|
||||
```
|
||||
Once `sonobuoy status` shows the run as `completed`, copy the output directory from the main Sonobuoy pod to
|
||||
a local directory:
|
||||
```
|
||||
$ sonobuoy retrieve .
|
||||
```
|
||||
This copies a single `.tar.gz` snapshot from the Sonobuoy pod into your local
|
||||
`.` directory. Extract the contents into `./results` with:
|
||||
```
|
||||
mkdir ./results; tar xzf *.tar.gz -C ./results
|
||||
```
|
||||
**NOTE:** The two files required for submission are located in the tarball under **plugins/e2e/results/{e2e.log,junit.xml}**.
|
||||
To clean up Kubernetes objects created by Sonobuoy, run:
|
||||
```
|
||||
sonobuoy delete
|
||||
```
|
||||
### NOTICE:
|
||||
Some of the docker images from gcr.io cannot be pulled in China, you need to configure a proxy for your docker deamon.
|
||||
```
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue