Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 385 for targetpod2 (0.17 sec)

  1. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external
      namespace: istio-system
    spec:
      hosts:
      - istio-ingressgateway.istio-system.svc.cluster.local
      ports:
      - number: 80
        targetPort: 8080
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
        labels:
          istio.io/benchmark: "true"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. operator/pkg/translate/translate_test.go

              ports:
              - name: http2
                port: 80
                targetPort: 8080
    `
    	const iopString2 = `
    components:
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            service:
              ports:
              - name: http2
                port: 80
                targetPort: 8080
                appProtocol: HTTP
    `
    	cases := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    		Spec: v1.ServiceSpec{
    			Selector: map[string]string{"foo": "bar"},
    			Ports: []v1.ServicePort{
    				{Name: "port0", Port: 80, Protocol: "TCP", TargetPort: intstr.FromInt32(8080)},
    				{Name: "port1", Port: 88, Protocol: "TCP", TargetPort: intstr.FromInt32(8088)},
    			},
    		},
    	})
    	err := endpoints.syncService(tCtx, "other/foo")
    	if err != nil {
    		t.Errorf("Unexpected error syncing service %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. manifests/charts/base/templates/services.yaml

      {{- end }}
      namespace: {{ .Release.Namespace }}
    spec:
      ports:
      - port: 15012
        name: tcp-istiod
        protocol: TCP
      - port: 443
        targetPort: 15017
        name: tcp-webhook
        protocol: TCP
      {{- if not (regexMatch "^([0-9]*\\.){3}[0-9]*$" .Values.global.remotePilotAddress) }}
      # if the remotePilotAddress is not an IP addr, we use ExternalName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/services.yaml

      {{- end }}
      namespace: {{ .Release.Namespace }}
    spec:
      ports:
      - port: 15012
        name: tcp-istiod
        protocol: TCP
      - port: 443
        targetPort: 15017
        name: tcp-webhook
        protocol: TCP
      {{- if not (regexMatch "^([0-9]*\\.){3}[0-9]*$" .Values.global.remotePilotAddress) }}
      # if the remotePilotAddress is not an IP addr, we use ExternalName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/backends/nginx/nginx.yaml

    metadata:
      name: nginx
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx
      labels:
        app: nginx
        service: nginx
    spec:
      ports:
        - name: http
          port: 8080
          targetPort: 80
      selector:
        app: nginx
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
    spec:
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tests/integration/security/fuzz/backends/apache/apache.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: apache
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: apache
      labels:
        app: apache
    spec:
      ports:
      - name: http
        port: 8080
        targetPort: 80
      selector:
        app: apache
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: apache
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: apache
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-8002
    spec:
      ports:
      - name: http2
        nodePort: 31380
        port: 8002
        protocol: TCP
        targetPort: 80
      selector:
        myapp: ingressgateway-8002
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-8001
    spec:
      ports:
      - name: http2
        port: 8001
        protocol: TCP
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top