Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for externalname (0.19 sec)

  1. 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)
  2. releasenotes/notes/svc-external-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43440
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 14:36:57 UTC 2023
    - 225 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. pkg/api/service/warnings_test.go

    	}, {
    		name: "externalIPs set when type is ExternalName",
    		tweakSvc: func(s *api.Service) {
    			s.Spec.Type = api.ServiceTypeExternalName
    			s.Spec.ExternalIPs = []string{"1.2.3.4"}
    		},
    		numWarnings: 1,
    	}, {
    		name: "externalName set when type is not ExternalName",
    		tweakSvc: func(s *api.Service) {
    			s.Spec.Type = api.ServiceTypeClusterIP
    			s.Spec.ExternalName = "example.com"
    		},
    		numWarnings: 1,
    	}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. releasenotes/notes/35429.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 35429
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 226 bytes
    - Viewed (0)
  6. pkg/api/service/warnings.go

    		warnings = append(warnings, fmt.Sprintf("spec.externalIPs is ignored when spec.type is %q", api.ServiceTypeExternalName))
    	}
    	if service.Spec.Type != api.ServiceTypeExternalName && service.Spec.ExternalName != "" {
    		warnings = append(warnings, fmt.Sprintf("spec.externalName is ignored when spec.type is not %q", api.ServiceTypeExternalName))
    	}
    
    	return warnings
    }
    
    func getWarningsForIP(fieldPath *field.Path, address string) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/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: Mon Mar 04 06:46:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top