Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ExternalIPs (0.17 sec)

  1. pkg/printers/internalversion/printers.go

    	switch svc.Spec.Type {
    	case api.ServiceTypeClusterIP:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeNodePort:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeLoadBalancer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	}
    
    	makeServiceMap(fp,
    		makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) {
    			svc.Spec.Type = "ClusterIP"
    			svc.Spec.ClusterIP = svcIP
    			svc.Spec.ExternalIPs = []string{svcExternalIPs}
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:       svcPortName.Port,
    				Port:       int32(svcPort),
    				Protocol:   v1.ProtocolTCP,
    				TargetPort: intstr.FromInt32(int32(svcPort)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    )
    
    // Conventions for tests using NewFakeProxier:
    //
    // Pod IPs:             10.0.0.0/8
    // Service ClusterIPs:  172.30.0.0/16
    // Node IPs:            192.168.0.0/24
    // Local Node IP:       192.168.0.2
    // Service ExternalIPs: 192.168.99.0/24
    // LoadBalancer IPs:    1.2.3.4, 5.6.7.8, 9.10.11.12
    // Non-cluster IPs:     203.0.113.0/24
    // LB Source Range:     203.0.113.0/25
    
    const testHostname = "test-hostname"
    const testNodeIP = "192.168.0.2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		{
    			// Test LoadBalancer service with mul ExternalIPs
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test6"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "tcp",
    							Port:     8888,
    						},
    					},
    					ClusterIPs:  []string{"10.9.8.7"},
    					ExternalIPs: mulExternalIP,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.IPFamilyPolicy != nil {
    		in, out := &in.IPFamilyPolicy, &out.IPFamilyPolicy
    		*out = new(IPFamilyPolicy)
    		**out = **in
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SessionAffinityConfig != nil {
    		in, out := &in.SessionAffinityConfig, &out.SessionAffinityConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.LoadBalancerSourceRanges != nil {
    		in, out := &in.LoadBalancerSourceRanges, &out.LoadBalancerSourceRanges
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    15443 targetPort: 15443 - name: tls-istiod port: 15012 targetPort: 15012 - name: tls-webhook port: 15017 targetPort: 15017 {{- else }} {{ .Values.service.ports | toYaml | indent 4 }} {{- end }} {{- if .Values.service.externalIPs }} externalIPs: {{- range .Values.service.externalIPs }} - {{.}} {{- end }} {{- end }} selector: {{- include "gateway.selectorLabels" . | nindent 4 }} {{- end }} manifests/charts/gateway/templates/deployment.yaml apiVersion: apps/v1 kind: {{ .Values.kind | default "Deployment"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top