Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for resourcequotas (0.36 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Chained *wrapperspb.BoolValue `protobuf:"bytes,14,opt,name=chained,proto3" json:"chained,omitempty"`
    	// The resource quotas configration for the CNI DaemonSet.
    	ResourceQuotas *ResourceQuotas `protobuf:"bytes,16,opt,name=resource_quotas,json=resourceQuotas,proto3" json:"resource_quotas,omitempty"`
    	// The k8s resource requests and limits for the istio-cni Pods.
    	Resources *Resources `protobuf:"bytes,17,opt,name=resources,proto3" json:"resources,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Services, number
    	ResourceServices ResourceName = "services"
    	// ReplicationControllers, number
    	ResourceReplicationControllers ResourceName = "replicationcontrollers"
    	// ResourceQuotas, number
    	ResourceQuotas ResourceName = "resourcequotas"
    	// ResourceSecrets, number
    	ResourceSecrets ResourceName = "secrets"
    	// ResourceConfigMaps, number
    	ResourceConfigMaps ResourceName = "configmaps"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Services, number
    	ResourceServices ResourceName = "services"
    	// ReplicationControllers, number
    	ResourceReplicationControllers ResourceName = "replicationcontrollers"
    	// ResourceQuotas, number
    	ResourceQuotas ResourceName = "resourcequotas"
    	// ResourceSecrets, number
    	ResourceSecrets ResourceName = "secrets"
    	// ResourceConfigMaps, number
    	ResourceConfigMaps ResourceName = "configmaps"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ResourceQuota)(nil), (*core.ResourceQuota)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ResourceQuota_To_core_ResourceQuota(a.(*v1.ResourceQuota), b.(*core.ResourceQuota), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ResourceQuota)(nil), (*v1.ResourceQuota)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Fix incorrect calculation for ResourceQuota with PriorityClass as its scope. ([#117828](https://github.com/kubernetes/kubernetes/pull/117828), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top