Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for serviceFor (0.31 sec)

  1. operator/pkg/translate/strategic_port_merge_test.go

    			overlayPorts:        []*v1.ServicePort{httpPort, httpsPort, quicPort},
    			expectedMergedPorts: []*v1.ServicePort{httpPort, httpsPort, quicPort},
    		},
    		{
    			name:                "same base and overlay",
    			basePorts:           []*v1.ServicePort{httpPort, httpsPort},
    			overlayPorts:        []*v1.ServicePort{httpsPort, httpPort},
    			expectedMergedPorts: []*v1.ServicePort{httpPort, httpsPort},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/ports/ports.go

    var (
    	HTTP             = echo.Port{Name: "http", Protocol: protocol.HTTP, ServicePort: 80, WorkloadPort: 18080}
    	GRPC             = echo.Port{Name: "grpc", Protocol: protocol.GRPC, ServicePort: 7070, WorkloadPort: 17070}
    	HTTP2            = echo.Port{Name: "http2", Protocol: protocol.HTTP, ServicePort: 85, WorkloadPort: 18085}
    	TCP              = echo.Port{Name: "tcp", Protocol: protocol.TCP, ServicePort: 9090, WorkloadPort: 19090}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/proxy/conntrack/cleanup_test.go

    	}
    	servicePort := svcPortMap[tcpPortName]
    	if servicePort == nil || servicePort.String() != "172.30.1.1:53/TCP" {
    		t.Fatalf("expected svcPortMap[%q] to be \"172.30.1.1:53/TCP\", got %q", tcpPortName.String(), servicePort.String())
    	}
    	servicePort = svcPortMap[udpPortName]
    	if servicePort == nil || servicePort.String() != "172.30.1.1:53/UDP" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/services_test.go

    					Type: api.ServiceTypeNodePort,
    					Ports: []api.ServicePort{
    						{
    							Port: 27443,
    						},
    					},
    				},
    			},
    			required: []corev1.ResourceName{corev1.ResourceServicesNodePorts},
    		},
    		"multi-nodeports": {
    			service: &api.Service{
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeNodePort,
    					Ports: []api.ServicePort{
    						{
    							Port: 27443,
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 15:48:58 UTC 2021
    - 9.4K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1beta1/conversion.go

    		return err
    	}
    	if len(in.ServiceName) > 0 || in.ServicePort.IntVal != 0 || in.ServicePort.StrVal != "" || in.ServicePort.Type == intstr.String {
    		out.Service = &networking.IngressServiceBackend{}
    		out.Service.Name = in.ServiceName
    		out.Service.Port.Name = in.ServicePort.StrVal
    		out.Service.Port.Number = in.ServicePort.IntVal
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/kubernetesservice/controller.go

    	}
    	return nil
    }
    
    // createPortAndServiceSpec creates an array of service ports.
    // If the NodePort value is 0, just the servicePort is used, otherwise, a node port is exposed.
    func createPortAndServiceSpec(servicePort int, targetServicePort int, nodePort int, servicePortName string) ([]corev1.ServicePort, corev1.ServiceType) {
    	// Use the Cluster IP type for the service port if NodePort isn't provided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslTemplatesDeprecationsIntegrationTest.kt

                import org.gradle.kotlin.dsl.support.serviceOf
    
                class DeprecationTrigger(gradle: Gradle) : ${org.gradle.kotlin.dsl.InitScriptApi::class.qualifiedName}(gradle) {
                    override val fileOperations: FileOperations = gradle.serviceOf()
                    override val processOperations: ProcessOperations = gradle.serviceOf()
                }
    
                DeprecationTrigger(gradle)
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. helm/minio/templates/console-ingress.yaml

                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
                  serviceName: {{ $fullName }}
                  servicePort: {{ $servicePort }}
                {{- end }}
          {{- if . }}
          host: {{ tpl . $ | quote }}
          {{- end }}
        {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. helm/minio/templates/ingress.yaml

                backend:
                  service:
                    name: {{ $fullName }}
                    port: 
                      number: {{ $servicePort }}
                {{- else }}
                backend:
                  serviceName: {{ $fullName }}
                  servicePort: {{ $servicePort }}
                {{- end }}
          {{- if . }}
          host: {{ tpl . $ | quote }}
          {{- end }}
        {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/proxy/servicechangetracker.go

    	for i := range service.Spec.Ports {
    		servicePort := &service.Spec.Ports[i]
    		svcPortName := ServicePortName{NamespacedName: svcName, Port: servicePort.Name, Protocol: servicePort.Protocol}
    		baseSvcInfo := newBaseServiceInfo(service, sct.ipFamily, servicePort)
    		if sct.makeServiceInfo != nil {
    			svcPortMap[svcPortName] = sct.makeServiceInfo(servicePort, service, baseSvcInfo)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top