Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 385 for targetpod2 (0.18 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/helm_values_enablement.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: Fri Dec 01 22:07:45 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml

      loadBalancerSourceRanges:
      - loadBalancerSourceRangesValue
      ports:
      - appProtocol: appProtocolValue
        name: nameValue
        nodePort: 5
        port: 3
        protocol: protocolValue
        targetPort: targetPortValue
      publishNotReadyAddresses: true
      selector:
        selectorKey: selectorValue
      sessionAffinity: sessionAffinityValue
      sessionAffinityConfig:
        clientIP:
          timeoutSeconds: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Service.yaml

      loadBalancerSourceRanges:
      - loadBalancerSourceRangesValue
      ports:
      - appProtocol: appProtocolValue
        name: nameValue
        nodePort: 5
        port: 3
        protocol: protocolValue
        targetPort: targetPortValue
      publishNotReadyAddresses: true
      selector:
        selectorKey: selectorValue
      sessionAffinity: sessionAffinityValue
      sessionAffinityConfig:
        clientIP:
          timeoutSeconds: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.yaml

      loadBalancerSourceRanges:
      - loadBalancerSourceRangesValue
      ports:
      - appProtocol: appProtocolValue
        name: nameValue
        nodePort: 5
        port: 3
        protocol: protocolValue
        targetPort: targetPortValue
      publishNotReadyAddresses: true
      selector:
        selectorKey: selectorValue
      sessionAffinity: sessionAffinityValue
      sessionAffinityConfig:
        clientIP:
          timeoutSeconds: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcecho_test.go

    apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: echo-app
      name: echo-app
      namespace: default
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: echo
      ports:
      - name: grpc
        targetPort: grpc
        port: 7070
    `,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/cds_test.go

    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 80
        targetPort: 1234
        protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: se5
    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 80
        targetPort: 999
        protocol: HTTP
      resolution: DNS
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults_test.go

    	out := obj.(*v1.Service)
    	if out.Spec.Ports[0].TargetPort != intstr.FromInt32(1234) {
    		t.Errorf("Expected TargetPort to be defaulted, got %v", out.Spec.Ports[0].TargetPort)
    	}
    
    	in = &v1.Service{Spec: v1.ServiceSpec{Ports: []v1.ServicePort{{Port: 1234, TargetPort: intstr.FromInt32(5678)}}}}
    	obj = roundTrip(t, runtime.Object(in))
    	out = obj.(*v1.Service)
    	if out.Spec.Ports[0].TargetPort != intstr.FromInt32(5678) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. samples/httpbin/httpbin.yaml

    metadata:
      name: httpbin
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: httpbin
      labels:
        app: httpbin
        service: httpbin
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8080
      selector:
        app: httpbin
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: httpbin
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: httpbin
          version: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top