Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 202 for externalapi (0.19 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. 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)
  3. plugin/pkg/admission/network/denyserviceexternalips/admission.go

    		return nil
    	}
    
    	klog.V(4).Infof("Denying new use of ExternalIPs on Service %s/%s", newSvc.Namespace, newSvc.Name)
    	return admission.NewForbidden(attr, fmt.Errorf("Use of external IPs is denied by admission control"))
    }
    
    func isSubset(newSvc, oldSvc *core.Service) bool {
    	// If new has none, it's a subset.
    	if len(newSvc.Spec.ExternalIPs) == 0 {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 29 18:00:11 UTC 2020
    - 3.2K 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. plugin/pkg/admission/podtolerationrestriction/config.go

    }
    
    // LoadConfiguration loads the provided configuration.
    func loadConfiguration(config io.Reader) (*internalapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &versionedapi.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &internalapi.Configuration{}
    		if err := scheme.Convert(externalConfig, internalConfig, nil); err != nil {
    			return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier_test.go

    		if svcInfo.nodePorthnsID != "" {
    			t.Errorf("NodePortHnsID %v is not empty.", svcInfo.nodePorthnsID)
    		}
    		// Verifying ExternalIP Loadbalancer is not created
    		for _, externalIP := range svcInfo.externalIPs {
    			if externalIP.hnsID != "" {
    				t.Errorf("ExternalLBID %v is not empty.", externalIP.hnsID)
    			}
    		}
    		// Verifying IngressIP Loadbalancer is not created
    		for _, ingressIP := range svcInfo.loadBalancerIngressIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    func (f *fakePodPullingTimeRecorder) RecordImageFinishedPulling(podUID types.UID) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. plugin/pkg/admission/eventratelimit/apis/eventratelimit/install/install.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/eventratelimit/apis/eventratelimit"
    	versionedapi "k8s.io/kubernetes/plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1"
    )
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    	utilruntime.Must(internalapi.AddToScheme(scheme))
    	utilruntime.Must(versionedapi.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 1.3K bytes
    - Viewed (0)
Back to top