Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for targetpod2 (0.39 sec)

  1. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

      externalName: nginx.example.com
      ports:
      - name: nginx
        port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc2
      namespace: nginx-ns2
    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    --- 
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
  2. pkg/config/analysis/local/defaults.go

        nodePort: 31380
        port: 80
        protocol: TCP
        targetPort: 80
      - name: https
        nodePort: 31390
        port: 443
        protocol: TCP
        targetPort: 443
      - name: tcp
        nodePort: 31400
        port: 31400
        protocol: TCP
        targetPort: 31400
      - name: tls
        nodePort: 31447
        port: 15443
        protocol: TCP
        targetPort: 15443
      selector:
        istio: ingressgateway
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. samples/ratelimit/rate-limit-service.yaml

    metadata:
      name: ratelimit
      labels:
        app: ratelimit
    spec:
      ports:
      - name: http-port
        port: 8080
        targetPort: 8080
        protocol: TCP
      - name: grpc-port
        port: 8081
        targetPort: 8081
        protocol: TCP
      - name: http-debug
        port: 6070
        targetPort: 6070
        protocol: TCP
      selector:
        app: ratelimit
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                    });
    
                    for (MetadataGraphEdge e : sortedExits) {
                        MetadataGraphVertex targetNode = e.getTarget();
                        targetNode.getMd().setArtifactScope(e.getScope());
                        targetNode.getMd().setWhy(e.getSource().getMd().toString());
                        visit(targetNode);
                    }
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/deployment/services.go

    }
    
    // serviceTargetPortsMap build a map of targetPort and ports for each Service. e.g. m["80"][80] -> svc
    func serviceTargetPortsMap(svcs []ServiceSpecWithName) targetPortMap {
    	pm := targetPortMap{}
    	for _, swn := range svcs {
    		svc := swn.Spec
    		for _, sPort := range svc.Ports {
    			p := sPort.TargetPort.String()
    			if p == "0" || p == "" {
    				// By default and for convenience, the targetPort is set to the same value as the port field.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/forward-proxy/service.tmpl.yaml

    kind: Service
    metadata:
      name: external-forward-proxy
    spec:
      selector:
        app: external-forward-proxy
      ports:
    {{- range $idx, $port := .ports }}
      - name: {{$port.Name}}
        port: {{$port.Port}}
        targetPort: {{$port.TargetPort}}
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 280 bytes
    - Viewed (0)
  7. samples/multicluster/gen-eastwest-gateway.sh

                    port: 15021
                    targetPort: 15021
                  - name: tls
                    port: 15443
                    targetPort: 15443
                  - name: tls-istiod
                    port: 15012
                    targetPort: 15012
                  - name: tls-webhook
                    port: 15017
                    targetPort: 15017
    EOF
    )
    
    # Gateway injection template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-svclist-modify.json

            "labels":{
              "app":"mock",
              "status":"replaced"
            }
          },
          "spec":{
            "ports": [{
              "protocol": "TCP",
              "port": 99,
              "targetPort": 9949
            }],
            "selector":{
              "app":"mock"
            }
          }
        },
        {
          "kind":"Service",
          "apiVersion":"v1",
          "metadata":{
            "name":"mock2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 12 03:56:15 UTC 2015
    - 837 bytes
    - Viewed (0)
  9. operator/pkg/translate/strategic_port_merge_test.go

    		Protocol:   v1.ProtocolTCP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	quicPort = &v1.ServicePort{
    		Name:       "http3-quic",
    		Protocol:   v1.ProtocolUDP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	httpPort = &v1.ServicePort{
    		Name:       "http-port",
    		Protocol:   v1.ProtocolTCP,
    		Port:       80,
    		TargetPort: intstr.IntOrString{IntVal: 8080},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/flag_values_enable_egressgateway.golden.yaml

        release: istio
      name: istio-egressgateway
      namespace: istio-system
    spec:
      ports:
      - name: http2
        port: 80
        protocol: TCP
        targetPort: 8080
      - name: https
        port: 443
        protocol: TCP
        targetPort: 8443
      selector:
        app: istio-egressgateway
        istio: egressgateway
      type: ClusterIP
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 566 bytes
    - Viewed (0)
Back to top