Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,344 for revision2 (0.25 sec)

  1. pilot/pkg/bootstrap/configcontroller.go

    					AddRunFunction(func(leaderStop <-chan struct{}) {
    						// We can only run this if the Gateway CRD is created
    						if s.kubeClient.CrdWatcher().WaitForCRD(gvr.KubernetesGateway, leaderStop) {
    							tagWatcher := revisions.NewTagWatcher(s.kubeClient, args.Revision)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== setting revision tag === ")
    	template, err := h.Template(IstiodReleaseName+"-"+revision, filepath.Join(relPath, version, ControlChartsDir, DiscoveryChartsDir)+fileSuffix,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--set",
    		fmt.Sprintf("revision=%s", revision), "--set", fmt.Sprintf("revisionTags={%s}", revisionTag))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta2/conversion.go

    	if revision := in.Annotations[appsv1beta2.DeprecatedRollbackTo]; revision != "" {
    		if revision64, err := strconv.ParseInt(revision, 10, 64); err != nil {
    			return fmt.Errorf("failed to parse annotation[%s]=%s as int64: %v", appsv1beta2.DeprecatedRollbackTo, revision, err)
    		} else {
    			out.Spec.RollbackTo = new(apps.RollbackConfig)
    			out.Spec.RollbackTo.Revision = revision64
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. pkg/config/model.go

    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/util.go

    // old version and then later decides to switch back to the old revision again.
    func DeactivateIstioInjectionWebhook(ctx context.Context, client kubernetes.Interface) error {
    	whs, err := GetWebhooksWithRevision(ctx, client, DefaultRevisionName)
    	if err != nil {
    		return err
    	}
    	if len(whs) == 0 {
    		// no revision with default, no action required.
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    			checks:   append([]assertion{{empty, empty, "istiod"}}, baseAssertions...),
    		},
    		{
    			// Upgrade from a legacy webhook to a new revision based
    			// Note: we don't need non revision legacy -> non revision, since it will overwrite the webhook
    			name:     "revision upgrade",
    			webhooks: mergeWebhooks(legacyWebhook, revWebhook),
    			checks: append([]assertion{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/README.md

    They are `tar`ed to avoid developer confusion and accidental edits.
    
    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      revision: 1-x-y
      components:
        base:
          enabled: false
        pilot:
          enabled: true
        ingressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_test.go

    		}
    	}
    
    	// It should not adopt revisions.
    	revisions, err := ssh.ListControllerRevisions(set, selector)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got, want := len(revisions), 1; got != want {
    		t.Errorf("len(revisions) = %v, want %v", got, want)
    	}
    	for _, revision := range revisions {
    		if len(revision.OwnerReferences) > 0 {
    			t.Errorf("unexpected revision owner references: %v", revision.OwnerReferences)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $revVerMap := .Revisions }}
    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/multiplecontrolplanes/main_test.go

    }
    
    func allowExternalService(t framework.TestContext, ns string, externalNs string, revision string) {
    	t.ConfigIstio().Eval(ns, map[string]any{
    		"Namespace": externalNs,
    		"Revision":  revision,
    	}, `apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-service
      labels:
        istio.io/rev: {{.Revision}}
    spec:
      hosts:
      - "fake.external.com"
      location: MESH_EXTERNAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top