Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for targetpod2 (0.32 sec)

  1. samples/addons/prometheus.yaml

        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
    spec:
      ports:
        - name: http
          port: 9090
          protocol: TCP
          targetPort: 9090
      selector:
        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
      sessionAffinity: None
      type: "ClusterIP"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. tests/integration/security/egress_sidecar_tls_origination_test.go

    kind: ServiceEntry
    metadata:
      name: originate-mtls-for-nginx
    spec:
      hosts:
      - "{{ .to.Config.ClusterLocalFQDN }}"
      ports:
      - number: 80
        name: http-port
        protocol: HTTP
        targetPort: 443
      - number: 443
        name: https-port
        protocol: HTTPS
      resolution: DNS
    `
    	dr := `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    		"If enabled, pilot will only rebuild config for resources that have changed").Get()
    
    	PassthroughTargetPort = env.Register("ENABLE_RESOLUTION_NONE_TARGET_PORT", true,
    		"If enabled, targetPort will be supported for resolution=NONE ServiceEntry").Get()
    
    	PersistOldestWinsHeuristicForVirtualServiceHostMatching = env.Register("PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    }
    
    type (
    	ServicePort = *Port
    	// ServiceInstancePort defines a port that has both a port and targetPort (which distinguishes it from model.Port)
    	// Note: ServiceInstancePort only makes sense in the context of a specific ServiceInstance, because TargetPort depends on a specific instance.
    	ServiceInstancePort struct {
    		ServicePort
    		TargetPort uint32
    	}
    )
    
    func ServiceInstanceToTarget(e *ServiceInstance) ServiceTarget {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/conversion_test.go

    			Name:      "foo",
    			Namespace: "mock",
    		},
    		Spec: corev1.ServiceSpec{
    			Ports: []corev1.ServicePort{
    				{
    					Name:     "test-svc-port",
    					Protocol: "TCP",
    					Port:     8888,
    					TargetPort: intstr.IntOrString{
    						Type:   intstr.String,
    						StrVal: "test-port",
    					},
    				},
    			},
    			Selector: map[string]string{
    				"app": "test-app",
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    		if m[pair] == 0 {
    			delete(m, pair)
    		}
    	}
    }
    
    // updates the topologyToMatchedTermCount map with the specified value
    // for each affinity term if "targetPod" matches ALL terms.
    func (m topologyToMatchedTermCount) updateWithAffinityTerms(
    	terms []framework.AffinityTerm, pod *v1.Pod, node *v1.Node, value int64) {
    	if podMatchesAllAffinityTerms(terms, pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/number_generated_rules_test.go

    		services[i].Spec.ClusterIP = ip.String()
    		services[i].Spec.Ports = []v1.ServicePort{
    			{
    				Name:       fmt.Sprintf("%d", epPort),
    				Protocol:   v1.ProtocolTCP,
    				Port:       int32(basePort + i),
    				TargetPort: intstr.FromInt32(int32(epPort)),
    			},
    		}
    
    		if svc.Spec.Type == v1.ServiceTypeNodePort || svc.Spec.Type == v1.ServiceTypeLoadBalancer {
    			services[i].Spec.Ports[0].NodePort = int32(30000 + i)
    
    		}
    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. samples/security/spire/spire-quickstart.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: spire-server
      namespace: spire
    spec:
      type: NodePort
      ports:
        - name: grpc
          port: 8081
          targetPort: 8081
          protocol: TCP
      selector:
        app: spire-server
    
    ---
    # Service definition for SPIRE server bundle endpoint.
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util_test.go

    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    						MaxRetries: 10,
    					},
    				},
    				Tunnel: &networking.TrafficPolicy_TunnelSettings{
    					TargetHost: "example.com",
    					TargetPort: 8443,
    				},
    			},
    			port: nil,
    			expected: &networking.TrafficPolicy{
    				ConnectionPool: &networking.ConnectionPoolSettings{
    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook.go

    	if getPrometheusScrape(pod) &&
    		enablePrometheusMerge(mesh, pod.ObjectMeta.Annotations) {
    		targetPort := strconv.Itoa(int(mesh.GetDefaultConfig().GetStatusPort()))
    		if cur, f := getPrometheusPort(pod); f {
    			// We have already set the port, assume user is controlling this or, more likely, re-injected
    			// the pod.
    			if cur == targetPort {
    				return nil
    			}
    		}
    		scrape := getPrometheusScrapeConfiguration(pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top