- 12 Jun, 2023 2 commits
-
-
Manuel Buil authored
[Release 1.25] VPN integration
-
Manuel Buil authored
Signed-off-by:Manuel Buil <mbuil@suse.com>
-
- 09 Jun, 2023 6 commits
-
-
Ian Cardoso authored
* add private registry e2e test (#7653) add private registry e2e test Signed-off-by:
Ian Cardoso <osodracnai@gmail.com> Co-authored-by:
Derek Nola <derek.nola@suse.com> * E2E: Startup test cleanup + RunCommand Enhancement (#7388) * Add beforesuite to startup * Reduce timeouts for startup * Fix cleanup + set kubeconfig Signed-off-by:
Derek Nola <derek.nola@suse.com> --------- Signed-off-by:
Ian Cardoso <osodracnai@gmail.com> Signed-off-by:
Derek Nola <derek.nola@suse.com> Co-authored-by:
Derek Nola <derek.nola@suse.com>
-
Derek Nola authored
Signed-off-by:Derek Nola <derek.nola@suse.com>
-
Derek Nola authored
Signed-off-by:Derek Nola <derek.nola@suse.com>
-
Esteban Esquivel Alvarado authored
* Add Certification Test to Validate Cluster Signed-off-by:
est-suse <esteban.esquivel@suse.com> * Fix to stop/start for k3s certificate rotation Signed-off-by:
Derek Nola <derek.nola@suse.com> --------- Signed-off-by:
est-suse <esteban.esquivel@suse.com> Signed-off-by:
Derek Nola <derek.nola@suse.com> Co-authored-by:
est-suse <esteban.esquivel@suse.com> Co-authored-by:
Derek Nola <derek.nola@suse.com>
-
Derek Nola authored
Signed-off-by:Derek Nola <derek.nola@suse.com>
-
Derek Nola authored
* Shortcircuit search with help and version flag Signed-off-by:
Derek Nola <derek.nola@suse.com> * Keep functions seperate Signed-off-by:
Derek Nola <derek.nola@suse.com> --------- Signed-off-by:
Derek Nola <derek.nola@suse.com>
-
- 01 Jun, 2023 1 commit
-
-
Derek Nola authored
Signed-off-by:Derek Nola <derek.nola@suse.com>
-
- 31 May, 2023 2 commits
-
-
Manuel Buil authored
[Release 1.25] Update flannel version
-
Manuel Buil authored
Signed-off-by:Manuel Buil <mbuil@suse.com>
-
- 18 May, 2023 2 commits
-
-
Brian Downs authored
-
Manuel Buil authored
[Release 1.25] Add '-all' flag to apply to inactive units
-
- 17 May, 2023 1 commit
-
-
Manuel Buil authored
Signed-off-by:Manuel Buil <mbuil@suse.com>
-
- 15 May, 2023 2 commits
-
-
Manuel Buil authored
[Release 1.25] Wrap error stating that it is coming from netpol
-
Manuel Buil authored
Signed-off-by:Manuel Buil <mbuil@suse.com>
-
- 11 May, 2023 1 commit
-
-
Brad Davidson authored
Signed-off-by:Brad Davidson <brad.davidson@rancher.com>
-
- 10 May, 2023 19 commits
-
-
Brad Davidson authored
Signed-off-by:Brad Davidson <brad.davidson@rancher.com>
-
Brad Davidson authored
As per https://github.com/golang/go/issues/47001 even subtle.ConstantTimeCompare should never be used with variable-length inputs, as it will return 0 if the lengths do not match. Switch to consistently using constant-time comparisons of hashes for password checks to avoid any possible side-channel leaks that could be combined with other vectors to discover password lengths. Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 239021e7)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit b32bf495)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit c98137dd)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit cf9ebb32)
-
Brad Davidson authored
Also add bandwidth and firewall plugins. The bandwidth plugin is automatically registered with the appropriate capability, but the firewall plugin must be configured by the user if they want to use it. Ref: https://www.cni.dev/plugins/current/meta/firewall/Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit cedefeff)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit e61fde93)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 91afb387)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit f1b6a354)
-
Brad Davidson authored
Several places in the code used a 5-second retry loop to wait on Runtime.Core to be set. This caused a race condition where OnChange handlers could be added after the Wrangler shared informers were already started. When this happened, the handlers were never called because the shared informers they relied upon were not started. Fix that by requiring anything that waits on Runtime.Core to run from a cluster controller startup hook that is guaranteed to be called before the shared informers are started, instead of just firing it off in a goroutine that retries until it is set. Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit c44d33d2)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 1ca035ac)
-
Brad Davidson authored
Don't set up the agent tunnel authorizer on agentless servers, and warn when agentless servers won't have a way to reach in-cluster endpoints. Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 31a63869)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 5348b5e6)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 0247794a)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 0bbc6ad3)
-
Brad Davidson authored
Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit 9539147e)
-
Brad Davidson authored
Fixes an issue where CRDs were being created without schema, allowing resources with invalid content to be created, later stalling the controller ListWatch event channel when the invalid resources could not be deserialized. This also requires moving Addon GVK tracking from a status field to an annotation, as the GroupVersionKind type has special handling internal to Kubernetes that prevents it from being serialized to the CRD when schema validation is enabled. Signed-off-by:
Brad Davidson <brad.davidson@rancher.com> (cherry picked from commit ad41fb8c)
-
Derek Nola authored
* local-storage: Fix permission /var/lib/rancher/k3s/storage/ should be 700 /var/lib/rancher/k3s/storage/* should be 777 Fixes #2348 Signed-off-by:
Boleyn Su <boleyn.su@gmail.com> Signed-off-by:
Derek Nola <derek.nola@suse.com> Co-authored-by:
Boleyn Su <boleyn.su@gmail.com> Co-authored-by:
Brad Davidson <brad@oatmail.org>
-
thomasferrandiz authored
[release-1.25] ensure that klog verbosity is set to the same level as logrus
-
- 09 May, 2023 3 commits
-
-
Ian Cardoso authored
This commit adds SearchK3sLog function to find specific strings in integration tests log file and also removes FindStringInCmdAsync function since it was not being used. Signed-off-by:
Ian Cardoso <osodracnai@gmail.com> (cherry picked from commit 3982213f) Signed-off-by:
Ian Cardoso <osodracnai@gmail.com>
-
Brooks Newberry authored
Signed-off-by:
Brooks Newberry <brooks@newberry.com> (cherry picked from commit bbda54b3) Signed-off-by:
Ian Cardoso <osodracnai@gmail.com>
-
Roberto Bonafiglia authored
Signed-off-by:Roberto Bonafiglia <roberto.bonafiglia@suse.com>
-
- 08 May, 2023 1 commit
-
-
Derek Nola authored
Signed-off-by:Derek Nola <derek.nola@suse.com>
-