Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,344 for revision2 (0.17 sec)

  1. pkg/controller/history/controller_history_test.go

    				for i := range test.existing {
    					if test.revision.Name == test.existing[i].revision.Name &&
    						test.revision.Namespace == test.existing[i].revision.Namespace {
    						found = test.existing[i].revision
    						break
    					}
    				}
    				if found == nil {
    					return true, nil, errors.NewNotFound(apps.Resource("controllerrevisions"), test.revision.Name)
    				}
    				b, err := strategicpatch.StrategicMergePatch(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags_test.go

    				NoCleanup:         true,
    			},
    			expectErr: true,
    		},
    		{
    			name: "fail on both revision and revisions flag",
    			settings: &Settings{
    				Revision:      "a",
    				Compatibility: false,
    				Revisions: RevVerMap{
    					"b": "",
    				},
    			},
    			expectErr: true,
    		},
    		{
    			name: "fail when compatibility mode but no revisions",
    			settings: &Settings{
    				Compatibility: true,
    			},
    			expectErr: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    		updateRevision = revisions[revisionCount-1]
    	} else if equalCount > 0 {
    		// if the equivalent revision is not immediately prior we will roll back by incrementing the
    		// Revision of the equivalent revision
    		updateRevision, err = ssc.controllerHistory.UpdateControllerRevision(
    			equalRevisions[equalCount-1],
    			updateRevision.Revision)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. releasenotes/notes/revision-install-create-istiod-service.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
        **Fixed** a bug resulting in broken resource validation when a fresh Istio installation specified a revision. Note that
        this fix applies only when using the `istioctl` installation method, the manual steps from the [canary upgrade documentation](https://istio.io/latest/docs/setup/upgrade/canary/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection_test.go

    	// Second pod, revision "red", steals the leader lock from "green" since it is the default revision
    	_, stop2 := createElection(t, "pod2", "red", watcher, true, client)
    	// Third pod with revision "red" comes in and cannot take the lock since another revision with "red" has it
    	_, stop3 := createElection(t, "pod3", "red", watcher, false, client)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/install.go

    	revision := iop.Spec.Revision
    	if revision == "" {
    		revision = util.DefaultRevisionName
    	}
    	icps, err := kubeClient.GetIstioVersions(context.TODO(), ns)
    	if err != nil {
    		return err
    	}
    	if len(*icps) != 0 {
    		var icpTags []string
    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. 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)
  8. pkg/test/framework/resource/flags.go

    	}
    
    	if s.Revision != "" {
    		if s.Revisions != nil {
    			return fmt.Errorf("cannot use --istio.test.revision and --istio.test.revisions at the same time," +
    				" --istio.test.revisions will take precedence and --istio.test.revision will be ignored")
    		}
    		// use Revision as the sole revision in RevVerMap
    		s.Revisions = RevVerMap{
    			s.Revision: "",
    		}
    	} else if s.Revisions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top