-
Notifications
You must be signed in to change notification settings - Fork 931
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conformance test results for v1.25/k3s (#2178)
Signed-off-by: Shylaja Devadiga <[email protected]> Signed-off-by: Shylaja Devadiga <[email protected]>
- Loading branch information
1 parent
be06a47
commit 5db2ac5
Showing
4 changed files
with
67,050 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: SUSE, LLC | ||
name: k3s | ||
version: v1.25.0+k3s1 | ||
website_url: https://k3s.io/ | ||
repo_url: https://github.com/k3s-io/k3s | ||
documentation_url: https://rancher.com/docs/k3s/latest/en/ | ||
product_logo_url: http://k3s.io/img/logo.svg?1 | ||
type: distribution | ||
description: Lightweight Kubernetes |
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,14 @@ | ||
# k3s | ||
Lightweight Kubernetes | ||
## To Reproduce | ||
|
||
1. Create two machines, any modern Linux will work but this test was done with SUSE Linux Enterprise Server 15 SP4 LTS. | ||
2. K3s provides an installation script that is a convenient way to install it as a service on systemd or openrc based systems. This script is available at https://get.k3s.io. To install K3s using this method, just run: | ||
|
||
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.25.0+k3s1 sh - | ||
|
||
3. To install on worker nodes and add them to the cluster, run the installation script with the K3S_URL and K3S_TOKEN environment variables. Here is an example showing how to join a worker node. The value to use for K3S_TOKEN is stored at /var/lib/rancher/k3s/server/node-token on your server node. | ||
|
||
curl -sfL https://get.k3s.io | K3S_URL=https://serverone:6443 K3S_TOKEN=<TOKEN> INSTALL_K3S_VERSION=v1.25.0+k3s1 sh - | ||
|
||
4. Run sonobuoy v0.56.10: `sonobuoy run --mode=certified-conformance --kubernetes-version=v1.25.0` |
Oops, something went wrong.