Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for externalIPs (0.23 sec)

  1. pkg/proxy/serviceport.go

    	// SessionAffinityType returns service session affinity type
    	SessionAffinityType() v1.ServiceAffinity
    	// StickyMaxAgeSeconds returns service max connection age
    	StickyMaxAgeSeconds() int
    	// ExternalIPs returns service ExternalIPs
    	ExternalIPs() []net.IP
    	// LoadBalancerVIPs returns service LoadBalancerIPs which are VIP mode
    	LoadBalancerVIPs() []net.IP
    	// Protocol returns service protocol.
    	Protocol() v1.Protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/number_generated_rules_test.go

    			expectedNatRules:    325,
    		},
    
    		{
    			name: "0 Services 0 EndpointsPerService - LoadBalancer",
    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/proxy/servicechangetracker_test.go

    					svcInfo.port != expectedInfo.port ||
    					svcInfo.protocol != expectedInfo.protocol ||
    					svcInfo.healthCheckNodePort != expectedInfo.healthCheckNodePort ||
    					!reflect.DeepEqual(svcInfo.externalIPs, expectedInfo.externalIPs) ||
    					!reflect.DeepEqual(svcInfo.loadBalancerSourceRanges, expectedInfo.loadBalancerSourceRanges) ||
    					!reflect.DeepEqual(svcInfo.loadBalancerVIPs, expectedInfo.loadBalancerVIPs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. pkg/api/service/warnings_test.go

    			s.Annotations = map[string]string{api.DeprecatedAnnotationTopologyAwareHints: "foo"}
    		},
    		numWarnings: 1,
    	}, {
    		name: "externalIPs set when type is ExternalName",
    		tweakSvc: func(s *api.Service) {
    			s.Spec.Type = api.ServiceTypeExternalName
    			s.Spec.ExternalIPs = []string{"1.2.3.4"}
    		},
    		numWarnings: 1,
    	}, {
    		name: "externalName set when type is not ExternalName",
    		tweakSvc: func(s *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. 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 (0)
  6. pkg/registry/core/service/strategy_test.go

    		for i := range svc.Spec.Ports {
    			svc.Spec.Ports[i].NodePort += 100
    		}
    	}
    	setExternalIPs := func(svc *api.Service) {
    		svc.Spec.ExternalIPs = []string{"1.1.1.1"}
    	}
    	clearExternalIPs := func(svc *api.Service) {
    		svc.Spec.ExternalIPs = nil
    	}
    	setExternalTrafficPolicyCluster := func(svc *api.Service) {
    		svc.Spec.ExternalTrafficPolicy = api.ServiceExternalTrafficPolicyCluster
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. helm-releases/minio-5.0.14.tgz

    .Values.consoleService.type "NodePort") ( .Values.consoleService.nodePort)) }} nodePort: {{ .Values.consoleService.nodePort }} {{- else }} targetPort: {{ .Values.minioConsolePort }} {{- 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 := .Values.tls.enabled...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 20:46:10 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. helm-releases/minio-5.0.15.tgz

    .Values.consoleService.type "NodePort") ( .Values.consoleService.nodePort)) }} nodePort: {{ .Values.consoleService.nodePort }} {{- else }} targetPort: {{ .Values.minioConsolePort }} {{- 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 := .Values.tls.enabled...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/mesh_network_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "istio-ingressgateway",
    					Namespace: "istio-system",
    				},
    				Spec: corev1.ServiceSpec{
    					Type:        corev1.ServiceTypeClusterIP,
    					ExternalIPs: []string{"2.2.2.2"},
    				},
    			}},
    			// cluster/network 2's ingress can be found by it's network label
    			"cluster-2": {&corev1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "istio-ingressgateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. helm-releases/minio-5.1.0.tgz

    .Values.consoleService.type "NodePort") ( .Values.consoleService.nodePort)) }} nodePort: {{ .Values.consoleService.nodePort }} {{- else }} targetPort: {{ .Values.minioConsolePort }} {{- 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 := .Values.tls.enabled...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top