Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 215 for upgrades (0.28 sec)

  1. README.md

    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`.
    
    ### Upgrade Checklist
    
    - Test all upgrades in a lower environment (DEV, QA, UAT) before applying to production. Performing blind upgrades in production environments carries significant risk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/toolchain/switch.go

    	}
    	return "go" + latest, nil
    }
    
    // HasAuto reports whether the GOTOOLCHAIN setting allows "auto" upgrades.
    func HasAuto() bool {
    	env := cfg.Getenv("GOTOOLCHAIN")
    	return env == "auto" || strings.HasSuffix(env, "+auto")
    }
    
    // HasPath reports whether the GOTOOLCHAIN setting allows "path" upgrades.
    func HasPath() bool {
    	env := cfg.Getenv("GOTOOLCHAIN")
    	return env == "path" || strings.HasSuffix(env, "+path")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/apply.go

    		return errors.Wrap(err, "[upgrade/postupgrade] FATAL post-upgrade error")
    	}
    
    	if flags.dryRun {
    		fmt.Println("[upgrade/successful] Finished dryrunning successfully!")
    		return nil
    	}
    
    	fmt.Println("")
    	fmt.Printf("[upgrade/successful] SUCCESS! Your cluster was upgraded to %q. Enjoy!\n", initCfg.KubernetesVersion)
    	fmt.Println("")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    type UpgradeNodeConfiguration struct {
    	// CertificateRenewal instructs kubeadm to execute certificate renewal during upgrades.
    	CertificateRenewal *bool
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun *bool
    
    	// EtcdUpgrade instructs kubeadm to execute etcd upgrade during upgrades.
    	EtcdUpgrade *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	DryRun *bool `json:"dryRun,omitempty"`
    
    	// EtcdUpgrade instructs kubeadm to execute etcd upgrade during upgrades.
    	// Defaults to true.
    	// +optional
    	EtcdUpgrade *bool `json:"etcdUpgrade,omitempty"`
    
    	// ForceUpgrade flag instructs kubeadm to upgrade the cluster without prompting for confirmation.
    	// +optional
    	ForceUpgrade *bool `json:"forceUpgrade,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility.upgrades;
    
    import com.google.common.collect.ImmutableList;
    import com.google.gson.annotations.SerializedName;
    import japicmp.model.JApiMethod;
    
    import java.util.List;
    import java.util.Objects;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tests/integration/helm/upgrade/util.go

    	}
    
    	// Upgrade base chart
    	err = h.UpgradeChart(helmtest.BaseReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart),
    		nsConfig.Get(helmtest.BaseReleaseName), overrideValuesFile, helmtest.Timeout, "--skip-crds")
    	if err != nil {
    		ctx.Fatalf("failed to upgrade istio %s chart", helmtest.BaseReleaseName)
    	}
    
    	// Upgrade discovery chart
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/compute_test.go

    		t.Run(rt.name, func(t *testing.T) {
    			upgrade := Upgrade{
    				Before: ClusterState{
    					KubeletVersions: rt.before,
    				},
    				After: ClusterState{
    					KubeVersion: rt.after,
    				},
    			}
    			actual := upgrade.CanUpgradeKubelets()
    			if actual != rt.expected {
    				t.Errorf("failed TestKubeletUpgrade\n\texpected: %t\n\tgot: %t\n\ttest object: %v", rt.expected, actual, upgrade)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/features/features.go

    		}
    		featureGate[k] = boolValue
    	}
    
    	return featureGate, nil
    }
    
    // CheckDeprecatedFlags takes a list of existing feature gate flags and validates against the current feature flag set.
    // It used during upgrades for ensuring consistency of feature gates used in an existing cluster, that might
    // be created with a previous version of kubeadm, with the set of features currently supported by kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

    import static org.gradle.internal.classpath.TransformedClassPath.ORIGINAL_DIR_NAME;
    
    /**
     * Base artifact transform that instruments plugins with Gradle instrumentation, e.g. for configuration cache detection or property upgrades.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache")
    public abstract class BaseInstrumentingArtifactTransform implements TransformAction<Parameters> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top