Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,629 for 80 (0.02 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_ingress_v2.golden.yaml

      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
            averageUtilization: 80
            type: Utilization
      - resource:
          name: memory
          target:
            averageUtilization: 80
            type: Utilization
      minReplicas: 1
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: istio-ingressgateway
    
    ---
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/benchmarks/virtualservice.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    # Set up .Services VirtualServices, each pointing to a different Service
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway_test.go

    			Labels: map[string]string{},
    		},
    	}
    	gatewayServiceTargets := []ServiceTarget{
    		{
    			Service: svc,
    			Port: ServiceInstancePort{
    				ServicePort: &Port{Port: 80},
    				TargetPort:  80,
    			},
    		},
    		{
    			Service: svc,
    			Port: ServiceInstancePort{
    				ServicePort: &Port{Port: 443},
    				TargetPort:  443,
    			},
    		},
    		{
    			Service: svc,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pkg/controlplane/reconcilers/endpointsadapter_test.go

    	// even if an Endpoints resource includes an IPv6 address, it should not be
    	// included in the corresponding EndpointSlice.
    	endpoints2, _ := generateEndpointsAndSlice("foo", "testing", []int{80}, []string{"10.1.2.5", "10.1.2.6", "1234::5678:0000:0000:9abc:def0"})
    	_, epSlice2 := generateEndpointsAndSlice("foo", "testing", []int{80}, []string{"10.1.2.5", "10.1.2.6"})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/helper_test.go

            - mesh # from sidecars, route to egress gateway service
            port: 80
          route:
          - destination:
              host: istio-egressgateway.istio-system.svc.cluster.local
              port:
                number: 80
            weight: 100
        - match:
          - gateways:
            - istio-egressgateway
            port: 80
          route:
          - destination:
              host: some-external-site.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/empty.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 03:45:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-translation.yaml

    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 80
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 672 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/compute.go

    		// The flow looks like this (with time on the X axis):
    		// v1.8.0-alpha.1 -> v1.8.0-alpha.2 -> v1.8.0-alpha.3 | release-1.8 branch | v1.8.0-beta.0 -> v1.8.0-beta.1 -> v1.8.0-beta.2 -> v1.8.0-rc.1 -> v1.8.0 -> v1.8.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/legacy_test.go

    	return string(b)
    }
    
    func TestLogSymLink(t *testing.T) {
    	as := assert.New(t)
    	containerLogsDir := "/foo/bar"
    	podFullName := randStringBytes(128)
    	containerName := randStringBytes(70)
    	containerID := randStringBytes(80)
    	// The file name cannot exceed 255 characters. Since .log suffix is required, the prefix cannot exceed 251 characters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 12:34:58 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/handlers_test.go

    			container: &v1.Container{
    				Ports: []v1.ContainerPort{{Name: "foo", ContainerPort: int32(80)}},
    			},
    			expected: 80,
    		},
    		{
    			container:  &v1.Container{},
    			stringPort: "80",
    			expected:   80,
    		},
    		{
    			container: &v1.Container{
    				Ports: []v1.ContainerPort{
    					{Name: "bar", ContainerPort: int32(80)},
    				},
    			},
    			stringPort: "foo",
    			expected:   -1,
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top