1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-13 13:40:22 +00:00

Add compatibility with k8s v1.22

This commit is contained in:
Sebastiaan van Steenis
2021-06-16 21:36:14 +02:00
parent b7ef427a9a
commit 546a61b24a
9 changed files with 63 additions and 20 deletions

View File

@@ -42,11 +42,12 @@ const (
LogLinkContainerName = "rke-log-linker"
LogCleanerContainerName = "rke-log-cleaner"
KubeAPIPort = 6443
SchedulerPort = 10251
KubeControllerPort = 10252
KubeletPort = 10248
KubeproxyPort = 10256
KubeAPIPort = 6443
SchedulerPort = 10251
KubeControllerPortMaxV121 = 10252
KubeControllerPort = 10257
KubeletPort = 10248
KubeproxyPort = 10256
WorkerThreads = util.WorkerThreads