Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for allocateLoadBalancerNodePorts (0.33 sec)

  1. manifests/charts/gateway/templates/service.yaml

    spec:
    {{- with .Values.service.loadBalancerIP }}
      loadBalancerIP: "{{ . }}"
    {{- end }}
    {{- if eq .Values.service.type "LoadBalancer" }}
      {{- if hasKey .Values.service "allocateLoadBalancerNodePorts" }}
      allocateLoadBalancerNodePorts: {{ .Values.service.allocateLoadBalancerNodePorts }}
      {{- end }}
    {{- end }}
    {{- if .Values.service.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.service.ipFamilyPolicy }}
    {{- 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)
  2. pkg/api/service/testing/make.go

    	svc.Spec.Type = api.ServiceTypeClusterIP
    	for i := range svc.Spec.Ports {
    		svc.Spec.Ports[i].NodePort = 0
    	}
    	svc.Spec.ExternalName = ""
    	svc.Spec.ExternalTrafficPolicy = ""
    	svc.Spec.AllocateLoadBalancerNodePorts = nil
    	internalTrafficPolicy := api.ServiceInternalTrafficPolicyCluster
    	svc.Spec.InternalTrafficPolicy = &internalTrafficPolicy
    }
    
    // SetTypeNodePort sets the service type to NodePort and clears other fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. releasenotes/notes/48762.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 48751
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 16:55:28 UTC 2024
    - 175 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/HEAD/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      allocateLoadBalancerNodePorts: true
      clusterIP: clusterIPValue
      clusterIPs:
      - clusterIPsValue
      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Service.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      allocateLoadBalancerNodePorts: true
      clusterIP: clusterIPValue
      clusterIPs:
      - clusterIPsValue
      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      allocateLoadBalancerNodePorts: true
      clusterIP: clusterIPValue
      clusterIPs:
      - clusterIPsValue
      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/services.go

    		// nodeports won't be allocated yet, so we can't simply count the actual values.
    		// We need to look at the intent.
    		if svc.Spec.AllocateLoadBalancerNodePorts != nil &&
    			*svc.Spec.AllocateLoadBalancerNodePorts == false {
    			result[corev1.ResourceServicesNodePorts] = *portsWithNodePorts(svc)
    		} else {
    			value := resource.NewQuantity(int64(ports), resource.DecimalSI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top