Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 646 for revision2 (0.42 sec)

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

    	// Compatibility determines whether we should transparently deploy echo workloads attached to each revision
    	// specified in `Revisions` when creating echo instances. Used primarily for compatibility testing between revisions
    	// on different control plane versions.
    	Compatibility bool
    
    	// Revisions maps the Istio revisions that are available to each cluster to their corresponding versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. releasenotes/notes/fix-istioctl-x-precheck-missing-revision.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 07 02:32:33 UTC 2023
    - 142 bytes
    - Viewed (0)
  3. samples/ambient-argo/tag-chart/values.yaml

      # Defines the mapping from revision tags to revisions.
      #
      # The following fields can be set for each revision tag:
      #   (1) revision (REQUIRED): the revision to use for this revision tag.
      #   (2) namespace: the namespace containing the istiod revision.
      #   (3) validationURL: the URL to use for validation on this revision tag.
      #   (4) injectionURL: the URL to for injection on this revision tag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-remove.go

    	}
    
    	// If the user is performing purge but also specified a revision, we should warn
    	// that the purge will still remove all resources
    	if orArgs.purge && orArgs.revision != "" {
    		orArgs.revision = ""
    		l.LogAndPrint("Purge remove will remove all Istio operator controller, ignoring the specified revision\n")
    	}
    
    	var installed bool
    	if orArgs.revision == "default" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. hack/testdata/deployment-revision1.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 366 bytes
    - Viewed (0)
  6. tests/integration/pilot/webhook_test.go

    						return fmt.Errorf("validatingwebhookconfiguration not updated yet: %v", err)
    					}
    					return nil
    				})
    			}
    
    			revision := "default"
    			if t.Settings().Revisions.Default() != "" {
    				revision = t.Settings().Revisions.Default()
    			}
    			verifyRejectsInvalidConfig(t, revision, true)
    			verifyRejectsInvalidConfig(t, "", true)
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 13:31:34 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. pkg/revisions/tag_watcher_test.go

    	whs.Create(makeTag("revision", "tag-foo"))
    	track.WaitOrdered("revision,tag-foo")
    	assert.Equal(t, tw.GetMyTags(), sets.New("revision", "tag-foo"))
    
    	whs.Create(makeTag("revision", "tag-bar"))
    	track.WaitOrdered("revision,tag-bar,tag-foo")
    	assert.Equal(t, tw.GetMyTags(), sets.New("revision", "tag-foo", "tag-bar"))
    
    	whs.Update(makeTag("not-revision", "tag-bar"))
    	track.WaitOrdered("revision,tag-foo")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/namespace/namespace.go

    func (c *Config) overwriteRevisionIfEmpty(revision string) {
    	// Overwrite the default namespace label (istio-injection=enabled)
    	// with istio.io/rev=XXX. If a revision label is already provided,
    	// the label will remain as is.
    	if c.Revision == "" {
    		c.Revision = revision
    	}
    	// Allow setting revision explicitly to `default` to avoid configuration overwrite
    	if c.Revision == "default" {
    		c.Revision = ""
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. pkg/revisions/default_watcher.go

    // when the default revision changes.
    type DefaultWatcher interface {
    	Run(stopCh <-chan struct{})
    	HasSynced() bool
    	GetDefault() string
    	AddHandler(handler DefaultHandler)
    }
    
    // DefaultHandler is a callback for when the default revision changes.
    type DefaultHandler func(string)
    
    type defaultWatcher struct {
    	revision        string
    	defaultRevision string
    	handlers        []DefaultHandler
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 02:22:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. samples/ambient-argo/README.md

    ## Upgrade Planning
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top