forked from cncf/k8s-conformance
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conformance results for v1.14/Breeze (cncf#591)
* Conformance results for v1.14/Breeze * Update PRODUCT.yaml
- Loading branch information
1 parent
ddf8582
commit 22445f2
Showing
4 changed files
with
21,393 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
vendor: Wise2C Technology | ||
name: Breeze | ||
version: v1.14.2 | ||
website_url: http://www.wise2c.com | ||
repo_url: https://github.com/wise2c-devops/breeze | ||
documentation_url: https://github.com/wise2c-devops/breeze/blob/master/manual/BreezeManual.pdf | ||
product_logo_url: http://www.wise2c.com/Assets/WiseCloud/img/WiseCloud.png | ||
type: installer | ||
description: 'Deploy a Production Ready Kubernetes Cluster with graphical interface' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Conformance tests for Breeze Kubernetes cluster | ||
|
||
## Node Provisioning | ||
Provision 6+ nodes for your cluster. Follow the [OS requirements](https://github.com/wise2c-devops/breeze). | ||
|
||
1 deploy node | ||
|
||
1 harbor node | ||
|
||
3 master nodes | ||
|
||
1+ worker nodes | ||
|
||
## Install Breeze on the deploy node | ||
(1) Install docker and docker-compose | ||
|
||
(2) Download the [docker-compose.yaml](https://github.com/wise2c-devops/breeze/blob/master/docker-compose.yml) file | ||
|
||
(3) execute the command: | ||
|
||
``` | ||
docker-compose up -d | ||
``` | ||
|
||
(4) Open the browser to access the installer page | ||
|
||
(5) Add nodes and set up K8s components | ||
|
||
(6) Install the cluster | ||
|
||
## Run Conformance Test | ||
|
||
The standard tool for running these tests is | ||
[Sonobuoy](https://github.com/heptio/sonobuoy). Sonobuoy is | ||
regularly built and kept up to date to execute against all | ||
currently supported versions of kubernetes. | ||
|
||
Download a [binary release](https://github.com/heptio/sonobuoy/releases) of the CLI, or build it yourself by running: | ||
|
||
``` | ||
$ go get -u -v github.com/heptio/sonobuoy | ||
``` | ||
|
||
Deploy a Sonobuoy pod to your cluster with: | ||
|
||
``` | ||
$ sonobuoy run | ||
``` | ||
|
||
**NOTE:** You can run the command synchronously by adding the flag `--wait` but be aware that running the Conformance tests can take an hour or more. | ||
|
||
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: | ||
|
||
``` | ||
$ outfile=$(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 $outfile -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 | ||
``` |
Oops, something went wrong.