Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for resourcequotas (0.26 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	replicasetconfig "k8s.io/kubernetes/pkg/controller/replicaset/config"
    	replicationconfig "k8s.io/kubernetes/pkg/controller/replication/config"
    	resourcequotaconfig "k8s.io/kubernetes/pkg/controller/resourcequota/config"
    	serviceaccountconfig "k8s.io/kubernetes/pkg/controller/serviceaccount/config"
    	statefulsetconfig "k8s.io/kubernetes/pkg/controller/statefulset/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    }
    
    // ValidateResourceQuota tests if required fields in the ResourceQuota are set.
    func ValidateResourceQuota(resourceQuota *core.ResourceQuota) field.ErrorList {
    	allErrs := ValidateObjectMeta(&resourceQuota.ObjectMeta, true, ValidateResourceQuotaName, field.NewPath("metadata"))
    
    	allErrs = append(allErrs, ValidateResourceQuotaSpec(&resourceQuota.Spec, field.NewPath("spec"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

    ENABLE_ADMISSION_PLUGINS=${ENABLE_ADMISSION_PLUGINS:-"NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,Priority,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota,NodeRestriction"}
    DISABLE_ADMISSION_PLUGINS=${DISABLE_ADMISSION_PLUGINS:-""}
    ADMISSION_CONTROL_CONFIG_FILE=${ADMISSION_CONTROL_CONFIG_FILE:-""}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Specifies the output format of the exposed resources, defaults to "1"
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity divisor = 3;
    }
    
    // ResourceQuota sets aggregate quota restrictions enforced per namespace
    message ResourceQuota {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // Specifies the output format of the exposed resources, defaults to "1"
      // +optional
      optional .k8s.io.apimachinery.pkg.api.resource.Quantity divisor = 3;
    }
    
    // ResourceQuota sets aggregate quota restrictions enforced per namespace
    message ResourceQuota {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    apiVersion: apiserver.k8s.io/v1alpha1
    kind: AdmissionConfiguration
    plugins:
    EOF
    
        # Add resourcequota config to limit critical pods to kube-system by default
        cat <<EOF >>/etc/srv/kubernetes/admission_controller_config.yaml
    - name: "ResourceQuota"
      configuration:
        apiVersion: apiserver.config.k8s.io/v1
        kind: ResourceQuotaConfiguration
        limitedResources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (ResourceQuota) SwaggerDoc() map[string]string {
    	return map_ResourceQuota
    }
    
    var map_ResourceQuotaList = map[string]string{
    	"":         "ResourceQuotaList is a list of ResourceQuota items.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *ResourceQuota) Reset()      { *m = ResourceQuota{} }
    func (*ResourceQuota) ProtoMessage() {}
    func (*ResourceQuota) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{174}
    }
    func (m *ResourceQuota) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ResourceQuota) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    				return printControllerRevision(&apps.ControllerRevision{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "ResourceQuota",
    			printer: func() ([]metav1.TableRow, error) {
    				return printResourceQuota(&api.ResourceQuota{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "PriorityClass",
    			printer: func() ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Fixed an issue where a `CronJob` could fail to clean up Jobs when the `ResourceQuota` for `Jobs` had been reached. ([#119776](https://github.com/kubernetes/kubernetes/pull/119776), [@ASverdlov](https://github.com/ASverdlov))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top