Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for svc4 (0.06 sec)

  1. pkg/test/framework/components/gcemetadata/kube.go

    			return nil, err
    		}
    		c.address = net.JoinHostPort(lb, fmt.Sprint(svc.Spec.Ports[0].Port))
    		c.addressVM = net.JoinHostPort(lb, fmt.Sprint(svc.Spec.Ports[1].Port))
    	} else {
    		c.address = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[0].Port))
    		c.addressVM = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[1].Port))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

                      address:
                        socket_address:
                          address: ratelimit.{{ .RateLimitNamespace }}.svc.cluster.local
                          port_value: 8081
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        - applyTo: VIRTUAL_HOST
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: eastwestgateway-istio.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway_test.go

    	hosts := mgw.GetAutoPassthrughGatewaySNIHosts()
    	expectedHosts := sets.Set[string]{}
    	expectedHosts.InsertAll("a.apps.svc.cluster.local", "b.apps.svc.cluster.local")
    	if !hosts.Equals(expectedHosts) {
    		t.Errorf("expected to get: [a.apps.svc.cluster.local,b.apps.svc.cluster.local], got: %s", hosts.String())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/network/denyserviceexternalips/admission_test.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    func makeSvc(externalIPs ...string) *core.Service {
    	svc := &core.Service{}
    	svc.Namespace = "test-ns"
    	svc.Name = "test-svc"
    	svc.Spec.ExternalIPs = externalIPs
    	return svc
    }
    
    func TestAdmission(t *testing.T) {
    	testCases := []struct {
    		name   string
    		newSvc *core.Service
    		oldSvc *core.Service
    		fail   bool
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 05:36:44 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. pkg/volume/util/storageclass_test.go

    		},
    
    		{
    			name:    "two default storage class with different creation timestamp",
    			classes: []*storagev1.StorageClass{sc3, sc4},
    			expect:  sc4,
    		},
    
    		{
    			name:    "two default storage class with same creation timestamp",
    			classes: []*storagev1.StorageClass{sc4, sc5},
    			expect:  sc4,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 14:18:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/none_eds.json

                }
              ],
              "load_balancing_weight": {
                "value": 2
              }
            }
          ]
        },
        "outbound|2008||tcpmeshstatic.seexamples.svc": {
          "cluster_name": "outbound|2008||tcpmeshstatic.seexamples.svc",
          "endpoints": [
            {
              "lb_endpoints": [
                {
                  "endpoint": {
                    "address": {
                      "Address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/proxy/conntrack/cleanup_test.go

    		NamespacedName: types.NamespacedName{
    			Namespace: svc.Namespace,
    			Name:      svc.Name,
    		},
    		Port:     svc.Spec.Ports[0].Name,
    		Protocol: svc.Spec.Ports[0].Protocol,
    	}
    
    	udpPortName := proxy.ServicePortName{
    		NamespacedName: types.NamespacedName{
    			Namespace: svc.Namespace,
    			Name:      svc.Name,
    		},
    		Port:     svc.Spec.Ports[1].Name,
    		Protocol: svc.Spec.Ports[1].Protocol,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. tests/testdata/certs/generate.sh

    subjectAltName = @alt_names
    [alt_names]
    URI = spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account
    DNS.1 = istiod.istio-system
    DNS.2 = istiod.istio-system.svc
    DNS.3 = istio-pilot.istio-system
    DNS.4 = istio-pilot.istio-system.svc
    DNS.5 = localhost
    EOF
    
    
    cat > "${WD}/mountedcerts-server.conf" <<EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top