1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-12 06:38:34 +00:00

added check for empty updatestrategy while setting dns addon defaults

This commit is contained in:
vardhaman 2022-11-30 15:30:02 +05:30
parent cfa58c8ac4
commit ab5a08c134

View File

@ -306,7 +306,7 @@ func (c *Cluster) setNodeUpgradeStrategy() {
}
// setCRIDockerd set enable_cri_dockerd = true when the following two conditions are met:
//the cluster's version is at least 1.24 and the option enable_cri_dockerd is not configured
// the cluster's version is at least 1.24 and the option enable_cri_dockerd is not configured
func (c *Cluster) setCRIDockerd() error {
parsedVersion, err := getClusterVersion(c.Version)
if err != nil {
@ -952,7 +952,8 @@ func setDNSDeploymentAddonDefaults(updateStrategy *v3.DeploymentStrategy, dnsPro
coreDNSMaxUnavailable, coreDNSMaxSurge = intstr.FromInt(1), intstr.FromInt(0)
kubeDNSMaxSurge, kubeDNSMaxUnavailable = intstr.FromString("10%"), intstr.FromInt(0)
)
if updateStrategy != nil && updateStrategy.Strategy != appsv1.RollingUpdateDeploymentStrategyType {
if updateStrategy != nil && updateStrategy.Strategy != appsv1.RollingUpdateDeploymentStrategyType &&
updateStrategy.Strategy != "" {
return updateStrategy
}
switch dnsProvider {