Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for targetpod2 (0.41 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit.go

    func (f *Fit) isResourceScaleDown(targetPod, originalPod, modifiedPod *v1.Pod) bool {
    	if modifiedPod.UID != targetPod.UID && modifiedPod.Spec.NodeName == "" {
    		// If the update event is not for targetPod and a scheduled Pod,
    		// it wouldn't make targetPod schedulable.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare_test.go

      name: istio-pilot
      namespace: istio-system
    spec:
      type: ClusterIP
      ports:
      - name: grpc-xds
        port: 15010
        protocol: TCP
        targetPort: 15010
      - name: http-monitoring
        port: 15014
        protocol: TCP
        targetPort: 15014
      selector:
        istio: pilot
    `
    
    	manifestDiffTests := []struct {
    		desc        string
    		yamlStringA string
    		yamlStringB string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  3. operator/cmd/mesh/test-util_test.go

    }
    
    // portVal returns a map having service port type. A value of -1 for port or targetPort leaves those keys unset.
    func portVal(name string, port, targetPort int64) map[string]any {
    	out := make(map[string]any)
    	if name != "" {
    		out["name"] = name
    	}
    	if port != -1 {
    		out["port"] = port
    	}
    	if targetPort != -1 {
    		out["targetPort"] = targetPort
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. pkg/apis/core/fuzzer/fuzzer.go

    				c.Fuzz(&ss.Ports[0])
    			}
    			for i := range ss.Ports {
    				switch ss.Ports[i].TargetPort.Type {
    				case intstr.Int:
    					ss.Ports[i].TargetPort.IntVal = 1 + ss.Ports[i].TargetPort.IntVal%65535 // non-zero
    				case intstr.String:
    					ss.Ports[i].TargetPort.StrVal = "x" + ss.Ports[i].TargetPort.StrVal // non-empty
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter_test.go

    				Protocol:   "CONNECT",
    				TargetHost: "example.com",
    				TargetPort: 8443,
    			},
    		},
    	}
    	tunnelingEnabledWithoutProtocol := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    			Tunnel: &networking.TrafficPolicy_TunnelSettings{
    				TargetHost: "example.com",
    				TargetPort: 8443,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					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,
    				},
    			},
    		},
    	}})
    
    	s.deleteServiceEntry(t, "name1", testNS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/kube/krt/collection_test.go

    		Named:         NewNamed(pod),
    		MatchingSizes: 1,
    	}})
    	tt.Empty()
    
    	largePod2 := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name-large2",
    			Namespace: "namespace",
    			Labels:    map[string]string{"size": "large"},
    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.7"},
    	}
    	pc.CreateOrUpdateStatus(largePod2)
    	tt.WaitOrdered("update/namespace/name")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

        description: "Two services selecting the same workload with the same targetPort MUST refer to the same port."
        template: "This deployment %s is associated with multiple services %v using targetPort %q but different ports: %v."
        args:
          - name: deployment
            type: string
          - name: services
            type: "[]string"
          - name: targetPort
            type: string
          - name: ports
            type: "[]int32"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/values.yaml

          # checks always work. https://github.com/istio/istio/issues/12503
          - port: 15021
            targetPort: 15021
            name: status-port
            protocol: TCP
          - port: 80
            targetPort: 8080
            name: http2
            protocol: TCP
          - port: 443
            targetPort: 8443
            name: https
            protocol: TCP
    
          # Scalability tuning
          # replicaCount: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// Description: Two services selecting the same workload with the same targetPort MUST refer to the same port.
    	DeploymentConflictingPorts = diag.NewMessageType(diag.Warning, "IST0137", "This deployment %s is associated with multiple services %v using targetPort %q but different ports: %v.")
    
    	// GatewayDuplicateCertificate defines a diag.MessageType for message "GatewayDuplicateCertificate".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top