Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,344 for revision2 (0.22 sec)

  1. pkg/revisions/default_watcher_test.go

    	client.RunAndWait(stop)
    	go w.Run(stop)
    	whc := clienttest.Wrap(t, w.webhooks)
    	expectRevision(t, w, "")
    
    	// add a handler to watch default revision changes, ensure it's triggered
    	newDefaultChan := make(chan string)
    	handler := func(revision string) {
    		newDefaultChan <- revision
    	}
    	w.AddHandler(handler)
    	whc.CreateOrUpdate(webhook("green"))
    	expectRevisionChan(t, newDefaultChan, "green")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/controller/deployment/rollback.go

    	rollbackTo := getRollbackTo(d)
    	// If rollback revision is 0, rollback to the last revision
    	if rollbackTo.Revision == 0 {
    		if rollbackTo.Revision = deploymentutil.LastRevision(logger, allRSs); rollbackTo.Revision == 0 {
    			// If we still can't find the last revision, gives up rollback
    			dc.emitRollbackWarningEvent(d, deploymentutil.RollbackRevisionNotFound, "Unable to find last revision.")
    			// Gives up rollback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/revisioned_upgrade_test.go

    	installRevisionOrFail(t, fromVersion, configs)
    	revision := strings.ReplaceAll(fromVersion, ".", "-")
    	revisionedNamespace := namespace.NewOrFail(t, t, namespace.Config{
    		Prefix:   revision,
    		Inject:   true,
    		Revision: revision,
    	})
    
    	var revisionedInstance echo.Instance
    	builder := deployment.New(t)
    	builder.With(&revisionedInstance, echo.Config{
    		Service:   fmt.Sprintf("svc-%s", revision),
    		Namespace: revisionedNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            CliRequest request = new CliRequest(new String[] {"-Drevision=8.1.0", "-Drevision=8.2.0"}, null);
    
            cli.initialize(request);
            // read .mvn/maven.config
            cli.cli(request);
            cli.properties(request);
    
            String revision = request.getUserProperties().getProperty("revision");
            assertEquals("8.2.0", revision);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/sidecarinjector.go

    		wh.Run(stop)
    		return nil
    	})
    	return wh, nil
    }
    
    func getInjectorConfigMapName(revision string) string {
    	name := defaultInjectorConfigMapName
    	if revision == "" || revision == "default" {
    		return name
    	}
    	return name + "-" + revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1/conversion.go

    	if revision := in.Annotations[appsv1.DeprecatedRollbackTo]; revision != "" {
    		if revision64, err := strconv.ParseInt(revision, 10, 64); err != nil {
    			return fmt.Errorf("failed to parse annotation[%s]=%s as int64: %v", appsv1.DeprecatedRollbackTo, revision, err)
    		} else {
    			out.Spec.RollbackTo = new(apps.RollbackConfig)
    			out.Spec.RollbackTo.Revision = revision64
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  7. releasenotes/notes/35290.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    releaseNotes:
      - |
        **Fixed** VMs are able to use a revisioned control plane specified by `--revision` on the `istioctl x workload entry`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 218 bytes
    - Viewed (0)
  8. releasenotes/notes/drop-iop.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Removed** the `istioctl experimental revision` command. Revisions can be inspected by the stable `istioctl tag list` command.
      - |
        **Removed** the `installed-state` `IstioOperator` that was created when running `istioctl install`. This previously provided only a snapshot
        of what was installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  9. tests/integration/pilot/revisions/revisions_test.go

    		Label(label.CustomSetup).
    		Setup(istio.Setup(nil, func(_ resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    revision: stable
    `
    		})).
    		Setup(istio.Setup(nil, func(_ resource.Context, cfg *istio.Config) {
    			cfg.ControlPlaneValues = `
    profile: empty
    revision: canary
    components:
      pilot:
        enabled: true
    `
    		})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/README.md

    ing/src/k8s.io/client-go/tools/leaderelection) that includes [prioritized leader election](https://github.com/kubernetes/kubernetes/pull/103442). These changes are required in order to make it so that the default revision wins leader elections and steals locks from non-default revisions. The changes were not upstreamed to k8s in time for the Istio 1.12 release.
    
    Ideally, prioritized leader election gets upstreamed in the near future ([KEP](https://github.com/kubernetes/enhancements/pull/2836)),...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
Back to top