@rancher/shell 0.1.2 → 0.1.3
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/translations/en-us.yaml +27 -769
- package/assets/translations/zh-hans.yaml +8 -769
- package/components/ActionMenu.vue +3 -3
- package/components/CodeMirror.vue +6 -8
- package/components/CommunityLinks.vue +1 -1
- package/components/ContainerResourceLimit.vue +14 -0
- package/components/ExplorerMembers.vue +123 -0
- package/components/ExplorerProjectsNamespaces.vue +405 -0
- package/components/GrafanaDashboard.vue +17 -2
- package/components/LocaleSelector.vue +81 -0
- package/components/PromptModal.vue +2 -3
- package/components/ResourceList/index.vue +1 -1
- package/components/ResourceTable.vue +3 -6
- package/components/SingleClusterInfo.vue +1 -1
- package/components/SortableTable/index.vue +23 -20
- package/components/SortableTable/selection.js +1 -0
- package/components/auth/AzureWarning.vue +5 -1
- package/components/auth/Principal.vue +1 -1
- package/components/auth/RoleDetailEdit.vue +18 -11
- package/components/fleet/FleetRepos.vue +0 -2
- package/components/form/NameNsDescription.vue +4 -6
- package/components/form/NodeScheduling.vue +1 -1
- package/components/form/WorkloadPorts.vue +1 -1
- package/components/formatter/WorkloadHealthScale.vue +1 -1
- package/components/nav/Header.vue +9 -9
- package/components/nav/NamespaceFilter.vue +7 -4
- package/components/nav/TopLevelMenu.vue +6 -43
- package/components/nav/WindowManager/ContainerLogs.vue +1 -1
- package/config/product/harvester-manager.js +64 -2
- package/config/product/manager.js +9 -0
- package/config/settings.js +17 -71
- package/config/table-headers.js +0 -1
- package/config/types.js +5 -25
- package/core/plugin-routes.ts +34 -22
- package/core/plugin.ts +15 -3
- package/core/plugins-loader.js +2 -0
- package/core/plugins.js +79 -36
- package/core/types.ts +7 -1
- package/detail/provisioning.cattle.io.cluster.vue +13 -0
- package/detail/workload/index.vue +11 -5
- package/{components/dialog → dialog}/AddClusterMemberDialog.vue +0 -0
- package/{components/dialog → dialog}/AddCustomBadgeDialog.vue +0 -0
- package/{components/dialog → dialog}/AddProjectMemberDialog.vue +0 -0
- package/{components/dialog → dialog}/AddonConfigConfirmationDialog.vue +0 -0
- package/{components/dialog → dialog}/DrainNode.vue +0 -0
- package/{components/dialog → dialog}/ForceMachineRemoveDialog.vue +0 -0
- package/{components/dialog → dialog}/GenericPrompt.vue +0 -0
- package/{components/dialog → dialog}/RollbackWorkloadDialog.vue +0 -0
- package/{components/dialog → dialog}/RotateCertificatesDialog.vue +0 -0
- package/{components/dialog → dialog}/RotateEncryptionKeyDialog.vue +0 -0
- package/{components/dialog → dialog}/SaveAsRKETemplateDialog.vue +0 -0
- package/{components/dialog → dialog}/ScaleMachineDownDialog.vue +0 -0
- package/edit/auth/azuread.vue +20 -1
- package/edit/management.cattle.io.project.vue +2 -2
- package/edit/namespace.vue +17 -10
- package/edit/persistentvolumeclaim.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/CustomCommand.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +33 -5
- package/edit/service.vue +1 -1
- package/edit/workload/index.vue +363 -15
- package/edit/workload/mixins/workload.js +62 -7
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +1 -0
- package/layouts/default.vue +52 -27
- package/layouts/error.vue +5 -1
- package/layouts/home.vue +6 -2
- package/list/harvesterhci.io.management.cluster.vue +74 -33
- package/list/namespace.vue +3 -5
- package/machine-config/amazonec2.vue +2 -0
- package/machine-config/harvester.vue +96 -49
- package/middleware/authenticated.js +56 -52
- package/mixins/form-validation.js +1 -1
- package/mixins/resource-fetch.js +3 -1
- package/models/fleet.cattle.io.bundle.js +26 -19
- package/models/harvesterhci.io.management.cluster.js +194 -5
- package/models/management.cattle.io.cluster.js +1 -1
- package/models/management.cattle.io.clusterroletemplatebinding.js +9 -0
- package/models/management.cattle.io.project.js +23 -2
- package/models/namespace.js +19 -3
- package/models/pod.js +19 -2
- package/models/provisioning.cattle.io.cluster.js +4 -0
- package/models/workload.js +4 -243
- package/models/workload.service.js +314 -0
- package/nuxt.config.js +11 -9
- package/package.json +3 -3
- package/pages/auth/login.vue +11 -2
- package/pages/auth/setup.vue +1 -1
- package/pages/c/_cluster/_product/members/index.vue +3 -93
- package/pages/c/_cluster/_product/projectsnamespaces.vue +6 -403
- package/pages/c/_cluster/settings/performance.vue +19 -16
- package/pages/fail-whale.vue +1 -10
- package/pages/index.vue +18 -4
- package/pages/plugins.vue +2 -2
- package/pages/prefs.vue +8 -6
- package/pkg/auto-import.js +44 -7
- package/pkg/dynamic-plugin-loader.js +28 -0
- package/pkg/import.js +2 -2
- package/pkg/model-loader-require.lib.js +3 -0
- package/pkg/vue.config.js +9 -6
- package/plugins/dashboard-store/model-loader-require.js +12 -0
- package/plugins/dashboard-store/model-loader.js +4 -1
- package/plugins/dashboard-store/resource-class.js +10 -3
- package/plugins/steve/actions.js +1 -1
- package/plugins/steve/index.js +6 -4
- package/plugins/steve/subscribe.js +34 -23
- package/rancher-components/Form/Checkbox/Checkbox.test.ts +77 -0
- package/rancher-components/Form/Checkbox/Checkbox.vue +12 -2
- package/scripts/build-pkg.sh +48 -2
- package/scripts/drone-build-pkg.sh +31 -0
- package/scripts/publish-shell.sh +10 -11
- package/scripts/serve-pkgs +17 -10
- package/store/catalog.js +3 -1
- package/store/i18n.js +16 -11
- package/store/index.js +4 -181
- package/store/prefs.js +30 -2
- package/store/type-map.js +16 -29
- package/utils/cluster.js +1 -1
- package/utils/custom-validators.js +1 -12
- package/utils/dynamic-importer.js +1 -1
- package/utils/validators/setting.js +0 -35
- package/components/FilterLabel.vue +0 -254
- package/components/HarvesterUpgradeProgressBarList.vue +0 -109
- package/components/VMConsoleBar.vue +0 -87
- package/components/dialog/harvester/AddHotplugModal.vue +0 -159
- package/components/dialog/harvester/BackupModal.vue +0 -117
- package/components/dialog/harvester/CloneTemplate.vue +0 -125
- package/components/dialog/harvester/EjectCDROMDialog.vue +0 -157
- package/components/dialog/harvester/ExportImageDialog.vue +0 -152
- package/components/dialog/harvester/MaintenanceDialog.vue +0 -94
- package/components/dialog/harvester/MigrationDialog.vue +0 -154
- package/components/dialog/harvester/RestoreDialog.vue +0 -153
- package/components/dialog/harvester/SupportBundle.vue +0 -217
- package/components/dialog/harvester/UnplugVolume.vue +0 -108
- package/components/form/SerialConsole/index.vue +0 -267
- package/components/formatter/AttachVMWithName.vue +0 -46
- package/components/formatter/CloudInitType.vue +0 -27
- package/components/formatter/HarvesterBackupTargetValidation.vue +0 -43
- package/components/formatter/HarvesterCPUUsed.vue +0 -122
- package/components/formatter/HarvesterDiskState.vue +0 -66
- package/components/formatter/HarvesterHostName.vue +0 -66
- package/components/formatter/HarvesterIpAddress.vue +0 -90
- package/components/formatter/HarvesterMemoryUsed.vue +0 -140
- package/components/formatter/HarvesterMigrationState.vue +0 -85
- package/components/formatter/HarvesterNodeName.vue +0 -49
- package/components/formatter/HarvesterStorageUsed.vue +0 -194
- package/components/formatter/HarvesterVmState.vue +0 -123
- package/components/nav/HarvesterUpgrade.vue +0 -232
- package/components/novnc/NovncConsole.vue +0 -93
- package/components/novnc/NovncConsoleItem.vue +0 -89
- package/components/novnc/NovncConsoleWrapper.vue +0 -243
- package/config/harvester-map.js +0 -44
- package/config/harvester-table-headers.js +0 -27
- package/config/product/harvester.js +0 -305
- package/detail/harvesterhci.io.host/HarvesterHostBasic.vue +0 -364
- package/detail/harvesterhci.io.host/HarvesterHostDisk.vue +0 -200
- package/detail/harvesterhci.io.host/HarvesterHostNetwork.vue +0 -89
- package/detail/harvesterhci.io.host/VirtualMachineInstance.vue +0 -134
- package/detail/harvesterhci.io.host/index.vue +0 -243
- package/detail/harvesterhci.io.virtualmachinebackup/index.vue +0 -221
- package/detail/harvesterhci.io.virtualmachineimage.vue +0 -118
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineBasics.vue +0 -279
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineEvents.vue +0 -75
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineKeypairs.vue +0 -114
- package/detail/kubevirt.io.virtualmachine/VirtualMachineTabs/VirtualMachineMigration.vue +0 -79
- package/detail/kubevirt.io.virtualmachine/index.vue +0 -213
- package/edit/harvesterhci.io.cloudtemplate.vue +0 -123
- package/edit/harvesterhci.io.host/HarvesterDisk.vue +0 -262
- package/edit/harvesterhci.io.host/index.vue +0 -533
- package/edit/harvesterhci.io.keypair.vue +0 -112
- package/edit/harvesterhci.io.managedchart/index.vue +0 -25
- package/edit/harvesterhci.io.managedchart/rancher-monitoring.vue +0 -172
- package/edit/harvesterhci.io.networkattachmentdefinition.vue +0 -210
- package/edit/harvesterhci.io.setting/additional-ca.vue +0 -36
- package/edit/harvesterhci.io.setting/backup-target.vue +0 -182
- package/edit/harvesterhci.io.setting/http-proxy.vue +0 -79
- package/edit/harvesterhci.io.setting/index.vue +0 -201
- package/edit/harvesterhci.io.setting/overcommit-config.vue +0 -94
- package/edit/harvesterhci.io.setting/ssl-certificates.vue +0 -117
- package/edit/harvesterhci.io.setting/ssl-parameters.vue +0 -161
- package/edit/harvesterhci.io.setting/support-bundle-image.vue +0 -134
- package/edit/harvesterhci.io.setting/support-bundle-namespaces.vue +0 -73
- package/edit/harvesterhci.io.setting/vip-pools.vue +0 -244
- package/edit/harvesterhci.io.setting/vm-force-reset-policy.vue +0 -81
- package/edit/harvesterhci.io.virtualmachinebackup.vue +0 -256
- package/edit/harvesterhci.io.virtualmachineimage.vue +0 -364
- package/edit/harvesterhci.io.virtualmachinetemplateversion.vue +0 -340
- package/edit/harvesterhci.io.volume.vue +0 -195
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/AccessCredentialsUsers.vue +0 -190
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/index.vue +0 -212
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/basicAuth.vue +0 -94
- package/edit/kubevirt.io.virtualmachine/VirtualMachineAccessCredentials/type/sshkey.vue +0 -85
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/DataTemplate.vue +0 -153
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCloudConfig/index.vue +0 -279
- package/edit/kubevirt.io.virtualmachine/VirtualMachineCpuMemory.vue +0 -113
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/__tests__/HarvesterEditNetwork.test.ts +0 -41
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/base.vue +0 -281
- package/edit/kubevirt.io.virtualmachine/VirtualMachineNetwork/index.vue +0 -142
- package/edit/kubevirt.io.virtualmachine/VirtualMachineReserved.vue +0 -54
- package/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue +0 -256
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/index.vue +0 -391
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditContainer.test.ts +0 -40
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditExisting.test.ts +0 -102
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVMImage.test.ts +0 -117
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/__tests__/HarvesterEditVolume.test.ts +0 -74
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/container.vue +0 -132
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/existing.vue +0 -303
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/vmImage.vue +0 -285
- package/edit/kubevirt.io.virtualmachine/VirtualMachineVolume/type/volume.vue +0 -188
- package/edit/kubevirt.io.virtualmachine/index.vue +0 -642
- package/edit/network.harvesterhci.io.clusternetwork/index.vue +0 -19
- package/edit/network.harvesterhci.io.clusternetwork/vlan.vue +0 -134
- package/edit/workload/types/Deployment.vue +0 -377
- package/edit/workload/types/Generic.vue +0 -295
- package/list/harvesterhci.io.cloudtemplate.vue +0 -78
- package/list/harvesterhci.io.dashboard/HarvesterUpgrade.vue +0 -211
- package/list/harvesterhci.io.dashboard/UpgradeInfo.vue +0 -40
- package/list/harvesterhci.io.dashboard/index.vue +0 -752
- package/list/harvesterhci.io.host/index.vue +0 -186
- package/list/harvesterhci.io.networkattachmentdefinition.vue +0 -167
- package/list/harvesterhci.io.setting.vue +0 -241
- package/list/harvesterhci.io.virtualmachinebackup.vue +0 -172
- package/list/harvesterhci.io.virtualmachineimage.vue +0 -80
- package/list/harvesterhci.io.virtualmachinetemplateversion.vue +0 -173
- package/list/harvesterhci.io.volume.vue +0 -122
- package/list/kubevirt.io.virtualmachine.vue +0 -193
- package/mixins/harvester-vm/impl.js +0 -267
- package/mixins/harvester-vm/index.js +0 -1357
- package/models/harvester/configmap.js +0 -32
- package/models/harvester/harvesterhci.io.blockdevice.js +0 -55
- package/models/harvester/harvesterhci.io.keypair.js +0 -12
- package/models/harvester/harvesterhci.io.setting.js +0 -127
- package/models/harvester/harvesterhci.io.supportbundle.js +0 -35
- package/models/harvester/harvesterhci.io.upgrade.js +0 -226
- package/models/harvester/harvesterhci.io.virtualmachinebackup.js +0 -116
- package/models/harvester/harvesterhci.io.virtualmachineimage.js +0 -255
- package/models/harvester/harvesterhci.io.virtualmachinerestore.js +0 -43
- package/models/harvester/harvesterhci.io.virtualmachinetemplate.js +0 -69
- package/models/harvester/harvesterhci.io.virtualmachinetemplateversion.js +0 -227
- package/models/harvester/k8s.cni.cncf.io.networkattachmentdefinition.js +0 -32
- package/models/harvester/kubevirt.io.virtualmachine.js +0 -850
- package/models/harvester/kubevirt.io.virtualmachineinstance.js +0 -142
- package/models/harvester/management.cattle.io.managedchart.js +0 -191
- package/models/harvester/management.cattle.io.setting.js +0 -40
- package/models/harvester/network.harvesterhci.io.clusternetwork.js +0 -100
- package/models/harvester/network.harvesterhci.io.nodenetwork.js +0 -34
- package/models/harvester/node.js +0 -255
- package/models/harvester/persistentvolumeclaim.js +0 -166
- package/models/harvester/pod.js +0 -185
- package/pages/c/_cluster/harvester/airgapupgrade/index.vue +0 -309
- package/pages/c/_cluster/harvester/console/_uid/serial.vue +0 -51
- package/pages/c/_cluster/harvester/console/_uid/vnc.vue +0 -52
- package/pages/c/_cluster/harvester/index.vue +0 -24
- package/pages/c/_cluster/harvester/support/index.vue +0 -154
- package/pkg/model-loader.lib.js +0 -3
- package/promptRemove/kubevirt.io.virtualmachine.vue +0 -164
- package/store/harvester-common.js +0 -126
- package/utils/validators/vm-datavolumes.js +0 -38
- package/utils/validators/vm-image.js +0 -32
- package/utils/validators/vm.js +0 -221
|
@@ -1,254 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import ArrayList from '@shell/components/form/ArrayList';
|
|
3
|
-
import Select from '@shell/components/form/Select';
|
|
4
|
-
|
|
5
|
-
export default {
|
|
6
|
-
name: 'HarvesterFilterLabel',
|
|
7
|
-
|
|
8
|
-
components: {
|
|
9
|
-
Select,
|
|
10
|
-
ArrayList
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
props: {
|
|
14
|
-
rows: {
|
|
15
|
-
type: Array,
|
|
16
|
-
required: true,
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
data() {
|
|
21
|
-
return {
|
|
22
|
-
searchLabels: [],
|
|
23
|
-
defaultAddValue: {
|
|
24
|
-
key: '',
|
|
25
|
-
value: '',
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
computed: {
|
|
31
|
-
optionLabels() {
|
|
32
|
-
const labels = this.rows.map((row) => {
|
|
33
|
-
return Object.keys(row.labels);
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
return Array.from(new Set(labels.flat()));
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
methods: {
|
|
41
|
-
calcValueOptions(key) {
|
|
42
|
-
const valueOptions = [];
|
|
43
|
-
|
|
44
|
-
this.rows.map((row) => {
|
|
45
|
-
const isExistValue = valueOptions.find(value => value.label === row.labels[key]);
|
|
46
|
-
|
|
47
|
-
if (Object.keys(row.labels).includes(key) && key && row.labels[key] && !isExistValue) {
|
|
48
|
-
valueOptions.push({
|
|
49
|
-
value: row.labels[key],
|
|
50
|
-
label: row.labels[key]
|
|
51
|
-
});
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
return valueOptions;
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
removeAll() {
|
|
59
|
-
this.$set(this, 'searchLabels', []);
|
|
60
|
-
},
|
|
61
|
-
|
|
62
|
-
remove(label) {
|
|
63
|
-
this.searchLabels.find((L, index) => {
|
|
64
|
-
if (L.key === label.key && L.value === label.value) {
|
|
65
|
-
this.searchLabels.splice(index, 1);
|
|
66
|
-
this.filterRows();
|
|
67
|
-
|
|
68
|
-
return true;
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
},
|
|
72
|
-
|
|
73
|
-
filterRows() {
|
|
74
|
-
const rows = this.rows.filter((row) => {
|
|
75
|
-
const hasSearch = this.searchLabels.find(search => search.key);
|
|
76
|
-
|
|
77
|
-
if (!hasSearch) {
|
|
78
|
-
return this.rows;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
const labels = row.labels;
|
|
82
|
-
const keys = Object.keys(labels);
|
|
83
|
-
|
|
84
|
-
return this.searchLabels.find((search) => {
|
|
85
|
-
if (search.key && keys.includes(search.key)) {
|
|
86
|
-
if (!search.value) { // If value is empty, all data containing the key is retained
|
|
87
|
-
return true;
|
|
88
|
-
} else if (search.value === labels[search.key]) {
|
|
89
|
-
return true;
|
|
90
|
-
} else if (search.value !== labels[search.key]) {
|
|
91
|
-
return false;
|
|
92
|
-
}
|
|
93
|
-
} else {
|
|
94
|
-
return false;
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
});
|
|
98
|
-
|
|
99
|
-
this.$emit('changeRows', rows, this.searchLabels);
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
|
|
103
|
-
watch: {
|
|
104
|
-
rows: {
|
|
105
|
-
deep: true,
|
|
106
|
-
immediate: true,
|
|
107
|
-
handler() {
|
|
108
|
-
this.filterRows();
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
};
|
|
113
|
-
</script>
|
|
114
|
-
|
|
115
|
-
<template>
|
|
116
|
-
<div class="filter">
|
|
117
|
-
<template v-for="(label, index) in searchLabels">
|
|
118
|
-
<span v-if="label.key" :key="`${label.key}${index}`" class="banner-item bg-warning">
|
|
119
|
-
{{ label.key }}{{ label.value ? "=" : '' }}{{ label.value }}<i class="icon icon-close" @click="remove(label)" />
|
|
120
|
-
</span>
|
|
121
|
-
</template>
|
|
122
|
-
|
|
123
|
-
<v-popover
|
|
124
|
-
trigger="click"
|
|
125
|
-
placement="bottom-end"
|
|
126
|
-
>
|
|
127
|
-
<slot name="header">
|
|
128
|
-
<button ref="actionDropDown" class="btn bg-primary mr-10">
|
|
129
|
-
<slot name="title">
|
|
130
|
-
{{ t('harvester.fields.filterLabels') }}
|
|
131
|
-
</slot>
|
|
132
|
-
</button>
|
|
133
|
-
</slot>
|
|
134
|
-
|
|
135
|
-
<template slot="popover">
|
|
136
|
-
<div class="filter-popup">
|
|
137
|
-
<div>
|
|
138
|
-
<ArrayList
|
|
139
|
-
v-model="searchLabels"
|
|
140
|
-
:show-header="true"
|
|
141
|
-
:default-add-value="defaultAddValue"
|
|
142
|
-
:initial-empty-row="true"
|
|
143
|
-
@input="filterRows"
|
|
144
|
-
>
|
|
145
|
-
<template v-slot:column-headers>
|
|
146
|
-
<div class="box">
|
|
147
|
-
<div class="key">
|
|
148
|
-
{{ t('generic.key') }}
|
|
149
|
-
<span class="required">*</span>
|
|
150
|
-
</div>
|
|
151
|
-
<div class="value">
|
|
152
|
-
{{ t('generic.value') }}
|
|
153
|
-
</div>
|
|
154
|
-
<div />
|
|
155
|
-
</div>
|
|
156
|
-
</template>
|
|
157
|
-
<template v-slot:columns="scope">
|
|
158
|
-
<div class="key">
|
|
159
|
-
<Select
|
|
160
|
-
ref="select"
|
|
161
|
-
key="label"
|
|
162
|
-
v-model="scope.row.value.key"
|
|
163
|
-
:append-to-body="false"
|
|
164
|
-
:searchable="true"
|
|
165
|
-
:options="optionLabels"
|
|
166
|
-
@input="filterRows"
|
|
167
|
-
/>
|
|
168
|
-
</div>
|
|
169
|
-
<div class="value">
|
|
170
|
-
<Select
|
|
171
|
-
v-if="calcValueOptions(scope.row.value.key).length > 0"
|
|
172
|
-
ref="select"
|
|
173
|
-
key="value"
|
|
174
|
-
v-model="scope.row.value.value"
|
|
175
|
-
:append-to-body="false"
|
|
176
|
-
:searchable="true"
|
|
177
|
-
:options="calcValueOptions(scope.row.value.key)"
|
|
178
|
-
@input="filterRows"
|
|
179
|
-
/>
|
|
180
|
-
<input v-else v-model="scope.row.value.value" class="input-sm" type="search" @input="filterRows" />
|
|
181
|
-
</div>
|
|
182
|
-
</template>
|
|
183
|
-
|
|
184
|
-
<template #add="{add}">
|
|
185
|
-
<div>
|
|
186
|
-
<button
|
|
187
|
-
type="button"
|
|
188
|
-
class="btn role-tertiary add"
|
|
189
|
-
data-testid="add-item"
|
|
190
|
-
@click="add()"
|
|
191
|
-
>
|
|
192
|
-
{{ t('generic.add') }}
|
|
193
|
-
</button>
|
|
194
|
-
|
|
195
|
-
<button
|
|
196
|
-
type="button"
|
|
197
|
-
class="btn role-tertiary add"
|
|
198
|
-
data-testid="remove-all-item"
|
|
199
|
-
@click="removeAll()"
|
|
200
|
-
>
|
|
201
|
-
{{ t('generic.clearAll') }}
|
|
202
|
-
</button>
|
|
203
|
-
</div>
|
|
204
|
-
</template>
|
|
205
|
-
</ArrayList>
|
|
206
|
-
</div>
|
|
207
|
-
</div>
|
|
208
|
-
</template>
|
|
209
|
-
</v-popover>
|
|
210
|
-
</div>
|
|
211
|
-
</template>
|
|
212
|
-
|
|
213
|
-
<style lang="scss" scoped>
|
|
214
|
-
.filter {
|
|
215
|
-
display: inline-block;
|
|
216
|
-
|
|
217
|
-
.banner-item {
|
|
218
|
-
display: inline-block;
|
|
219
|
-
font-size: 16px;
|
|
220
|
-
margin-right: 10px;
|
|
221
|
-
padding: 6px;
|
|
222
|
-
border-radius: 2px;
|
|
223
|
-
|
|
224
|
-
i {
|
|
225
|
-
cursor: pointer;
|
|
226
|
-
vertical-align: middle;
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
.filter-popup {
|
|
231
|
-
width: 600px;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
::v-deep .box {
|
|
235
|
-
display: grid;
|
|
236
|
-
grid-template-columns: 40% 40% 10%;
|
|
237
|
-
column-gap: 1.75%;
|
|
238
|
-
align-items: center;
|
|
239
|
-
margin-bottom: 10px;
|
|
240
|
-
|
|
241
|
-
.key,
|
|
242
|
-
.value {
|
|
243
|
-
height: 100%;
|
|
244
|
-
|
|
245
|
-
INPUT {
|
|
246
|
-
height: $unlabeled-input-height;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.required {
|
|
252
|
-
color: var(--error);
|
|
253
|
-
}
|
|
254
|
-
</style>
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import Collapse from '@shell/components/Collapse';
|
|
3
|
-
import PercentageBar from '@shell/components/PercentageBar';
|
|
4
|
-
|
|
5
|
-
export default {
|
|
6
|
-
name: 'HarvesterUpgradeProgressList',
|
|
7
|
-
components: { PercentageBar, Collapse },
|
|
8
|
-
|
|
9
|
-
props: {
|
|
10
|
-
title: {
|
|
11
|
-
type: String,
|
|
12
|
-
default: ''
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
precent: {
|
|
16
|
-
type: Number,
|
|
17
|
-
default: 0
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
list: {
|
|
21
|
-
type: Array,
|
|
22
|
-
default: () => {
|
|
23
|
-
return [];
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
data() {
|
|
29
|
-
return { open: true };
|
|
30
|
-
},
|
|
31
|
-
|
|
32
|
-
methods: {
|
|
33
|
-
handleSwitch() {
|
|
34
|
-
this.open = !this.open;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
</script>
|
|
39
|
-
|
|
40
|
-
<template>
|
|
41
|
-
<div class="bar-list">
|
|
42
|
-
<h4>{{ title }} <span class="float-r text-info">{{ precent }}%</span></h4>
|
|
43
|
-
<div>
|
|
44
|
-
<div>
|
|
45
|
-
<Collapse :open.sync="open">
|
|
46
|
-
<template #title>
|
|
47
|
-
<div class="total-bar">
|
|
48
|
-
<span class="bar"><PercentageBar :value="precent" preferred-direction="MORE" /></span>
|
|
49
|
-
<span class="on-off" @click="handleSwitch"> {{ open ? t('harvester.generic.close') : t('harvester.generic.open') }}</span>
|
|
50
|
-
</div>
|
|
51
|
-
</template>
|
|
52
|
-
|
|
53
|
-
<template>
|
|
54
|
-
<div class="custom-content">
|
|
55
|
-
<div v-for="item in list" :key="item.name" class="item">
|
|
56
|
-
<p>{{ item.name }} <span class="status" :class="{ [item.state]: true }">{{ item.state }}</span></p>
|
|
57
|
-
<PercentageBar :value="item.percent" preferred-direction="MORE" />
|
|
58
|
-
<p class="warning">
|
|
59
|
-
{{ item.message }}
|
|
60
|
-
</p>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
</template>
|
|
64
|
-
</Collapse>
|
|
65
|
-
</div>
|
|
66
|
-
</div>
|
|
67
|
-
</div>
|
|
68
|
-
</template>
|
|
69
|
-
|
|
70
|
-
<style lang="scss" scoped>
|
|
71
|
-
.bar-list {
|
|
72
|
-
.float-r {
|
|
73
|
-
float: right;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.total-bar {
|
|
77
|
-
display: flex;
|
|
78
|
-
user-select: none;
|
|
79
|
-
.bar {
|
|
80
|
-
width: 85%;
|
|
81
|
-
}
|
|
82
|
-
.on-off {
|
|
83
|
-
margin-left: 10px;
|
|
84
|
-
cursor: pointer;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
.custom-content {
|
|
88
|
-
.item {
|
|
89
|
-
margin-bottom: 14px;
|
|
90
|
-
p {
|
|
91
|
-
margin-bottom: 4px;
|
|
92
|
-
}
|
|
93
|
-
.status {
|
|
94
|
-
float: right;
|
|
95
|
-
}
|
|
96
|
-
.Succeeded, .Upgrading, .Pending {
|
|
97
|
-
color: var(--success);
|
|
98
|
-
}
|
|
99
|
-
.failed {
|
|
100
|
-
color: var(--error)
|
|
101
|
-
}
|
|
102
|
-
.warning {
|
|
103
|
-
color: var(--error);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
</style>
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import ButtonDropdown from '@shell/components/ButtonDropdown';
|
|
3
|
-
import { mapGetters } from 'vuex';
|
|
4
|
-
import { OFF } from '../models/harvester/kubevirt.io.virtualmachine';
|
|
5
|
-
|
|
6
|
-
export default {
|
|
7
|
-
name: 'VMConsoleBar',
|
|
8
|
-
|
|
9
|
-
components: { ButtonDropdown },
|
|
10
|
-
|
|
11
|
-
props: {
|
|
12
|
-
resource: {
|
|
13
|
-
type: Object,
|
|
14
|
-
required: true,
|
|
15
|
-
default: () => {
|
|
16
|
-
return {};
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
computed: {
|
|
22
|
-
...mapGetters({ t: 'i18n/t' }),
|
|
23
|
-
|
|
24
|
-
isOff() {
|
|
25
|
-
return this.resource.stateDisplay === OFF;
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
options() {
|
|
29
|
-
return [{
|
|
30
|
-
label: this.t('harvester.virtualMachine.console.novnc'),
|
|
31
|
-
value: 'vnc',
|
|
32
|
-
}, {
|
|
33
|
-
label: this.t('harvester.virtualMachine.console.serial'),
|
|
34
|
-
value: 'serial',
|
|
35
|
-
}];
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
methods: {
|
|
40
|
-
handleDropdown(c) {
|
|
41
|
-
this.show(c.value);
|
|
42
|
-
},
|
|
43
|
-
|
|
44
|
-
show(type) {
|
|
45
|
-
let uid = this.resource.metadata?.ownerReferences?.[0]?.uid;
|
|
46
|
-
|
|
47
|
-
if (uid === undefined) {
|
|
48
|
-
uid = this.resource.metadata.uid;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
const host = window.location.host;
|
|
52
|
-
const prefix = window.location.pathname.replace(this.$route.path, '');
|
|
53
|
-
const params = this.$route?.params;
|
|
54
|
-
|
|
55
|
-
const url = `https://${ host }${ prefix }/c/${ params.cluster }/${ params.product }/console/${ uid }/${ type }`;
|
|
56
|
-
|
|
57
|
-
window.open(url, '_blank', 'toolbars=0,width=900,height=700,left=0,top=0,noreferrer');
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
isEmpty(o) {
|
|
61
|
-
return o !== undefined && Object.keys(o).length === 0;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
</script>
|
|
66
|
-
|
|
67
|
-
<template>
|
|
68
|
-
<div class="overview-web-console">
|
|
69
|
-
<ButtonDropdown
|
|
70
|
-
:disabled="isOff"
|
|
71
|
-
:no-drop="isOff"
|
|
72
|
-
button-label="Console"
|
|
73
|
-
:dropdown-options="options"
|
|
74
|
-
size="sm"
|
|
75
|
-
@click-action="handleDropdown"
|
|
76
|
-
/>
|
|
77
|
-
</div>
|
|
78
|
-
</template>
|
|
79
|
-
|
|
80
|
-
<style lang="scss">
|
|
81
|
-
.overview-web-console {
|
|
82
|
-
.btn {
|
|
83
|
-
line-height: 24px;
|
|
84
|
-
min-height: 24px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
</style>
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import { exceptionToErrorsArray } from '@shell/utils/error';
|
|
3
|
-
import { sortBy } from '@shell/utils/sort';
|
|
4
|
-
import { mapGetters } from 'vuex';
|
|
5
|
-
import { PVC } from '@shell/config/types';
|
|
6
|
-
import { HCI as HCI_ANNOTATIONS } from '@shell/config/labels-annotations';
|
|
7
|
-
import { Card } from '@components/Card';
|
|
8
|
-
import { Banner } from '@components/Banner';
|
|
9
|
-
import AsyncButton from '@shell/components/AsyncButton';
|
|
10
|
-
import { LabeledInput } from '@components/Form/LabeledInput';
|
|
11
|
-
import LabeledSelect from '@shell/components/form/LabeledSelect';
|
|
12
|
-
|
|
13
|
-
export default {
|
|
14
|
-
name: 'HotplugModal',
|
|
15
|
-
|
|
16
|
-
components: {
|
|
17
|
-
AsyncButton, Card, LabeledInput, LabeledSelect, Banner
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
props: {
|
|
21
|
-
resources: {
|
|
22
|
-
type: Array,
|
|
23
|
-
required: true
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
async fetch() {
|
|
28
|
-
this.allPVCs = await this.$store.dispatch('harvester/findAll', { type: PVC });
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
data() {
|
|
32
|
-
return {
|
|
33
|
-
diskName: '',
|
|
34
|
-
volumeName: '',
|
|
35
|
-
errors: [],
|
|
36
|
-
allPVCs: [],
|
|
37
|
-
};
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
computed: {
|
|
41
|
-
...mapGetters({ t: 'i18n/t' }),
|
|
42
|
-
|
|
43
|
-
PVCs() {
|
|
44
|
-
return this.allPVCs.filter(P => this.actionResource.metadata.namespace === P.metadata.namespace) || [];
|
|
45
|
-
},
|
|
46
|
-
|
|
47
|
-
actionResource() {
|
|
48
|
-
return this.resources[0];
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
volumeOption() {
|
|
52
|
-
return sortBy(
|
|
53
|
-
this.PVCs
|
|
54
|
-
.filter( (pvc) => {
|
|
55
|
-
if (!!pvc.metadata?.annotations?.[HCI_ANNOTATIONS.IMAGE_ID]) {
|
|
56
|
-
return false;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return !pvc.attachVM;
|
|
60
|
-
})
|
|
61
|
-
.map((pvc) => {
|
|
62
|
-
return {
|
|
63
|
-
label: pvc.metadata.name,
|
|
64
|
-
value: pvc.metadata.name
|
|
65
|
-
};
|
|
66
|
-
}),
|
|
67
|
-
'label'
|
|
68
|
-
);
|
|
69
|
-
},
|
|
70
|
-
},
|
|
71
|
-
|
|
72
|
-
methods: {
|
|
73
|
-
close() {
|
|
74
|
-
this.diskName = '';
|
|
75
|
-
this.volumeName = '';
|
|
76
|
-
this.$emit('close');
|
|
77
|
-
},
|
|
78
|
-
|
|
79
|
-
async save(buttonCb) {
|
|
80
|
-
if (this.actionResource) {
|
|
81
|
-
try {
|
|
82
|
-
const res = await this.actionResource.doAction('addVolume', { volumeSourceName: this.volumeName, diskName: this.diskName }, {}, false);
|
|
83
|
-
|
|
84
|
-
if (res._status === 200 || res._status === 204) {
|
|
85
|
-
this.$store.dispatch('growl/success', {
|
|
86
|
-
title: this.t('harvester.notification.title.succeed'),
|
|
87
|
-
message: this.t('harvester.modal.hotplug.success', { diskName: this.diskName, vm: this.actionResource.nameDisplay })
|
|
88
|
-
}, { root: true });
|
|
89
|
-
|
|
90
|
-
this.close();
|
|
91
|
-
buttonCb(true);
|
|
92
|
-
} else {
|
|
93
|
-
const error = [res?.data] || exceptionToErrorsArray(res);
|
|
94
|
-
|
|
95
|
-
this.$set(this, 'errors', error);
|
|
96
|
-
buttonCb(false);
|
|
97
|
-
}
|
|
98
|
-
} catch (err) {
|
|
99
|
-
const error = err?.data || err;
|
|
100
|
-
const message = exceptionToErrorsArray(error);
|
|
101
|
-
|
|
102
|
-
this.$set(this, 'errors', message);
|
|
103
|
-
buttonCb(false);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
</script>
|
|
110
|
-
|
|
111
|
-
<template>
|
|
112
|
-
<Card ref="modal" name="modal" :show-highlight-border="false">
|
|
113
|
-
<h4 slot="title" class="text-default-text" v-html="t('harvester.modal.hotplug.title')" />
|
|
114
|
-
|
|
115
|
-
<template #body>
|
|
116
|
-
<LabeledInput
|
|
117
|
-
v-model="diskName"
|
|
118
|
-
:label="t('generic.name')"
|
|
119
|
-
required
|
|
120
|
-
/>
|
|
121
|
-
|
|
122
|
-
<LabeledSelect
|
|
123
|
-
v-model="volumeName"
|
|
124
|
-
:label="t('harvester.fields.volume')"
|
|
125
|
-
:options="volumeOption"
|
|
126
|
-
class="mt-20"
|
|
127
|
-
required
|
|
128
|
-
/>
|
|
129
|
-
</template>
|
|
130
|
-
|
|
131
|
-
<div slot="actions" class="actions">
|
|
132
|
-
<div class="buttons">
|
|
133
|
-
<button type="button" class="btn role-secondary mr-10" @click="close">
|
|
134
|
-
{{ t('generic.cancel') }}
|
|
135
|
-
</button>
|
|
136
|
-
|
|
137
|
-
<AsyncButton
|
|
138
|
-
mode="apply"
|
|
139
|
-
:disabled="!diskName || !volumeName"
|
|
140
|
-
@click="save"
|
|
141
|
-
/>
|
|
142
|
-
</div>
|
|
143
|
-
|
|
144
|
-
<Banner v-for="(err, i) in errors" :key="i" color="error" :label="err" />
|
|
145
|
-
</div>
|
|
146
|
-
</Card>
|
|
147
|
-
</template>
|
|
148
|
-
|
|
149
|
-
<style lang="scss" scoped>
|
|
150
|
-
.actions {
|
|
151
|
-
width: 100%;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.buttons {
|
|
155
|
-
display: flex;
|
|
156
|
-
justify-content: flex-end;
|
|
157
|
-
width: 100%;
|
|
158
|
-
}
|
|
159
|
-
</style>
|