1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

fix(kube): disable namespace resource quota by default EE-4421 (#8080)

This commit is contained in:
Dakota Walsh 2022-11-23 15:01:41 +13:00 committed by GitHub
parent c28be7aced
commit 6dc1841c14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,7 +179,7 @@ class KubernetesCreateResourcePoolController {
this.defaults = KubernetesResourceQuotaDefaults;
this.formValues = new KubernetesResourcePoolFormValues(this.defaults);
this.formValues.EndpointId = this.endpoint.Id;
this.formValues.HasQuota = true;
this.formValues.HasQuota = false;
this.state = {
actionInProgress: false,