Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for ExternalIPs (0.15 sec)

  1. pilot/pkg/config/kube/gateway/context.go

    				if svc.Attributes.ClusterExternalAddresses.Len() > 0 {
    					// Fetch external IPs from all clusters
    					svc.Attributes.ClusterExternalAddresses.ForEach(func(c cluster.ID, externalIPs []string) {
    						foundExternal.InsertAll(externalIPs...)
    					})
    				} else if corev1.ServiceType(svc.Attributes.Type) == corev1.ServiceTypeLoadBalancer {
    					if !foundPending.Contains(g) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion.go

    	istioService.Attributes.NodeLocal = nodeLocal
    	if len(svc.Spec.ExternalIPs) > 0 {
    		if istioService.Attributes.ClusterExternalAddresses == nil {
    			istioService.Attributes.ClusterExternalAddresses = &model.AddressMap{}
    		}
    		istioService.Attributes.ClusterExternalAddresses.AddAddressesFor(clusterID, svc.Spec.ExternalIPs)
    	}
    
    	return istioService
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

          targetPort: 80
        - name: https
          port: 443
          protocol: TCP
          targetPort: 443
        annotations: {}
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
        externalTrafficPolicy: ""
        externalIPs: []
        ipFamilyPolicy: ""
        ipFamilies: []
        ## Whether to automatically allocate NodePorts (only for LoadBalancers).
        # allocateLoadBalancerNodePorts: false
    
      resources:
        requests:
          cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/api/v1/service/util.go

    func ExternallyAccessible(service *v1.Service) bool {
    	return service.Spec.Type == v1.ServiceTypeLoadBalancer ||
    		service.Spec.Type == v1.ServiceTypeNodePort ||
    		(service.Spec.Type == v1.ServiceTypeClusterIP && len(service.Spec.ExternalIPs) > 0)
    }
    
    // ExternalPolicyLocal checks if service is externally accessible and has ETP = Local.
    func ExternalPolicyLocal(service *v1.Service) bool {
    	if !ExternallyAccessible(service) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/api/service/util.go

    func ExternallyAccessible(service *api.Service) bool {
    	return service.Spec.Type == api.ServiceTypeLoadBalancer ||
    		service.Spec.Type == api.ServiceTypeNodePort ||
    		(service.Spec.Type == api.ServiceTypeClusterIP && len(service.Spec.ExternalIPs) > 0)
    }
    
    // RequestsOnlyLocalTraffic checks if service requests OnlyLocal traffic.
    func RequestsOnlyLocalTraffic(service *api.Service) bool {
    	if service.Spec.Type != api.ServiceTypeLoadBalancer &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/bgpconfigurations-crd.yaml

                    type: array
                  serviceExternalIPs:
                    description: ServiceExternalIPs are the CIDR blocks for Kubernetes
                      Service External IPs. Kubernetes Service ExternalIPs will only be
                      advertised if they are within one of these blocks.
                    items:
                      description: ServiceExternalIPBlock represents a single allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/README.md

    KUBE-NODE-PORT  all  --  0.0.0.0/0            0.0.0.0/0            match-set KUBE-NODE-PORT-TCP dst
    ```
    
    **5. Service with externalIPs specified**
    
    For service with `externalIPs` specified, IPVS proxier will install IPTABLES with match of ipset `KUBE-EXTERNAL-IP`,
    Suppose we have service with `externalIPs` specified, IPTABLES rules should look like what is shown below.
    
    ```shell
    Chain PREROUTING (policy ACCEPT)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  8. pkg/util/node/node.go

    // node, and the first IP is used as the `.status.HostIP` for all pods on the node.
    func GetNodeHostIPs(node *v1.Node) ([]net.IP, error) {
    	// Re-sort the addresses with InternalIPs first and then ExternalIPs
    	allIPs := make([]net.IP, 0, len(node.Status.Addresses))
    	for _, addr := range node.Status.Addresses {
    		if addr.Type == v1.NodeInternalIP {
    			ip := netutils.ParseIPSloppy(addr.Address)
    			if ip != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. helm-releases/minio-2.0.1.tgz

    .Values.consoleService.type "NodePort") ( .Values.consoleService.nodePort)) }} nodePort: {{ .Values.consoleService.nodePort }} {{- else }} targetPort: {{ .Values.consoleService.port }} {{- end}} {{- if .Values.consoleService.externalIPs }} externalIPs: {{- range $i , $ip := .Values.consoleService.externalIPs }} - {{ $ip }} {{- end }} {{- end }} selector: app: {{ template "minio.name" . }} release: {{ .Release.Name }} minio/templates/deployment.yaml {{- if eq .Values.mode "standalone" }} {{ $scheme := "http" }} {{-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

    ## ref: http://kubernetes.io/docs/user-guide/services/
    ##
    service:
      type: ClusterIP
      clusterIP: ~
      port: "9000"
      nodePort: 32000
      loadBalancerIP: ~
      externalIPs: []
      annotations: {}
    
      ## service.loadBalancerSourceRanges Addresses that are allowed when service is LoadBalancer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (1)
Back to top