Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conformance results from v1.8/kubeadm #62

Merged
merged 1 commit into from
Nov 13, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions v1.8/kubeadm/PRODUCT.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
vendor: Weaveworks
name: kubeadm
version: v1.8.2
website_url: https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/
documentation_url: https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/
product_logo_url: https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.svg
27 changes: 27 additions & 0 deletions v1.8/kubeadm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### kubeadm

Official documentation:
- https://kubernetes.io/docs/setup/independent/install-kubeadm/
- https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/

#### How to reproduce:

Operating System used for these sample reproduction steps: Ubuntu 17.10

```console
$ whoami
root
$ apt-get update && apt-get install -y apt-transport-https
$ curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
$ echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" > /etc/apt/sources.list.d/kubernetes.list
$ apt-get update && apt-get install -y kubelet kubeadm kubectl docker.io
$ kubeadm init
$ export KUBECONFIG=/etc/kubernetes/admin.conf
$ kubectl apply -f https://git.io/weave-kube-1.6
$ kubectl taint nodes --all node-role.kubernetes.io/master-
$ curl -L https://raw.githubusercontent.com/cncf/k8s-conformance/master/sonobuoy-conformance.yaml | kubectl apply -f -
$ # Wait for `kubectl -n sonobuoy logs sonobuoy` to display "no-exit was specified, sonobuoy is now blocking"
$ kubectl -n sonobuoy cp sonobuoy:${UNIQUELY_GENERATED_PATH_FROM_LOGS}.tar.gz sonobuoy.tar.gz
$ tar -xzf sonobuoy.tar.gz
$ # Sonobuoy results available!
```