Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 646 for revision2 (0.19 sec)

  1. tests/integration/pilot/multi_version_revision_test.go

    					revision:  rev,
    					namespace: ns,
    				})
    			}
    
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    			builder := deployment.New(t)
    
    			for _, ns := range revisionedNamespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   fmt.Sprintf("revision-%s", ns.revision),
    					Namespace: ns.namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. releasenotes/notes/fix-revision-admin-log.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Added** `revision` flag to admin log to switch controls between Istiods.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 15 19:59:34 UTC 2022
    - 302 bytes
    - Viewed (0)
  3. tests/integration/pilot/cross_revision_test.go

    			for _, rev := range extraRevs {
    				namespaces = append(namespaces, revisionedNamespace{
    					revision: rev,
    					namespace: namespace.NewOrFail(t, t, namespace.Config{
    						Prefix:   fmt.Sprintf("revision-%s", rev),
    						Inject:   true,
    						Revision: rev,
    					}),
    				})
    			}
    			// Allow all namespaces so we do not hit passthrough cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-revision.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-revision</artifactId>
      <version>${revision}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. releasenotes/notes/graudate-revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: promotion
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 17:37:59 UTC 2021
    - 171 bytes
    - Viewed (0)
  6. releasenotes/notes/remote-cluster-respect-revision.yaml

    kind: bug-fix
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 47552
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 261 bytes
    - Viewed (0)
  7. releasenotes/notes/add-default-revision-webhook.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** non-revisioned installs to target the label `istio.io/rev=default` for injection in addition to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 19:16:25 UTC 2021
    - 298 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top