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/ovh (cncf#617)
- Loading branch information
1 parent
7d65f71
commit ddf8582
Showing
5 changed files
with
21,173 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+369 KB
v1.14/ovh/201906061539_sonobuoy_0f7ddfd4-9f8d-416b-a20d-5af2742ea35c.tar.gz
Binary file not shown.
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,8 @@ | ||
vendor: OVH | ||
name: OVH Managed Kubernetes Service | ||
version: 1.0 | ||
website_url: https://www.ovh.ie/kubernetes/ | ||
documentation_url: https://docs.ovh.com/gb/en/kubernetes/ | ||
product_logo_url: https://www.ovh.com/fr/images/logo/logo-ovh-long-baseline-blue.ai | ||
type: hosted platform | ||
description: 'Benefit from free HA managed Kubernetes service, by hosting your nodes and services on OVH Public Cloud' |
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,63 @@ | ||
# How to reproduce | ||
|
||
## 1. Create an account | ||
Create a European OVH Account on [http://www.ovh.ie/auth/signup/#/?ovhCompany=ovh&ovhSubsidiary=IE](http://www.ovh.ie/auth/signup/#/?ovhCompany=ovh&ovhSubsidiary=IE). | ||
|
||
## 2. Order a new free cluster | ||
Click on the "Get started for free" on [https://www.ovh.ie/kubernetes/](https://www.ovh.ie/kubernetes/). | ||
If you still don't have a Public Cloud project, you will need to create one first. | ||
Once you created/chose your project, on the left menu, under the "Orchestration / Industrialization" category, click on "Managed Kubernetes Service". | ||
Then click on "Create a cluster" and choose the appropriate version. | ||
|
||
## 3. Wait | ||
Wait approximately 2 minutes, once your cluster is ready it should redirect you to your Kubernetes cluster list. | ||
|
||
## 4. Get credentials and add some nodes to your cluster | ||
From the previous UI, click on the cluster you juste created and download the kubeconfig file from the bottom of the 'Service' tab. | ||
Then add some nodes from the 'Nodes' tab. We personnaly tested with 2 'B2-7' instances. | ||
|
||
## 5. Run the tests | ||
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 | ||
``` | ||
|
||
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 | ||
``` | ||
|
||
To clean up Kubernetes objects created by Sonobuoy, run: | ||
|
||
``` | ||
sonobuoy delete | ||
``` | ||
|
||
Have fun testing ! |
Oops, something went wrong.