Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 376 for servicePort (0.23 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    		}, {
    			JumpChain: string(kubeMarkMasqChain), MatchSet: "",
    		}},
    	}
    	checkIptables(t, ipt, epIpt)
    }
    
    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
    - 186.8K bytes
    - Viewed (0)
  2. operator/pkg/translate/translate.go

    ) (*object.K8sObject, error) {
    	var basePorts []*v1.ServicePort
    	bps, _, err := unstructured.NestedSlice(oo.Unstructured(), "spec", "ports")
    	if err != nil {
    		return nil, err
    	}
    	bby, err := json.Marshal(bps)
    	if err != nil {
    		return nil, err
    	}
    	if err = json.Unmarshal(bby, &basePorts); err != nil {
    		return nil, err
    	}
    	overlayPorts := make([]*v1.ServicePort, 0, len(msvc.GetPorts()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        },
        "proxy_init": {
          "image": "proxyv2"
        },
        "remotePilotAddress": "",
        "sds": {
          "token": {
            "aud": "istio-ca"
          }
        },
        "sts": {
          "servicePort": 0
        },
        "tag": "latest",
        "variant": ""
      },
      "istio_cni": {
        "chained": true,
        "enabled": false,
        "provider": "default"
      },
      "pilot": {
        "cni": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "name1",
    					Services: map[string]*workloadapi.PortList{
    						"ns1/se.istio.io": {
    							Ports: []*workloadapi.Port{
    								{
    									ServicePort: 80,
    									TargetPort:  8081, // port is overridden by inlined WE port
    								},
    							},
    						},
    					},
    					ClusterId: testC,
    				},
    			},
    		},
    	}})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/files/gateway-injection-template.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.lifecycle }}
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/mesh_network_test.go

    				Labels: map[string]string{
    					label.TopologyNetwork.Name: "network-1",
    				},
    			},
    			Spec: corev1.ServiceSpec{
    				Type:  corev1.ServiceTypeLoadBalancer,
    				Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    			},
    			Status: corev1.ServiceStatus{
    				LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{IP: "3.3.3.3"}}},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

      gateways:
      - gw-{{ .To.ServiceName }}
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_test.go

    		Hostname: host.Name("test1"),
    	}
    	s.MemRegistry.AddService(svc)
    	if _, err := ads.Wait(time.Second*10, watchAll...); err != nil {
    		t.Fatal(err)
    	}
    	i := &model.ServiceInstance{
    		Service:     svc,
    		ServicePort: svc.Ports[0],
    		Endpoint: &model.IstioEndpoint{
    			Address:        "1.2.3.4",
    			ServiceAccount: "spiffe://td1/ns/def/sa/def",
    			HealthStatus:   model.UnHealthy,
    		},
    	}
    	s.MemRegistry.AddInstance(i)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/controller_test.go

    				},
    			},
    		},
    	}
    
    	serviceConfig := corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "mock",
    			Name:      "bar",
    		},
    		Spec: corev1.ServiceSpec{
    			Ports: []corev1.ServicePort{
    				{
    					Name: "http",
    					Port: 8080,
    				},
    			},
    		},
    	}
    
    	controller, client := newFakeController()
    	ingress := clienttest.NewWriter[*net.Ingress](t, client)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. pkg/proxy/topology.go

    //
    //   - An indication of whether the service has any endpoints reachable from anywhere in the
    //     cluster. (This may be true even if allReachableEndpoints is empty.)
    func CategorizeEndpoints(endpoints []Endpoint, svcInfo ServicePort, nodeLabels map[string]string) (clusterEndpoints, localEndpoints, allReachableEndpoints []Endpoint, hasAnyEndpoints bool) {
    	var useTopology, useServingTerminatingEndpoints bool
    
    	if svcInfo.UsesClusterEndpoints() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top