Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for upgrades (0.2 sec)

  1. cluster/gce/upgrade.sh

      echo "!!! EXPERIMENTAL !!!"
      echo "!!! This upgrade script is not meant to be run in production !!!"
      echo ""
      echo "${0} [-M | -N | -P] [-o] (-l | <version number or publication>)"
      echo "  Upgrades master and nodes by default"
      echo "  -M:  Upgrade master only"
      echo "  -N:  Upgrade nodes only"
      echo "  -P:  Node upgrade prerequisites only (create a new instance template)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    2. We will use `bytecode upgrades` when we talk about Property or API upgrades.
    3. We will use `bytecode interception` when we talk about both bytecode instrumentation or bytecode upgrades.
    4. We will use `transformation` when we talk about applying some interception to to jars or classes or classpath.
    
    It is possible that in the code we use all these terms interchangeably, but we will try to be consistent in this document.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

    import me.champeau.gradle.japicmp.report.Violation
    import org.gradle.api.Incubating
    
    import javax.inject.Inject
    
    import static gradlebuild.binarycompatibility.upgrades.UpgradedProperties.SEEN_OLD_ACCESSORS_OF_UPGRADED_PROPERTIES
    import static gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey
    
    @CompileStatic
    abstract class AbstractGradleViolationRule extends AbstractContextAwareViolationRule {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

            if (gradleCoreInstrumentationTypeRegistry.isEmpty()) {
                // In case core types registry is empty, it means we don't have any upgrades
                // in Gradle core, so we can return empty registry
                return InstrumentationTypeRegistry.empty();
            }
            return getResolutionData(contextId).getInstrumentationTypeRegistry();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top