Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 646 for revision2 (0.17 sec)

  1. pkg/test/framework/resource/version.go

    	"istio.io/istio/pkg/test/framework/config"
    )
    
    var _ config.Value = &RevVerMap{}
    
    // RevVerMap maps installed revisions to their Istio versions.
    type RevVerMap map[string]IstioVersion
    
    func (rv *RevVerMap) SetConfig(mi any) error {
    	m, ok := mi.(config.Map)
    	if !ok {
    		return fmt.Errorf("revisions map: expected map but got slice")
    	}
    	out := make(RevVerMap)
    	for k := range m {
    		version := m.String(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/README.md

    ```yaml
    meshConfig:
      accessLogFile: /dev/stdout
    ```
    
    #### Revisions
    
    Control plane revisions allow deploying multiple versions of the control plane in the same cluster.
    This allows safe [canary upgrades](https://istio.io/latest/docs/setup/upgrade/canary/)
    
    ```yaml
    revision: my-revision-name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. hack/testdata/service-revision1.yaml

    Di Xu <******@****.***> 1532509796 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 09 14:59:02 UTC 2018
    - 123 bytes
    - Viewed (0)
  4. releasenotes/notes/45243.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 45242
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:51 UTC 2023
    - 233 bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    				})
    			}
    		})
    }
    
    func verifyRevision(t framework.TestContext, i istioctl.Instance, podName, podNamespace, revision string) {
    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/revisions/tag_watcher.go

    }
    
    func NewTagWatcher(client kube.Client, revision string) TagWatcher {
    	p := &tagWatcher{
    		revision: revision,
    	}
    	p.queue = controllers.NewQueue("tag", controllers.WithReconciler(func(key types.NamespacedName) error {
    		p.notifyHandlers()
    		return nil
    	}))
    	p.webhooks = kclient.NewFiltered[*admissionregistrationv1.MutatingWebhookConfiguration](client, kubetypes.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top