Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 624 for revision2 (0.16 sec)

  1. 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)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    		// canary revision should receive only global objects and objects with the canary revision
    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[1]) {
    			expectedCanary = append(expectedCanary, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    		// prod revision should receive only global objects and objects with the prod revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    				}
    			}
    		}, revision))
    }
    
    func setupInstallation(overrideValuesStr string, isAmbient bool, config NamespaceConfig, revision string) func(t framework.TestContext) {
    	return baseSetup(overrideValuesStr, isAmbient, config, func(t framework.TestContext) {
    		sanitycheck.RunTrafficTest(t, t)
    	}, revision)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/uninstall_test.go

    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
      profile: remote
      revision: %s
    `, name, revision)
    				if _, err = tempFile.WriteString(contents); err != nil {
    					t.Fatalf("failed to write to temp file: %v", err)
    				}
    				return tempFile.Name()
    			}
    
    			// Creating custom installation and empty uninstallation files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. tests/integration/helm/upgrade/util.go

    func deleteIstioRevision(h *helm.Helm, revision string) error {
    	scopes.Framework.Infof("cleaning up revision resources (%s)", revision)
    	name := helmtest.IstiodReleaseName + "-" + strings.ReplaceAll(revision, ".", "-")
    	if err := h.DeleteChart(name, helmtest.IstioNamespace); err != nil {
    		return fmt.Errorf("failed to delete revision (%s)", name)
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    		return nil, err
    	}
    
    	// Populate the revisions for the control plane.
    	var revisions resource.RevVerMap
    	if !cfg.DeployIstio {
    		// Using a pre-installed control plane. Get the revisions from the
    		// command-line.
    		revisions = ctx.Settings().Revisions
    	} else if len(iop.Spec.Revision) > 0 {
    		// Use revisions from the default control plane operator.
    		revisions = resource.RevVerMap{
    			iop.Spec.Revision: "",
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. istioctl/pkg/waypoint/waypoint.go

    		},
    	}
    
    	waypointApplyCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    	waypointApplyCmd.PersistentFlags().BoolVarP(&waitReady, "wait", "w", false, "Wait for the waypoint to be ready")
    	waypointCmd.AddCommand(waypointApplyCmd)
    	waypointGenerateCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    	waypointCmd.AddCommand(waypointGenerateCmd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	services        kclient.Client[*corev1.Service]
    	serviceAccounts kclient.Client[*corev1.ServiceAccount]
    	namespaces      kclient.Client[*corev1.Namespace]
    	tagWatcher      revisions.TagWatcher
    	revision        string
    }
    
    // Patcher is a function that abstracts patching logic. This is largely because client-go fakes do not handle patching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/ingress_test.go

    				d := filepath.Join(t.TempDir(), "gateway-values.yaml")
    				rev := ""
    				if t.Settings().Revisions.Default() != "" {
    					rev = t.Settings().Revisions.Default()
    				}
    				os.WriteFile(d, []byte(fmt.Sprintf(`
    revision: %v
    gateways:
      istio-ingressgateway:
        name: custom-gateway-helm
        injectionTemplate: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    		switch {
    		case strings.HasPrefix(rev, info.Short):
    			return fmt.Errorf("revision is longer than canonical (expected %s)", info.Short)
    		case strings.HasPrefix(info.Short, rev):
    			return fmt.Errorf("revision is shorter than canonical (expected %s)", info.Short)
    		default:
    			return fmt.Errorf("does not match short name of revision (expected %s)", info.Short)
    		}
    	}
    
    	t, err := module.PseudoVersionTime(version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top