Brad Davidson
356bd5d298
Fix spegel logging and startup sequence
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-08-25 11:02:30 -07:00
muicoder
8fff7f573b
refactor: replace go-bindata with native embed package
...
Signed-off-by: muicoder <muicoder@gmail.com >
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-07-31 11:53:06 -07:00
Brad Davidson
db5390511e
Switch from endpoints to endpointslices
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-06-09 11:28:02 -07:00
Caio Torres
729403345b
feat: remove master role labels ( #12395 )
...
Signed-off-by: Caio Torres <caio.torres@suse.com >
2025-05-28 12:41:35 -07:00
Vitor Savian
53de968676
Add generation for kube-scheduler and kube-controller-manager certs ( #12285 )
...
* Add generation for kube-scheduler and kube-controller-manager certs
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Add new certs to the tests
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Change cert-dir to tls-cert-file and tls-private-key-file
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Address altName structure
Co-authored-by: Brad Davidson <brad@oatmail.org >
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
---------
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
Co-authored-by: Brad Davidson <brad@oatmail.org >
2025-05-09 16:25:44 -03:00
bo.jiang
4c1f014d27
Optimize certificate status check
...
Signed-off-by: bo.jiang <bo.jiang@daocloud.io >
2025-05-08 11:57:29 -07:00
Vitor Savian
dc03cb4b3f
Update k8s version to 1.33
...
* Update to 1.33
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Fix prints that broke unit tests
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Change binary max size to 75
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Change containerd version to fix misspelling
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Address binary size comment
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Update Dependencies
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
* Remove dependencie not used anymore
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
---------
Signed-off-by: Vitor Savian <vitor.savian@suse.com >
2025-04-30 04:43:37 -03:00
Brad Davidson
1ba19856de
Add tests for control-plane component arg generation
...
Use mocked executor to ensure the correct args are being passed to components
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-03-31 17:09:43 -07:00
Brad Davidson
ee036f7bc9
Fix issue caused by default authorization-mode apiserver arg
...
Move arg-parsing helper functions into util, and use them to see if the user has set an authorization-config flag - and do not set authorization-mode if so.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-03-31 17:09:43 -07:00
Brad Davidson
529e748ac7
Move apiserver ready wait into common channel
...
Splits server startup into prepare/start phases. Server's agent is now
started after server is prepared, but before it is started. This allows
us to properly bootstrap the executor before starting server components,
and use the executor to provide a shared channel to wait on apiserver
readiness.
This allows us to replace four separate callers of WaitForAPIServerReady
with reads from a common ready channel.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-03-24 12:42:29 -07:00
Brad Davidson
2c133692b2
Increase log output while waiting for apiserver ready
...
Increases log verbosity but decreases polling frequency to avoid
spamming the console. It usually takes a couple seconds for the
apiserver to come up anyway.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-03-24 12:42:29 -07:00
Derek Nola
ac38633c71
Migrate to UrfaveCLI v2 ( #11831 )
...
* Bump rootlesskit tov 1.1.1, last of the v1 line
* Migrate to urfavecli v2
* Disable StringSlice seperattion
Signed-off-by: Derek Nola <derek.nola@suse.com >
2025-03-12 09:02:45 -07:00
Brad Davidson
bed1f66880
Avoid use of github.com/pkg/errors functions that capture stack
...
We are not making use of the stack traces that these functions capture, so we should avoid using them as unnecessary overhead.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-03-05 00:41:38 -08:00
Brad Davidson
5894af30ff
Move CR APIs to k3s-io/api
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-02-24 11:17:27 -08:00
Brad Davidson
6199b79f4b
Add etcd snapshot metrics
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-02-18 11:09:42 -08:00
Brad Davidson
838d68777f
Fix permissions checks on windows
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-02-07 07:46:19 -08:00
Brad Davidson
b2418ba354
Replace hardcoded unix-style paths in test
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-02-07 07:46:19 -08:00
Brad Davidson
6b0247fa4d
Improve flannel RBAC changes
...
Only wait for k3s-controller RBAC when AuthorizeNodeWithSelectors blocks kubelet from listing nodes
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2025-01-10 17:50:25 -08:00
Brad Davidson
71918e0d69
Use helper to set consistent rest.Config rate limits and timeouts
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-12-06 11:45:34 -08:00
Brad Davidson
cd4ddedbc9
Fix issue with loadbalancer failover to default server
...
The loadbalancer should only fail over to the default server if all other server have failed, and it should force fail-back to a preferred server as soon as one passes health checks.
The loadbalancer tests have been improved to ensure that this occurs.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-11-13 19:41:45 -08:00
Will
e4f3cc7b54
remove deprecated use of wait functions
...
Signed-off-by: Will <will7989@hotmail.com >
2024-07-29 16:23:17 -07:00
Katherine Door
7a0ea3c953
Add write-kubeconfig-group flag to server ( #9233 )
...
* Add write-kubeconfig-group flag to server
* update kubectl unable to read config message for kubeconfig mode/group
Signed-off-by: Katherine Pata <me@kitty.sh >
2024-05-30 23:45:34 -07:00
Brad Davidson
f8e0648304
Convert remaining http handlers over to use util.SendError
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-05-28 16:24:57 -07:00
Brad Davidson
ff679fb3ab
Refactor supervisor listener startup and add metrics
...
* Refactor agent supervisor listener startup and authn/authz to use upstream
auth delegators to perform for SubjectAccessReview for access to
metrics.
* Convert spegel and pprof handlers over to new structure.
* Promote bind-address to agent flag to allow setting supervisor bind
address for both agent and server.
* Promote enable-pprof to agent flag to allow profiling agents. Access
to the pprof endpoint now requires client cert auth, similar to the
spegel registry api endpoint.
* Add prometheus metrics handler.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-05-28 16:24:57 -07:00
Hussein Galal
144f5ad333
Kubernetes V1.30.0-k3s1 ( #10063 )
...
* kubernetes 1.30.0-k3s1
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* Update go version to v1.22.2
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* update dynamiclistener and helm-controller
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* update go in go.mod to 1.22.2
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* update go in Dockerfiles
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* update cri-dockerd
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* Add proctitle package with linux and windows constraints
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* go mod tidy
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* Fixing setproctitle function
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
* update dynamiclistener to v0.6.0-rc1
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
---------
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com >
2024-05-06 19:42:27 +03:00
Brad Davidson
08f1022663
Don't log 'apiserver disabled' error sent by etcd-only nodes
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-04-09 15:36:33 -07:00
Brad Davidson
fe465cc832
Move etcd snapshot management CLI to request/response
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-04-09 15:21:26 -07:00
Brad Davidson
60248c42de
Add supervisor cert/key to rotate list
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-04-05 10:59:17 -07:00
Brad Davidson
7f659759dd
Add certificate expiry check and warnings
...
* Add ADR
* Add `k3s certificate check` command.
* Add periodic check and events when certs are about to expire.
* Add metrics for certificate validity remaining, labeled by cert subject
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-03-28 12:05:21 -07:00
Brad Davidson
7a2a2d075c
Move error response generation code into util
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2024-03-26 15:17:15 -07:00
Brad Davidson
d885162967
Add server token hash to CR and S3
...
This required pulling the token hash stuff out of the cluster package, into util.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-10-12 15:04:45 -07:00
Manuel Buil
f2c7117374
Take IPFamily precedence based on order
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-09-29 11:04:15 +02:00
Manuel Buil
8c197bdce4
Include the interface name in the error message
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-09-25 07:55:49 +02:00
Derek Nola
51f1a5a0ab
Review comments and fixes
...
Signed-off-by: Derek Nola <derek.nola@suse.com >
2023-08-25 14:17:00 -06:00
Derek Nola
b967f92785
Replace os.Write with AtomicWrite function
...
Signed-off-by: Derek Nola <derek.nola@suse.com >
2023-08-25 14:17:00 -06:00
Brad Davidson
aa76942d0f
Add FilterCN function to prevent SAN Stuffing
...
Wire up a node watch to collect addresses of server nodes, to prevent adding unauthorized SANs to the dynamiclistener cert.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-08-02 11:15:39 -07:00
Manuel Buil
6c44b06e0a
Merge pull request #7838 from manuelbuil/ipv4ipv6tailscale
...
Check if we are on ipv4, ipv6 or dualStack when doing tailscale
2023-07-06 11:11:26 +02:00
Manuel Buil
d593c83603
Remove file_windows.go
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-07-03 16:08:39 +02:00
Manuel Buil
f21a01474d
Check if we are on ipv4, ipv6 or dualStack when doing tailscale
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-07-03 10:48:59 +02:00
Manuel Buil
869e030bdd
VPN PoC
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-06-09 12:39:33 +02:00
Brad Davidson
8748813a61
Use distinct clients for supervisor, deploy, and helm controllers
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-05-30 18:15:11 -07:00
Manuel Buil
437ad128c7
Migrate netutil methods into /utils/net.go
...
Signed-off-by: Manuel Buil <mbuil@suse.com >
2023-05-04 16:49:16 +02:00
Derek Nola
d5f560360e
Handle multiple arguments with StringSlice flags ( #7380 )
...
* Add helper function for multiple arguments in stringslice
Signed-off-by: Derek Nola <derek.nola@suse.com >
* Cleanup server setup with util function
Signed-off-by: Derek Nola <derek.nola@suse.com >
2023-05-02 09:55:48 -07:00
Brad Davidson
977a85559e
Add support for cross-signing new certs during ca rotation
...
We need to send the full chain in order for cross-signing to work
properly during switchover to a new root.
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-03-13 16:56:28 -07:00
Brad Davidson
32d62c5786
Use default address family when adding kubernetes service address to SAN list
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-02-09 15:17:21 -08:00
Brad Davidson
3c324335b2
Add utility functions for getting kubernetes client
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2023-02-06 15:09:31 -08:00
Brad Davidson
269563e4d2
Check for RBAC before starting tunnel controllers
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2022-10-26 15:08:13 -07:00
Brad Davidson
f633732d80
Use structured logging instead of logrus for event recorders
...
Signed-off-by: Brad Davidson <brad.davidson@rancher.com >
2022-10-04 10:26:17 -07:00
Roberto Bonafiglia
abdf0c7319
Fix comments and add check in case of IPv6 only node
...
Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com >
2022-08-04 09:54:45 +02:00
Roberto Bonafiglia
d90ba30353
Added NodeIP autodect in case of dualstack connection
...
Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com >
2022-08-04 09:54:45 +02:00