Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,344 for revision2 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    	defer logRuntime(time.Now(), "Done getting control plane revisions/versions")
    
    	text := ""
    	text += fmt.Sprintf("CLI version:\n%s\n\n", version.Info.LongForm())
    
    	revisions := getIstioRevisions(resources)
    	istioVersions, proxyVersions := getIstioVersions(ctx, istioNamespace, revisions)
    	text += "The following Istio control plane revisions/versions were found in the cluster:\n"
    	for rev, ver := range istioVersions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. istioctl/pkg/tag/tag.go

    	overrideHelpStr = `If true, allow revision tags to be overwritten, otherwise reject revision tag updates that
    overwrite existing revision tags.`
    	revisionHelpStr = "Control plane revision to reference from a given revision tag"
    	tagCreatedStr   = `Revision tag %q created, referencing control plane revision %q. To enable injection using this
    revision tag, use 'kubectl label namespace <NAMESPACE> istio.io/rev=%s'
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top