Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 385 for targetpod2 (0.14 sec)

  1. samples/jwt-server/jwt-server.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: jwt-server
      labels:
        app: jwt-server
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: https
        port: 8443
        targetPort: 8443
      selector:
        app: jwt-server
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: jwt-cert-key-secret
    # command to generate certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml

        apiVersion: v1
        metadata:
          name: frontend
        spec:
          selector:
            app: hello
            tier: frontend
          ports:
            - protocol: "TCP"
              port: 80
              targetPort: 80
          type: LoadBalancer
    
      - apiVersion: apps.openshift.io/v1
        kind: DeploymentConfig
        metadata:
          name: hello
        spec:
          replicas: 7
          template:
            metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                return resolvedVariant;
            }
            List<NodeState> targetNodes = findTargetNodes();
            assert !targetNodes.isEmpty();
            for (NodeState targetNode : targetNodes) {
                if (targetNode.isSelected()) {
                    resolvedVariant = targetNode;
                    return resolvedVariant;
                }
            }
            return null;
        }
    
        private List<NodeState> findTargetNodes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/gateway/gateway.go

    							// Because the Gateway's server port is the port on which the proxy should listen for incoming connections,
    							// the actual port associated with the service is the `TargetPort` that reaches the sidecar *workload instances*.
    							if tp := port.TargetPort.IntValue(); tp != 0 {
    								servicePorts[uint32(tp)] = true
    								if _, ok := portMapping[uint32(port.Port)]; !ok {
    									portMapping[uint32(port.Port)] = uint32(tp)
    								}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-list.json

              "name":"mock",
              "labels":{
                "app":"mock"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
              }
            }
          },
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		preserveDIP = false
    		localTrafficDSR = false
    	}
    	// targetPort is zero if it is specified as a name in port.TargetPort.
    	// Its real value would be got later from endpoints.
    	targetPort := 0
    	if port.TargetPort.Type == intstr.Int {
    		targetPort = port.TargetPort.IntValue()
    	}
    
    	info.preserveDIP = preserveDIP
    	info.targetPort = targetPort
    	info.hns = proxier.hns
    	info.localTrafficDSR = localTrafficDSR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		// Get pod IPs for service B.
    		pods, err := c.PodsForSelector(context.TODO(), destNS, "app="+destName)
    		if err == nil {
    			for _, destPod := range pods.Items {
    				info.TargetPod = append(info.TargetPod, destPod.Status.PodIP)
    			}
    			sort.Strings(info.TargetPod)
    		}
    
    		// Get the East-West Gateway IP
    		svc, err := c.Kube().CoreV1().Services(istioNS).Get(context.TODO(), "istio-eastwestgateway", metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-list-modify.json

              "labels":{
                "app":"mock",
                "status":"replaced"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
              }
            }
          },
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

      ports:
      - name: https
        port: 443
        protocol: TCP
        targetPort: 8443
      selector:
        old: test
    `),
    			applied: []byte(`
    # All accepted while using the same field manager
    
    apiVersion: v1
    kind: Service
    metadata:
      name: test
    spec:
      ports:
      - name: https
        port: 443
        protocol: TCP
        targetPort: 8444
      selector:
        new: test
    `),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/guestbook/redis-master-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: redis-master
      labels:
        app: redis
        role: master
        tier: backend
    spec:
      ports:
      - port: 6379
        targetPort: 6379
      selector:
        app: redis
        role: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 233 bytes
    - Viewed (0)
Back to top