Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 210 for servicePort (0.18 sec)

  1. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            {{- end}}
            {{- if .Values.global.logAsJson }}
              - --log_as_json
            {{- end }}
            {{- if .Values.global.sts.servicePort }}
              - --stsPort={{ .Values.global.sts.servicePort }}
            {{- end }}
            {{- if not $gateway.runAsRoot }}
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		},
    		Spec:   v1.ServiceSpec{},
    		Status: v1.ServiceStatus{},
    	}
    	svcFunc(svc)
    	return svc
    }
    
    func addTestPort(array []v1.ServicePort, name string, protocol v1.Protocol, port, nodeport int32, targetPort int) []v1.ServicePort {
    	svcPort := v1.ServicePort{
    		Name:       name,
    		Protocol:   protocol,
    		Port:       port,
    		NodePort:   nodeport,
    		TargetPort: intstr.FromInt32(int32(targetPort)),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/multiplecontrolplanes/main_test.go

    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    					tc.from[0].CallOrFail(t, echo.CallOptions{
    						To: tc.to,
    						Port: echo.Port{
    							Protocol:    protocol.HTTP,
    							ServicePort: 80,
    						},
    						Check: check.And(
    							check.ErrorOrStatus(tc.statusCode),
    						),
    					})
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - --log_output_level
            - {{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level | quote}}
          {{- if .Values.global.sts.servicePort }}
            - --stsPort={{ .Values.global.sts.servicePort }}
          {{- end }}
          {{- if .Values.global.logAsJson }}
            - --log_as_json
          {{- end }}
          {{- if .Values.global.proxy.lifecycle }}
            lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    						Labels: map[string]string{"k8s-app": "kube-dns",
    							"kubernetes.io/name": "coredns"},
    						Namespace: "kube-system",
    					},
    					Spec: v1.ServiceSpec{
    						Ports: []v1.ServicePort{
    							{
    								Name:     "dns",
    								Port:     53,
    								Protocol: v1.ProtocolUDP,
    								TargetPort: intstr.IntOrString{
    									Type:   0,
    									IntVal: 53,
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. tests/integration/security/mtls_healthcheck_test.go

    	var healthcheck echo.Instance
    	cfg := echo.Config{
    		Namespace: ns,
    		Service:   name,
    		Ports: []echo.Port{{
    			Name:         "http-8080",
    			Protocol:     protocol.HTTP,
    			ServicePort:  8080,
    			WorkloadPort: 8080,
    		}},
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	GatewayNameLabel          string
    }
    
    func extractServicePorts(gw gateway.Gateway) []corev1.ServicePort {
    	tcp := strings.ToLower(string(protocol.TCP))
    	svcPorts := make([]corev1.ServicePort, 0, len(gw.Spec.Listeners)+1)
    	svcPorts = append(svcPorts, corev1.ServicePort{
    		Name:        "status-port",
    		Port:        int32(15021),
    		AppProtocol: &tcp,
    	})
    	portNums := sets.New[int32]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/network_test.go

    			label.TopologyNetwork.Name: nw,
    		}},
    		Spec: corev1.ServiceSpec{
    			Type:  corev1.ServiceTypeLoadBalancer,
    			Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    		},
    		Status: corev1.ServiceStatus{LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{
    			IP:    "2.3.4.6",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. tests/integration/security/pass_through_filter_chain_test.go

    									ToWorkload: to.Instances()[0],
    									Port: echo.Port{
    										Protocol: p.Protocol,
    
    										// The ServicePort tells the client which port to connect to.
    										// This is a bit hacky, but since we're connecting directly
    										// to a pod, we just set it to the WorkloadPort.
    										ServicePort: p.WorkloadPort,
    									},
    									Count: echo.DefaultCallsPerWorkload() * to.WorkloadsOrFail(t).Len(),
    								}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

            - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
          {{- if .Values.global.sts.servicePort }}
            - --stsPort={{ .Values.global.sts.servicePort }}
          {{- end }}
          {{- if .Values.global.logAsJson }}
            - --log_as_json
          {{- end }}
          {{- if .Values.global.proxy.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top