@rancher/shell 3.0.9-rc.5 → 3.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/images/providers/oci-open-containers.svg +22 -0
- package/assets/images/providers/traefik.png +0 -0
- package/assets/styles/themes/_dark.scss +2 -0
- package/assets/styles/themes/_light.scss +2 -0
- package/assets/styles/themes/_modern.scss +6 -0
- package/assets/translations/en-us.yaml +129 -25
- package/components/CruResource.vue +3 -1
- package/components/ExplorerProjectsNamespaces.vue +12 -12
- package/components/IconOrSvg.vue +61 -42
- package/components/Resource/Detail/Card/StatusCard/__tests__/StatusCard.test.ts +109 -0
- package/components/Resource/Detail/Card/StatusCard/index.vue +21 -4
- package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +19 -2
- package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +19 -11
- package/components/Resource/Detail/ResourcePopover/__tests__/index.test.ts +12 -0
- package/components/Resource/Detail/ResourcePopover/index.vue +2 -0
- package/components/Resource/Detail/ResourceRow.vue +2 -2
- package/components/ResourceList/index.vue +7 -4
- package/components/SortableTable/index.vue +2 -2
- package/components/Window/ContainerLogs.vue +48 -37
- package/components/fleet/FleetClusterTargets/TargetsList.vue +2 -2
- package/components/fleet/FleetClusterTargets/index.vue +6 -1
- package/components/fleet/GitRepoAdvancedTab.vue +333 -0
- package/components/fleet/GitRepoMetadataTab.vue +43 -0
- package/components/fleet/GitRepoRepositoryTab.vue +101 -0
- package/components/fleet/GitRepoTargetTab.vue +77 -0
- package/components/fleet/HelmOpAdvancedTab.vue +247 -0
- package/components/fleet/HelmOpChartTab.vue +158 -0
- package/components/fleet/HelmOpMetadataTab.vue +46 -0
- package/components/fleet/HelmOpTargetTab.vue +84 -0
- package/components/fleet/HelmOpValuesTab.vue +147 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +119 -70
- package/components/form/BannerSettings.vue +2 -2
- package/components/form/NodeScheduling.vue +81 -7
- package/components/form/NotificationSettings.vue +2 -2
- package/components/form/PodAffinity.vue +1 -36
- package/components/form/ResourceLabeledSelect.vue +8 -4
- package/components/form/ResourceQuota/Namespace.vue +30 -9
- package/components/form/ResourceQuota/NamespaceRow.vue +25 -7
- package/components/form/ResourceQuota/Project.vue +140 -82
- package/components/form/ResourceQuota/ResourceQuotaEntry.vue +145 -0
- package/components/form/ResourceQuota/__tests__/Namespace.test.ts +307 -0
- package/components/form/ResourceQuota/__tests__/NamespaceRow.test.ts +281 -0
- package/components/form/ResourceQuota/__tests__/Project.test.ts +274 -27
- package/components/form/ResourceQuota/__tests__/ResourceQuotaEntry.test.ts +215 -0
- package/components/form/SchedulingCustomization.vue +14 -6
- package/components/form/SelectOrCreateAuthSecret.vue +107 -18
- package/components/form/__tests__/NodeScheduling.test.ts +12 -9
- package/components/form/__tests__/PodAffinity.test.ts +21 -2
- package/components/form/__tests__/SchedulingCustomization.test.ts +240 -0
- package/components/formatter/ClusterLink.vue +8 -0
- package/components/formatter/SecretOrigin.vue +79 -0
- package/config/labels-annotations.js +7 -6
- package/config/pagination-table-headers.js +6 -4
- package/config/product/explorer.js +1 -11
- package/config/product/manager.js +0 -1
- package/config/query-params.js +3 -0
- package/config/settings.ts +15 -2
- package/config/table-headers.js +21 -17
- package/config/types.js +23 -8
- package/detail/fleet.cattle.io.cluster.vue +1 -1
- package/detail/workload/index.vue +11 -16
- package/dialog/DeactivateDriverDialog.vue +1 -1
- package/dialog/FeatureFlagListDialog.vue +1 -1
- package/dialog/Ipv6NetworkingDialog.vue +156 -0
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +1 -1
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +1 -0
- package/edit/__tests__/management.cattle.io.project.test.js +56 -128
- package/edit/auth/oidc.vue +1 -1
- package/edit/catalog.cattle.io.clusterrepo.vue +155 -25
- package/edit/fleet.cattle.io.gitrepo.vue +153 -283
- package/edit/fleet.cattle.io.helmop.vue +190 -332
- package/edit/management.cattle.io.project.vue +5 -42
- package/edit/management.cattle.io.setting.vue +6 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/__tests__/auth.spec.ts +145 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/__tests__/index.test.ts +202 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/__tests__/tls.spec.ts +226 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +24 -21
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/__tests__/opsgenie.spec.ts +157 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/__tests__/pagerduty.spec.ts +132 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/__tests__/slack.spec.ts +108 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +2 -1
- package/edit/monitoring.coreos.com.receiver/__tests__/auth.spec.ts +165 -0
- package/edit/monitoring.coreos.com.receiver/__tests__/index.test.ts +153 -0
- package/edit/monitoring.coreos.com.receiver/__tests__/tls.spec.ts +115 -0
- package/edit/monitoring.coreos.com.receiver/types/__tests__/email.spec.ts +86 -0
- package/edit/monitoring.coreos.com.receiver/types/__tests__/opsgenie.spec.ts +209 -0
- package/edit/monitoring.coreos.com.receiver/types/__tests__/pagerduty.spec.ts +105 -0
- package/edit/monitoring.coreos.com.receiver/types/__tests__/slack.spec.ts +92 -0
- package/edit/monitoring.coreos.com.receiver/types/__tests__/webhook.spec.ts +131 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +55 -24
- package/edit/provisioning.cattle.io.cluster/__tests__/Networking.test.ts +1 -103
- package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +13 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2-fleet-cluster-agent.test.ts +283 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +65 -49
- package/edit/provisioning.cattle.io.cluster/ingress/IngressCards.vue +114 -0
- package/edit/provisioning.cattle.io.cluster/ingress/IngressConfiguration.vue +158 -0
- package/edit/provisioning.cattle.io.cluster/rke2.vue +167 -69
- package/edit/provisioning.cattle.io.cluster/shared.ts +36 -1
- package/edit/provisioning.cattle.io.cluster/tabs/AgentConfiguration.vue +2 -1
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +70 -7
- package/edit/provisioning.cattle.io.cluster/tabs/Ingress.vue +343 -0
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +2 -1
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/__tests__/S3Config.test.ts +13 -1
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +10 -44
- package/edit/secret/index.vue +1 -1
- package/edit/token.vue +68 -29
- package/edit/workload/__tests__/index.test.ts +2 -37
- package/edit/workload/index.vue +6 -2
- package/edit/workload/mixins/workload.js +0 -32
- package/list/__tests__/management.cattle.io.setting.test.ts +198 -0
- package/list/management.cattle.io.setting.vue +13 -0
- package/list/provisioning.cattle.io.cluster.vue +50 -1
- package/list/secret.vue +4 -9
- package/list/service.vue +6 -8
- package/machine-config/amazonec2.vue +11 -4
- package/machine-config/components/EC2Networking.vue +46 -30
- package/machine-config/components/__tests__/EC2Networking.test.ts +7 -7
- package/machine-config/components/__tests__/utils/vpcSubnetMockData.js +0 -9
- package/machine-config/digitalocean.vue +3 -3
- package/models/__tests__/chart.test.ts +2 -2
- package/models/__tests__/namespace.test.ts +11 -0
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +96 -0
- package/models/__tests__/workload.test.ts +42 -1
- package/models/catalog.cattle.io.clusterrepo.js +30 -4
- package/models/chart.js +3 -3
- package/models/ext.cattle.io.token.js +48 -0
- package/models/kontainerdriver.js +2 -2
- package/models/namespace.js +7 -1
- package/models/nodedriver.js +2 -2
- package/models/provisioning.cattle.io.cluster.js +28 -7
- package/models/secret.js +0 -17
- package/models/service.js +44 -1
- package/models/token.js +4 -0
- package/models/workload.js +12 -6
- package/package.json +1 -1
- package/pages/account/index.vue +96 -67
- package/pages/auth/setup.vue +5 -14
- package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +45 -18
- package/pages/c/_cluster/apps/charts/__tests__/install.test.ts +4 -1
- package/pages/c/_cluster/apps/charts/index.vue +82 -3
- package/pages/c/_cluster/apps/charts/install.vue +317 -42
- package/pages/c/_cluster/explorer/tools/index.vue +1 -1
- package/pages/c/_cluster/manager/cloudCredential/index.vue +1 -1
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +5 -4
- package/pages/c/_cluster/settings/index.vue +3 -1
- package/pages/c/_cluster/uiplugins/index.vue +1 -1
- package/plugins/dashboard-store/__tests__/getters.test.ts +108 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +27 -0
- package/plugins/dashboard-store/actions.js +3 -8
- package/plugins/dashboard-store/getters.js +7 -5
- package/plugins/dashboard-store/mutations.js +4 -1
- package/plugins/dashboard-store/resource-class.js +3 -3
- package/plugins/steve/__tests__/steve-class.test.ts +102 -141
- package/plugins/steve/steve-class.js +12 -3
- package/plugins/steve/steve-pagination-utils.ts +6 -2
- package/rancher-components/RcIcon/types.ts +2 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +72 -20
- package/store/prefs.js +3 -0
- package/types/aws-sdk.d.ts +121 -0
- package/types/resources/node.ts +15 -0
- package/types/shell/index.d.ts +537 -506
- package/types/store/pagination.types.ts +5 -5
- package/utils/__tests__/array.test.ts +1 -29
- package/utils/__tests__/cluster-agent-configuration.test.ts +203 -0
- package/utils/array.ts +0 -11
- package/utils/aws.ts +21 -0
- package/utils/cluster.js +22 -2
- package/utils/selector-typed.ts +1 -1
- package/utils/svg-filter.js +4 -3
- package/components/__tests__/ProjectRow.test.ts +0 -206
- package/components/form/ResourceQuota/ProjectRow.vue +0 -277
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import Select from '@shell/components/form/Select';
|
|
3
|
-
import UnitInput from '@shell/components/form/UnitInput';
|
|
4
|
-
import { LabeledInput } from '@components/Form/LabeledInput';
|
|
5
|
-
import { ROW_COMPUTED, TYPES } from './shared';
|
|
6
|
-
|
|
7
|
-
export default {
|
|
8
|
-
emits: [
|
|
9
|
-
'type-change',
|
|
10
|
-
'update:resource-identifier',
|
|
11
|
-
],
|
|
12
|
-
|
|
13
|
-
components: {
|
|
14
|
-
Select,
|
|
15
|
-
UnitInput,
|
|
16
|
-
LabeledInput,
|
|
17
|
-
},
|
|
18
|
-
|
|
19
|
-
props: {
|
|
20
|
-
mode: {
|
|
21
|
-
type: String,
|
|
22
|
-
required: true,
|
|
23
|
-
},
|
|
24
|
-
types: {
|
|
25
|
-
type: Array,
|
|
26
|
-
default: () => []
|
|
27
|
-
},
|
|
28
|
-
type: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: ''
|
|
31
|
-
},
|
|
32
|
-
typeValues: {
|
|
33
|
-
type: Array,
|
|
34
|
-
default: () => [],
|
|
35
|
-
},
|
|
36
|
-
value: {
|
|
37
|
-
type: Object,
|
|
38
|
-
default: () => {
|
|
39
|
-
return {};
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
index: {
|
|
43
|
-
type: Number,
|
|
44
|
-
required: true,
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
|
|
48
|
-
data() {
|
|
49
|
-
return {
|
|
50
|
-
customType: '',
|
|
51
|
-
previousTypeValues: [],
|
|
52
|
-
};
|
|
53
|
-
},
|
|
54
|
-
|
|
55
|
-
created() {
|
|
56
|
-
if (this.type.startsWith(TYPES.EXTENDED)) {
|
|
57
|
-
this.customType = this.type.substring(`${ TYPES.EXTENDED }.`.length);
|
|
58
|
-
} else {
|
|
59
|
-
this.customType = this.type;
|
|
60
|
-
}
|
|
61
|
-
this.previousTypeValues = [...this.typeValues];
|
|
62
|
-
},
|
|
63
|
-
|
|
64
|
-
computed: {
|
|
65
|
-
...ROW_COMPUTED,
|
|
66
|
-
|
|
67
|
-
localType() {
|
|
68
|
-
return this.type.startsWith(TYPES.EXTENDED) ? this.type.split('.')[0] : this.type;
|
|
69
|
-
},
|
|
70
|
-
|
|
71
|
-
isCustom() {
|
|
72
|
-
return this.localType === TYPES.EXTENDED;
|
|
73
|
-
},
|
|
74
|
-
|
|
75
|
-
resourceQuotaLimit() {
|
|
76
|
-
if (this.isCustom) {
|
|
77
|
-
return this.value.spec.resourceQuota?.limit.extended || {};
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
return this.value.spec.resourceQuota?.limit || {};
|
|
81
|
-
},
|
|
82
|
-
|
|
83
|
-
namespaceDefaultResourceQuotaLimit() {
|
|
84
|
-
if (this.isCustom) {
|
|
85
|
-
return this.value.spec.namespaceDefaultResourceQuota?.limit.extended || {};
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
return this.value.spec.namespaceDefaultResourceQuota?.limit || {};
|
|
89
|
-
},
|
|
90
|
-
|
|
91
|
-
currentResourceType() {
|
|
92
|
-
return this.isCustom ? this.customType : this.localType;
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
-
customTypeRules() {
|
|
96
|
-
// Return a validation rule that makes the field required when isCustom is true
|
|
97
|
-
if (this.isCustom) {
|
|
98
|
-
return [
|
|
99
|
-
(value) => {
|
|
100
|
-
if (!value) {
|
|
101
|
-
return this.t('resourceQuota.errors.customTypeRequired');
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
return undefined;
|
|
105
|
-
}
|
|
106
|
-
];
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
return [];
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
|
|
113
|
-
watch: {
|
|
114
|
-
typeValues: {
|
|
115
|
-
/**
|
|
116
|
-
* Intentionally uses `oldValues` (not `_newValues`) so that
|
|
117
|
-
* `previousTypeValues` always reflects the committed state before the
|
|
118
|
-
* current change. `deleteResourceLimits` relies on this snapshot to
|
|
119
|
-
* detect duplicate keys: if a key still appears twice in the old list
|
|
120
|
-
* we know another row owns it and must not delete the shared limit.
|
|
121
|
-
*/
|
|
122
|
-
handler(_newValues, oldValues) {
|
|
123
|
-
this.previousTypeValues = [...oldValues];
|
|
124
|
-
},
|
|
125
|
-
deep: true
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
|
|
129
|
-
methods: {
|
|
130
|
-
updateType(type) {
|
|
131
|
-
const oldResourceKey = this.isCustom ? this.customType : this.localType;
|
|
132
|
-
|
|
133
|
-
this.deleteResourceLimits(oldResourceKey);
|
|
134
|
-
|
|
135
|
-
if (type === TYPES.EXTENDED) {
|
|
136
|
-
this.customType = '';
|
|
137
|
-
} else {
|
|
138
|
-
this.customType = type;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
this.$emit('type-change', { index: this.index, type });
|
|
142
|
-
},
|
|
143
|
-
|
|
144
|
-
updateCustomType(type) {
|
|
145
|
-
const oldType = this.customType;
|
|
146
|
-
|
|
147
|
-
if (oldType) {
|
|
148
|
-
this.deleteResourceLimits(oldType, true);
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
this.customType = type;
|
|
152
|
-
|
|
153
|
-
this.$emit('update:resource-identifier', {
|
|
154
|
-
type: this.type,
|
|
155
|
-
customType: this.customType,
|
|
156
|
-
index: this.index,
|
|
157
|
-
});
|
|
158
|
-
},
|
|
159
|
-
|
|
160
|
-
updateQuotaLimit(prop, type, val) {
|
|
161
|
-
if (!this.value.spec[prop]) {
|
|
162
|
-
this.value.spec[prop] = { limit: { } };
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
if (this.isCustom) {
|
|
166
|
-
if (!this.value.spec[prop].limit.extended) {
|
|
167
|
-
this.value.spec[prop].limit.extended = { };
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
this.value.spec[prop].limit.extended[type] = val;
|
|
171
|
-
|
|
172
|
-
return;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
this.value.spec[prop].limit[type] = val;
|
|
176
|
-
},
|
|
177
|
-
|
|
178
|
-
deleteResourceLimits(resourceKey, isExtended = false) {
|
|
179
|
-
const limit = this.value?.spec.resourceQuota?.limit;
|
|
180
|
-
const usedLimit = this.value?.spec.namespaceDefaultResourceQuota?.limit;
|
|
181
|
-
|
|
182
|
-
if (isExtended) {
|
|
183
|
-
// `previousTypeValues` holds the previous snapshot of typeValues.
|
|
184
|
-
// Counting matches against the old list lets us detect whether another
|
|
185
|
-
// row already owns this key before we delete the shared limit entry.
|
|
186
|
-
const matchesForKey = this.previousTypeValues.filter((typeValue) => {
|
|
187
|
-
const [, typeKey] = typeValue.split('.');
|
|
188
|
-
|
|
189
|
-
return resourceKey === typeKey;
|
|
190
|
-
});
|
|
191
|
-
|
|
192
|
-
/**
|
|
193
|
-
* Prevent inadvertently deleting values for an existing custom resource
|
|
194
|
-
* if a duplicate key is entered.
|
|
195
|
-
*/
|
|
196
|
-
if (matchesForKey.length >= 2) {
|
|
197
|
-
return;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
if (limit?.extended && typeof this.value.spec.resourceQuota?.limit?.extended[resourceKey] !== 'undefined') {
|
|
201
|
-
delete this.value.spec.resourceQuota.limit.extended[resourceKey];
|
|
202
|
-
}
|
|
203
|
-
if (usedLimit?.extended && typeof this.value.spec.namespaceDefaultResourceQuota?.limit?.extended[resourceKey] !== 'undefined') {
|
|
204
|
-
delete this.value.spec.namespaceDefaultResourceQuota.limit.extended[resourceKey];
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
return;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
if (typeof this.value.spec.resourceQuota?.limit[resourceKey] !== 'undefined') {
|
|
211
|
-
delete this.value.spec.resourceQuota.limit[resourceKey];
|
|
212
|
-
}
|
|
213
|
-
if (typeof this.value.spec.namespaceDefaultResourceQuota?.limit[resourceKey] !== 'undefined') {
|
|
214
|
-
delete this.value.spec.namespaceDefaultResourceQuota.limit[resourceKey];
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
};
|
|
219
|
-
</script>
|
|
220
|
-
<template>
|
|
221
|
-
<div
|
|
222
|
-
v-if="typeOption"
|
|
223
|
-
class="row"
|
|
224
|
-
>
|
|
225
|
-
<Select
|
|
226
|
-
:value="localType"
|
|
227
|
-
class="mr-10"
|
|
228
|
-
:mode="mode"
|
|
229
|
-
:options="types"
|
|
230
|
-
data-testid="projectrow-type-input"
|
|
231
|
-
@update:value="updateType($event)"
|
|
232
|
-
/>
|
|
233
|
-
<LabeledInput
|
|
234
|
-
:value="customType"
|
|
235
|
-
:disabled="!isCustom"
|
|
236
|
-
:required="isCustom"
|
|
237
|
-
:mode="mode"
|
|
238
|
-
:placeholder="t('resourceQuota.resourceIdentifier.placeholder')"
|
|
239
|
-
:rules="customTypeRules"
|
|
240
|
-
:require-dirty="false"
|
|
241
|
-
class="mr-10"
|
|
242
|
-
data-testid="projectrow-custom-type-input"
|
|
243
|
-
@update:value="updateCustomType($event)"
|
|
244
|
-
/>
|
|
245
|
-
<UnitInput
|
|
246
|
-
:value="resourceQuotaLimit[currentResourceType]"
|
|
247
|
-
class="mr-10"
|
|
248
|
-
:mode="mode"
|
|
249
|
-
:placeholder="typeOption.placeholder"
|
|
250
|
-
:increment="typeOption.increment"
|
|
251
|
-
:input-exponent="typeOption.inputExponent"
|
|
252
|
-
:base-unit="typeOption.baseUnit"
|
|
253
|
-
:output-modifier="true"
|
|
254
|
-
data-testid="projectrow-project-quota-input"
|
|
255
|
-
@update:value="updateQuotaLimit('resourceQuota', currentResourceType, $event)"
|
|
256
|
-
/>
|
|
257
|
-
<UnitInput
|
|
258
|
-
:value="namespaceDefaultResourceQuotaLimit[currentResourceType]"
|
|
259
|
-
:mode="mode"
|
|
260
|
-
:placeholder="typeOption.placeholder"
|
|
261
|
-
:increment="typeOption.increment"
|
|
262
|
-
:input-exponent="typeOption.inputExponent"
|
|
263
|
-
:base-unit="typeOption.baseUnit"
|
|
264
|
-
:output-modifier="true"
|
|
265
|
-
data-testid="projectrow-namespace-quota-input"
|
|
266
|
-
@update:value="updateQuotaLimit('namespaceDefaultResourceQuota', currentResourceType, $event)"
|
|
267
|
-
/>
|
|
268
|
-
</div>
|
|
269
|
-
</template>
|
|
270
|
-
|
|
271
|
-
<style lang='scss' scoped>
|
|
272
|
-
.row {
|
|
273
|
-
display: flex;
|
|
274
|
-
flex-direction: row;
|
|
275
|
-
justify-content: space-evenly;
|
|
276
|
-
}
|
|
277
|
-
</style>
|