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

Add nodeSelector in network and monitoring addons

This commit is contained in:
rajashree
2019-08-29 11:00:26 -07:00
committed by Alena Prokharchyk
parent e31b8b0bf5
commit 1b4f7939f1
2 changed files with 8 additions and 0 deletions

View File

@@ -107,6 +107,8 @@ const (
WeavePassword = "WeavePassword"
RBACConfig = "RBACConfig"
ClusterVersion = "ClusterVersion"
NodeSelector = "NodeSelector"
)
var EtcdPortList = []string{
@@ -169,6 +171,7 @@ func (c *Cluster) doFlannelDeploy(ctx context.Context, data map[string]interface
},
RBACConfig: c.Authorization.Mode,
ClusterVersion: util.GetTagMajorVersion(c.Version),
NodeSelector: c.Network.NodeSelector,
}
pluginYaml, err := c.getNetworkPluginManifest(flannelConfig, data)
if err != nil {
@@ -190,6 +193,7 @@ func (c *Cluster) doCalicoDeploy(ctx context.Context, data map[string]interface{
CloudProvider: c.Network.Options[CalicoCloudProvider],
FlexVolImg: c.SystemImages.CalicoFlexVol,
RBACConfig: c.Authorization.Mode,
NodeSelector: c.Network.NodeSelector,
}
pluginYaml, err := c.getNetworkPluginManifest(calicoConfig, data)
if err != nil {
@@ -227,6 +231,7 @@ func (c *Cluster) doCanalDeploy(ctx context.Context, data map[string]interface{}
"VNI": flannelVni,
"Port": flannelPort,
},
NodeSelector: c.Network.NodeSelector,
}
pluginYaml, err := c.getNetworkPluginManifest(canalConfig, data)
if err != nil {
@@ -243,6 +248,7 @@ func (c *Cluster) doWeaveDeploy(ctx context.Context, data map[string]interface{}
CNIImage: c.SystemImages.WeaveCNI,
WeaveLoopbackImage: c.SystemImages.Alpine,
RBACConfig: c.Authorization.Mode,
NodeSelector: c.Network.NodeSelector,
}
pluginYaml, err := c.getNetworkPluginManifest(weaveConfig, data)
if err != nil {