mirror of
https://github.com/kairos-io/provider-rke2.git
synced 2025-09-26 04:35:42 +00:00
* feat: support custom cluster root path Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com> * chore(dep): bump yaml from v2 to v3 Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com> * ci: update gcr push token Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com> * support cluster reset event Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com> * fix: use ubuntu-22.04 as runner Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com> --------- Signed-off-by: Nianyu Shen <xiaoyu9964@gmail.com>
17 lines
395 B
Go
17 lines
395 B
Go
package constants
|
|
|
|
const (
|
|
ConfigurationPath = "/etc/rancher/rke2/config.d"
|
|
ContainerdEnvConfigPath = "/etc/default"
|
|
|
|
ServerSystemName = "rke2-server"
|
|
AgentSystemName = "rke2-agent"
|
|
K8SNoProxy = ".svc,.svc.cluster,.svc.cluster.local"
|
|
LocalImagesPath = "/opt/content/images"
|
|
)
|
|
|
|
const (
|
|
ClusterRootPath = "cluster_root_path"
|
|
RunSystemdSystemDir = "/run/systemd/system"
|
|
)
|