Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for externalname (0.15 sec)

  1. pilot/pkg/xds/testdata/benchmarks/externalname.yaml

        - address: 1.1.1.1
          labels:
            security.istio.io/tlsMode: istio
    {{- range $i := until .Services }}
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: service-{{$i}}
    spec:
      type: ExternalName
      externalName: random-{{$i}}.example.com
      ports:
        - port: 80
          name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 632 bytes
    - Viewed (0)
  2. releasenotes/notes/external-name.yaml

    kind: bug-fix
    area: traffic-management
    issues:
      - 37331
    releaseNotes:
      - |
        **Improved** support for `ExternalName` services. See Upgrade Notes for more information
    upgradeNotes:
      - title: "Upcoming `ExternalName` support changes"
        content: |
          Below describes *upcoming* changes to `ExternalName`.
          In this release, there is no behavioral changes by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. releasenotes/notes/external-name-on.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
      - 37331
    releaseNotes:
      - |
        **Improved** support for `ExternalName` services. See Upgrade Notes for more information.
    upgradeNotes:
      - title: "`ExternalName` support changes"
        content: |
          Kubernetes `ExternalName` `Service`s allow users to create new DNS entries. For example, you can create an `example` service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. manifests/charts/base/templates/services.yaml

        targetPort: 15017
        name: tcp-webhook
        protocol: TCP
      {{- if not (regexMatch "^([0-9]*\\.){3}[0-9]*$" .Values.global.remotePilotAddress) }}
      # if the remotePilotAddress is not an IP addr, we use ExternalName
      type: ExternalName
      externalName: {{ .Values.global.remotePilotAddress }}
      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/services.yaml

        targetPort: 15017
        name: tcp-webhook
        protocol: TCP
      {{- if not (regexMatch "^([0-9]*\\.){3}[0-9]*$" .Values.global.remotePilotAddress) }}
      # if the remotePilotAddress is not an IP addr, we use ExternalName
      type: ExternalName
      externalName: {{ .Values.global.remotePilotAddress }}
      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/service/portname.go

    		if instance.IsUnsupported() || port.Name == "tcp" && svc.Type == "ExternalName" {
    
    			m := msg.NewPortNameIsNotUnderNamingConvention(
    				r, port.Name, int(port.Port), port.TargetPort.String())
    
    			if svc.Type == "ExternalName" {
    				m = msg.NewExternalNameServiceTypeInvalidPortName(r)
    			}
    
    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.PortInPorts, i)); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top