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 test results for v1.27/k3s (cncf#2566)
Signed-off-by: ShylajaDevadiga <[email protected]>
- Loading branch information
1 parent
c384eff
commit e2c2eb9
Showing
4 changed files
with
36,636 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,10 @@ | ||
vendor: SUSE, LLC | ||
name: k3s | ||
version: v1.27.1+k3s1 | ||
website_url: https://k3s.io/ | ||
repo_url: https://github.com/k3s-io/k3s | ||
documentation_url: https://docs.k3s.io/ | ||
product_logo_url: https://k3s.io/img/k3s-logo-light.svg | ||
type: distribution | ||
description: Lightweight Kubernetes | ||
contact_email_address: [email protected] |
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.27.1+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.27.1+k3s1 sh - | ||
|
||
4. Run sonobuoy v0.56.16: `sonobuoy run --mode=certified-conformance --kubernetes-version=v1.27.1 --kubeconfig=/etc/rancher/k3s/k3s.yaml` |
Oops, something went wrong.