Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for IpFamilies (0.12 sec)

  1. pkg/registry/core/service/ipallocator/controller/repair_test.go

    				ClusterIP:  "192.168.1.1",
    				ClusterIPs: []string{"192.168.1.1"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    		&corev1.Service{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "two", Name: "two"},
    			Spec: corev1.ServiceSpec{
    				ClusterIP:  "192.168.1.100",
    				ClusterIPs: []string{"192.168.1.100"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/service.yaml

    {{- end }}
    {{- if .ServiceAnnotations }}
      annotations:
    {{- range $name, $value := .ServiceAnnotations }}
        {{ $name }}: {{ printf "%q" $value }}
    {{- end }}
    {{- end }}
    spec:
    {{- if .IPFamilies }}
      ipFamilies: [ {{ .IPFamilies }} ]
    {{- end }}
    {{- if .IPFamilyPolicy }}
      ipFamilyPolicy: {{ .IPFamilyPolicy }}
    {{- end }}
    {{- if .Headless }}
      clusterIP: None
    {{- end }}
      ports:
    {{- range $i, $p := .ServicePorts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 917 bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/alloc.go

    		// the validation allows it
    		if len(service.Spec.IPFamilies) < 2 {
    			if *(service.Spec.IPFamilyPolicy) != api.IPFamilyPolicySingleStack {
    				// add the alt ipfamily
    				if service.Spec.IPFamilies[0] == api.IPv4Protocol {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv6Protocol)
    				} else {
    					service.Spec.IPFamilies = append(service.Spec.IPFamilies, api.IPv4Protocol)
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/templates/service.yaml

        -
          port: {{ $app.port }}
          name: {{ $app.name }}
      {{- end }}
    {{- if $gateway.ipFamilyPolicy }}
      ipFamilyPolicy: {{ $gateway.ipFamilyPolicy }}
    {{- end }}
    {{- if $gateway.ipFamilies }}
      ipFamilies:
    {{- range $gateway.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/service.yaml

      {{- end }}
    {{- end }}
    {{- if .Values.service.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.service.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.service.ipFamilies }}
      ipFamilies:
    {{- range .Values.service.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    {{- with .Values.service.loadBalancerSourceRanges }}
      loadBalancerSourceRanges:
    {{ toYaml . | indent 4 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 16:55:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        istio: pilot
        {{- end }}
      {{- if .Values.pilot.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.pilot.ipFamilyPolicy }}
      {{- end }}
      {{- if .Values.pilot.ipFamilies }}
      ipFamilies:
      {{- range .Values.pilot.ipFamilies }}
      - {{ . }}
      {{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. manifests/charts/base/templates/services.yaml

      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
      ipFamilies:
    {{- range .Values.global.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/services.yaml

      {{- end }}
    {{- if .Values.global.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.global.ipFamilyPolicy }}
    {{- end }}
    {{- if .Values.global.ipFamilies }}
      ipFamilies:
    {{- range .Values.global.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/service.yaml

        -
          port: {{ $app.port }}
          name: {{ $app.name }}
      {{- end }}
    {{- if $gateway.ipFamilyPolicy }}
      ipFamilyPolicy: {{ $gateway.ipFamilyPolicy }}
    {{- end }}
    {{- if $gateway.ipFamilies }}
      ipFamilies:
    {{- range $gateway.ipFamilies }}
      - {{ . }}
    {{- end }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage.go

    			service.Spec.IPFamilyPolicy = &singleStack
    			service.Spec.IPFamilies = []api.IPFamily{r.primaryIPFamily}
    		}
    	} else {
    		// Headful: init ipFamilies from clusterIPs.
    		service.Spec.IPFamilies = make([]api.IPFamily, len(service.Spec.ClusterIPs))
    		for idx, ip := range service.Spec.ClusterIPs {
    			if netutil.IsIPv6String(ip) {
    				service.Spec.IPFamilies[idx] = api.IPv6Protocol
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top