Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for multiVersion (0.14 sec)

  1. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: multiversion
      labels:
        app: multiversion
    spec:
      ports:
      - name: http
        port: 8090
        targetPort: 8090
      - name: tcp
        port: 9000
        targetPort: 9000
      - name: grpc
        port: 9090
        targetPort: 9090
      selector:
        app: multiversion
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiversion-v-istio
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers.go

    // - Multi-Subset
    var RegularPod Matcher = func(instance echo.Instance) bool {
    	return instance.Config().IsRegularPod()
    }
    
    var NotRegularPod = Not(RegularPod)
    
    // MultiVersion matches echos that have Multi-version specific setup.
    var MultiVersion Matcher = func(i echo.Instance) bool {
    	if len(i.Config().Subsets) != 2 {
    		return false
    	}
    	var matchIstio, matchLegacy bool
    	for _, s := range i.Config().Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tests/integration/security/util/framework.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    const (
    	ASvc             = "a"
    	BSvc             = "b"
    	CSvc             = "c"
    	DSvc             = "d"
    	ESvc             = "e"
    	MultiversionSvc  = "multiversion"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	NakedSvc         = "naked"
    	HeadlessNakedSvc = "headless-naked"
    	ExternalSvc      = "external"
    )
    
    type EchoDeployments struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top