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

Change cluster cidr defaults

This commit is contained in:
galal-hussein
2018-03-29 21:51:35 +02:00
parent d1d6e73560
commit 64b8b4a6a1
2 changed files with 7 additions and 7 deletions

View File

@@ -10,9 +10,9 @@ import (
)
const (
DefaultServiceClusterIPRange = "10.233.0.0/18"
DefaultClusterCIDR = "10.233.64.0/18"
DefaultClusterDNSService = "10.233.0.3"
DefaultServiceClusterIPRange = "10.43.0.0/16"
DefaultClusterCIDR = "10.42.0.0/16"
DefaultClusterDNSService = "10.43.0.10"
DefaultClusterDomain = "cluster.local"
DefaultClusterName = "local"
DefaultClusterSSHKeyPath = "~/.ssh/id_rsa"