Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,451 for Revisions (0.42 sec)

  1. 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)
  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. tests/integration/pilot/gw_topology_test.go

    			}
    			gatewayNs := namespace.NewOrFail(t, t, namespace.Config{Prefix: "custom-gateway", Inject: inject})
    			injectLabel := `sidecar.istio.io/inject: "true"`
    			if len(t.Settings().Revisions.Default()) > 0 {
    				injectLabel = fmt.Sprintf(`istio.io/rev: "%v"`, t.Settings().Revisions.Default())
    			}
    
    			templateParams := map[string]string{
    				"imagePullSecret": t.Settings().Image.PullSecret,
    				"injectLabel":     injectLabel,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/leaderelection.go

    // elections, with one difference: the "default" revision will steal the lock from other revisions.
    func NewLeaderElection(namespace, name, electionID, revision string, client kube.Client) *LeaderElection {
    	return newLeaderElection(namespace, name, electionID, revision, false, false, client)
    }
    
    // NewPerRevisionLeaderElection creates a *per revision* leader election. This means there will be one leader for each revision.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. releasenotes/notes/30991.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 30991
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 23 05:47:27 UTC 2021
    - 182 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/webhook/webhook.go

    		for _, h := range wh.Webhooks {
    			resources[fmt.Sprintf("%v/%v", resource.Metadata.FullName.String(), h.Name)] = resource
    		}
    		revisions.InsertAll(revs...)
    		return true
    	})
    
    	// Set up all relevant namespace and object selector permutations
    	namespaceLabels := getNamespaceLabels()
    	for rev := range revisions {
    		for _, base := range getNamespaceLabels() {
    			base[label.IoIstioRev.Name] = rev
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/41548.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 41547
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 13:53:37 UTC 2022
    - 204 bytes
    - Viewed (0)
Back to top