Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 493 for 500m (0.04 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/ztunnel.yaml

    metadata:
      name: istio-operator
    spec:
      profile: ambient
      components:
        ztunnel:
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 100m
                memory: 100Mi
              limits:
                cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 12 03:09:45 UTC 2023
    - 327 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
  3. samples/custom-bootstrap/example-app.yaml

          containers:
            - name: helloworld
              image: docker.io/istio/examples-helloworld-v1
              resources:
                requests:
                  cpu: "100m"
              imagePullPolicy: IfNotPresent
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 15:42:01 UTC 2020
    - 654 bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/qos/qos_test.go

    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: v1.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("guaranteed-guaranteed", []v1.Container{
    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: v1.PodQOSGuaranteed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

          containers:
            - name: helloworld
              image: docker.io/istio/examples-helloworld-v2
              resources:
                requests:
                  cpu: "100m"
              imagePullPolicy: IfNotPresent #Always
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
  6. samples/helloworld/gen-helloworld.sh

              value: ${SERVICE_VERSION}
            image: docker.io/istio/examples-helloworld-v1
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 5000
    EOF
    )
    
    OUT=""
    
    # Add the service to the output.
    if [[ "$INCLUDE_SERVICE" == "true" ]]; then
      OUT="${SERVICE_YAML}"
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 19 14:18:35 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    // camel case, separating compound words.
    // Fully-qualified resource typenames are constructed from a DNS-style subdomain, followed by a slash `/` and a name.
    const (
    	// CPU, in cores. (500m = .5 cores)
    	ResourceCPU ResourceName = "cpu"
    	// Memory, in bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024)
    	ResourceMemory ResourceName = "memory"
    	// Volume size, in bytes (e,g. 5Gi = 5GiB = 5 * 1024 * 1024 * 1024)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption_test.go

    			Requests: v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("100m"),
    				v1.ResourceMemory: resource.MustParse("100Mi"),
    			},
    		}),
    		nodeCritical: getPodWithResources(nodeCritical, v1.ResourceRequirements{
    			Requests: v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("100m"),
    				v1.ResourceMemory: resource.MustParse("100Mi"),
    			},
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              protocol: TCP
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
            resources:
              limits:
                cpu: 200m
                memory: 200Mi
              requests:
                cpu: 100m
                memory: 100Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                add:
                - NET_ADMIN
                drop:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			// Node1
    			// Image: gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (600M * 2/3 + 900M * 2/3 - 23M) / (1000M * 3 - 23M) = 32
    
    			// Node2
    			// Image: gcr.io/300:latest 300MB, gcr.io/600:latest 600MB, gcr.io/900:latest 900MB
    			// Score: 100 * (300M * 1/3 + 600M * 2/3 + 900M * 2/3 - 23M) / (1000M *3 - 23M) = 36
    
    			// Node3
    			// Image:
    			// Score: 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top