Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for externalIPs (0.13 sec)

  1. helm/minio/templates/service.yaml

          nodePort: {{ .Values.service.nodePort }}
          {{- else }}
          targetPort: {{ .Values.minioAPIPort }}
          {{- end }}
      {{- if .Values.service.externalIPs }}
      externalIPs:
        {{- range $i , $ip := .Values.service.externalIPs }}
        - {{ $ip }}
        {{- end }}
      {{- end }}
      selector:
        app: {{ template "minio.name" . }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. manifests/charts/gateway/templates/service.yaml

        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 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 16:55:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. helm/minio/templates/console-service.yaml

          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" . }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pkg/api/service/warnings.go

    			warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("clusterIPs").Index(i), clusterIP)...)
    		}
    	}
    
    	for i, externalIP := range service.Spec.ExternalIPs {
    		warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("externalIPs").Index(i), externalIP)...)
    	}
    
    	if len(service.Spec.LoadBalancerIP) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. pkg/api/v1/service/util_test.go

    	})
    	checkExternalPolicyLocal(false, &v1.Service{
    		Spec: v1.ServiceSpec{
    			Type:        v1.ServiceTypeClusterIP,
    			ExternalIPs: []string{"1.2.3.4"},
    		},
    	})
    	checkExternalPolicyLocal(false, &v1.Service{
    		Spec: v1.ServiceSpec{
    			Type:                  v1.ServiceTypeClusterIP,
    			ExternalIPs:           []string{"1.2.3.4"},
    			ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyCluster,
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 15:18:45 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top