Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 280 for svc4 (0.04 sec)

  1. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.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)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
          and istio-ingressgateway.istio-system.svc.domain.suffix:34001
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/kubernetesservice/controller.go

    	// Determine if the service is in the format we expect
    	// (servicePorts are present and service type matches)
    	formatCorrect := checkServiceFormat(svc, servicePorts, serviceType)
    	if formatCorrect {
    		return svc, false
    	}
    	svc.Spec.Ports = servicePorts
    	svc.Spec.Type = serviceType
    	return svc, true
    }
    
    // Determine if the service is in the correct format
    // getMasterServiceUpdateIfNeeded expects (servicePorts are correct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/delegated.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/apple.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-apple
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - apple/apple.example
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. samples/multicluster/expose-istiod-https.yaml

            host: istiod.istio-system.svc.cluster.local
            port:
              number: 15012
      - match:
        - port: 15017
        route:
        - destination:
            host: istiod.istio-system.svc.cluster.local
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: istiod-dr
    spec:
      host: istiod.istio-system.svc.cluster.local
      trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    	// nolint: lll
    	ExpectedXfccHeader = `By=spiffe://cluster.local/ns/mounted-certs/sa/server;Hash=86948ccdaf2de73b20d389dc212aaf2d72f9f1ca239327cc2e8b05e61b1676d1;Subject="CN=client.mounted-certs.svc.cluster.local";URI=spiffe://cluster.local/ns/mounted-certs/sa/client;DNS=client.mounted-certs.svc`
    )
    
    func TestClientToServiceTls(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			createObject(t, echo1NS.Name(), DestinationRuleConfigMutual)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/mock/discovery_test.go

    		Hostname:        "hello.default.svc.cluster.local",
    		Address:         "10.1.0.0",
    		ServiceAccounts: []string{},
    		ClusterID:       "cluster-1",
    	})
    	HelloInstanceV0 := MakeIP(HelloService, 0)
    
    	if HelloInstanceV0 != "10.1.1.0" {
    		t.Fatalf("MakeIP() can not handle ip4 address.")
    	}
    
    	HelloService1 := MakeService(ServiceArgs{
    		Hostname:        "hello.default.svc.cluster.local",
    		Address:         "asa",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 17:33:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    	tests := []struct {
    		in   string
    		want bool
    	}{
    		{"kubernetes.default.svc", true},
    		{"kubernetes.default.svc.cluster.local", true},
    		{"https://kubernetes.default.svc", true},
    		{"https://kubernetes.default.svc.cluster.local", true},
    		{"foo.default.svc", false},
    		{"foo.default.svc:80", false},
    		{"https://foo.default.svc:80", false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.in, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/service_health.go

    	hcs.lock.Lock()
    	defer hcs.lock.Unlock()
    
    	// Remove any that are not needed any more.
    	for nsn, svc := range hcs.services {
    		if port, found := newServices[nsn]; !found || port != svc.port {
    			klog.V(2).InfoS("Closing healthcheck", "service", nsn, "port", svc.port)
    
    			// errors are loged in closeAll()
    			_ = svc.closeAll()
    
    			delete(hcs.services, nsn)
    
    		}
    	}
    
    	// Add any that are needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/tunneling/gateway/tcp/gateway.tmpl.yaml

      servers:
      - port:
          number: 80
          name: tcp-80
          protocol: TCP
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
      - port:
          number: 443
          name: tcp-443
          protocol: TCP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 506 bytes
    - Viewed (0)
Back to top