Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for externalname (0.3 sec)

  1. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                                support ExternalName Services.
    
    
                                                Support: Core (Services with a type other than ExternalName)
    
    
                                                Support: Implementation-specific (Services with type ExternalName)
                                              maxLength: 63
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		}
    		if svcList[i].MeshExternal != exp.MeshExternal {
    			t.Fatalf("i=%v, MeshExternal==%v, should be %v: externalName='%s'", i+1, exp.MeshExternal, svcList[i].MeshExternal, k8sSvcs[i].Spec.ExternalName)
    		}
    		if svcList[i].Resolution != exp.Resolution {
    			t.Fatalf("i=%v, Resolution=='%v', should be '%v'", i+1, svcList[i].Resolution, exp.Resolution)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        code: IST0150
        level: Warning
        description: "Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly for ExternalName services."
        template: "Port name for ExternalName service is invalid. Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly"
    
      - name: "EnvoyFilterUsesRelativeOperation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                                Services. \n Support: Core (Services with
                                                a type other than ExternalName) \n Support:
                                                Implementation-specific (Services with
                                                type ExternalName)"
                                              maxLength: 63
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage.go

    	// Set ipFamilies and ipFamilyPolicy if needed.
    	r.defaultOnReadIPFamilies(service)
    
    	// We unintentionally defaulted internalTrafficPolicy when it's not needed
    	// for the ExternalName type. It's too late to change the field in storage,
    	// but we can drop the field when read.
    	defaultOnReadInternalTrafficPolicy(service)
    }
    
    func defaultOnReadInternalTrafficPolicy(service *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (1)
  6. pkg/proxy/servicechangetracker_test.go

    			service: makeTestService("ns2", "external-name", func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeExternalName
    				svc.Spec.ClusterIP = "172.16.55.4" // Should be ignored
    				svc.Spec.ExternalName = "foo2.bar.com"
    				svc.Spec.Ports = addTestPort(svc.Spec.Ports, "portz", "UDP", 1235, 5321, 0)
    			}),
    			expected: map[ServicePortName]*BaseServicePortInfo{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/traffic.go

    	RunSkipAmbient("tls-origination", tlsOriginationCases, "not workload agnostic")
    	RunSkipAmbient("instanceip", instanceIPTests, "not supported")
    	RunCase("services", serviceCases)
    	RunSkipAmbient("externalname", externalNameCases, "Relies on X-Forwarded-Client-Cert in checker")
    	RunSkipAmbient("host", hostCases, "Relies on X-Forwarded-Client-Cert in checker")
    	RunSkipAmbient("envoyfilter", envoyFilterCases, "not supported")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // (if supported in the current cloud) which routes to the same endpoints
      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    	t.RunTraffic(TrafficTestCase{
    		name:         "without port",
    		globalConfig: true,
    		config: fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-ext-no-port
    spec:
      type: ExternalName
      externalName: b.%s.svc.cluster.local`, t.Apps.Namespace.Name()),
    		children: calls("b-ext-no-port", check.MTLSForHTTP()),
    	})
    
    	t.RunTraffic(TrafficTestCase{
    		name:         "with port",
    		globalConfig: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top