Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for externalname (0.21 sec)

  1. pilot/pkg/serviceregistry/kube/conversion.go

    	addrs := []string{constants.UnspecifiedIP}
    	resolution := model.ClientSideLB
    	externalName := ""
    	nodeLocal := false
    
    	if svc.Spec.Type == corev1.ServiceTypeExternalName && svc.Spec.ExternalName != "" {
    		externalName = svc.Spec.ExternalName
    		if features.EnableExternalNameAlias {
    			resolution = model.Alias
    		} else {
    			resolution = model.DNSLB
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    
    	if service.Attributes.Type != string(extSvc.Spec.Type) ||
    		service.Attributes.ExternalName != extSvc.Spec.ExternalName {
    		t.Fatalf("service attributes incorrect => %v/%v, want %v/%v",
    			service.Attributes.Type, service.Attributes.ExternalName, extSvc.Spec.Type, extSvc.Spec.ExternalName)
    	}
    }
    
    func TestExternalClusterLocalServiceConversion(t *testing.T) {
    	serviceName := "service1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-external-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Fixed** a regression in Istio 1.21.0 causing `VirtualService`s routing to `ExternalName` services to not work when 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:48 UTC 2024
    - 264 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      allocateLoadBalancerNodePorts: true
      clusterIP: clusterIPValue
      clusterIPs:
      - clusterIPsValue
      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
      healthCheckNodePort: 12
      internalTrafficPolicy: internalTrafficPolicyValue
      ipFamilies:
      - ipFamiliesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "concrete"},
    			},
    		},
    		{
    			name: "looping alias",
    			input: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    			output: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    		"If enabled, ExternalName Services will be treated as simple aliases: anywhere where we would match the concrete service, "+
    			"we also match the ExternalName. In general, this mirrors Kubernetes behavior more closely. However, it means that policies (routes and DestinationRule) "+
    			"cannot be applied to the ExternalName service. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    		},
    		{
    			first: &Service{
    				Attributes: ServiceAttributes{
    					K8sAttributes: K8sAttributes{
    						ExternalName: "foo.com",
    					},
    				},
    			},
    			other: &Service{
    				Attributes: ServiceAttributes{
    					K8sAttributes: K8sAttributes{
    						ExternalName: "bar.com",
    					},
    				},
    			},
    			shouldEq: false,
    			name:     "different external names",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    		return true
    	}
    	// Even if ClusterIP is set, ServiceTypeExternalName services don't get proxied
    	if service.Spec.Type == v1.ServiceTypeExternalName {
    		klog.V(3).InfoS("Skipping service due to Type=ExternalName", "service", klog.KObj(service))
    		return true
    	}
    	return false
    }
    
    // AddressSet validates the addresses in the slice using the "isValid" function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top