Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 810 for 100M (0.05 sec)

  1. cluster/addons/addon-manager/kube-addons-test.sh

        return 1
      elif ! (kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "100m"); then
        error "limits does not match applied config"
        return 1
      fi
    
      # Changes to addons with mode reconcile should be reflected.
      echo_blue "Changes to manifest should be reflected in the cluster"
      limitrange="${limitrange//100m/50m}"
      create_resource_from_string "${limitrange}" "10" "1" "limitrange.yaml" "${TEST_NS}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission_test.go

    				corev1.ResourceCPU: "100m",
    			}),
    			expected: "cpu=100m",
    		},
    		{
    			input: toResourceList(map[corev1.ResourceName]string{
    				corev1.ResourcePods:                   "10",
    				corev1.ResourceServices:               "10",
    				corev1.ResourceReplicationControllers: "10",
    				corev1.ResourceServicesNodePorts:      "10",
    				corev1.ResourceRequestsCPU:            "100m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/deepcopy_test.go

    	x := &v1alpha12.ResourceMetricSource{}
    	err := yaml.UnmarshalStrict([]byte("targetAverageValue: 100m"), x)
    	t.Log(x)
    	if err != nil {
    		t.Fatal(err)
    	}
    	y := &v1alpha12.MetricSpec{}
    	err = yaml.UnmarshalStrict([]byte(`
    type: Resource
    resource:
      targetAverageValue: 100m`), y)
    	t.Log(y)
    	if err != nil {
    		t.Fatal(err)
    	}
    	z := &v1alpha12.HorizontalPodAutoscalerSpec{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_proto_test.go

    		{dec(0, 0).Dec, Quantity{i: int64Amount{value: 0, scale: 0}, d: infDecAmount{dec(0, 0).Dec}, s: "0", Format: DecimalSI}},
    		{dec(10, 0).Dec, Quantity{i: int64Amount{value: 0, scale: 0}, d: infDecAmount{dec(10, 0).Dec}, s: "10", Format: DecimalSI}},
    		{dec(-10, 0).Dec, Quantity{i: int64Amount{value: 0, scale: 0}, d: infDecAmount{dec(-10, 0).Dec}, s: "-10", Format: DecimalSI}},
    	}
    	for _, testCase := range table2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 07:12:11 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  6. samples/helloworld/helloworld.yaml

            app: helloworld
            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. samples/helloworld/helloworld-dual-stack.yaml

            app: helloworld
            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/resource_annotations.yaml.injected

            kubectl.kubernetes.io/default-logs-container: resource
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            sidecar.istio.io/proxyCPU: 100m
            sidecar.istio.io/proxyCPULimit: 1000m
            sidecar.istio.io/proxyMemory: 1Gi
            sidecar.istio.io/proxyMemoryLimit: 2Gi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

                port: 15021
              periodSeconds: 15
              timeoutSeconds: 3
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. cluster/gce/addons/limit-range/limit-range.yaml

    apiVersion: "v1"
    kind: "LimitRange"
    metadata:
      name: "limits"
      namespace: default
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    spec:
      limits:
        - type: "Container"
          defaultRequest:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 20:10:12 UTC 2020
    - 226 bytes
    - Viewed (0)
Back to top