dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.61
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/brand/csp/favicon.png +0 -0
- package/assets/brand/harvester/favicon.png +0 -0
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/icons/demo.css +539 -0
- package/assets/icons/demo.css:Zone.Identifier +0 -0
- package/assets/icons/demo_index.html +1131 -0
- package/assets/icons/demo_index.html:Zone.Identifier +0 -0
- package/assets/icons/iconfont.css +219 -0
- package/assets/icons/iconfont.css:Zone.Identifier +0 -0
- package/assets/icons/iconfont.js +1 -0
- package/assets/icons/iconfont.js:Zone.Identifier +0 -0
- package/assets/icons/iconfont.json +324 -0
- package/assets/icons/iconfont.json:Zone.Identifier +0 -0
- package/assets/icons/iconfont.ttf +0 -0
- package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff +0 -0
- package/assets/icons/iconfont.woff2 +0 -0
- package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
- package/assets/iconsNew/demo.css +539 -0
- package/assets/iconsNew/demo.css:Zone.Identifier +0 -0
- package/assets/iconsNew/demo_index.html +303 -0
- package/assets/iconsNew/demo_index.html:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.css +43 -0
- package/assets/iconsNew/iconfont.css:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.js +1 -0
- package/assets/iconsNew/iconfont.js:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.json +44 -0
- package/assets/iconsNew/iconfont.json:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.ttf +0 -0
- package/assets/iconsNew/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff +0 -0
- package/assets/iconsNew/iconfont.woff2 +0 -0
- package/assets/iconsNew/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff:Zone.Identifier +0 -0
- package/assets/images/API.svg +3 -0
- package/assets/images/action.svg +6 -0
- package/assets/images/login/password.svg +20 -0
- package/assets/images/login/user.svg +6 -0
- package/assets/images/login-bg.png +0 -0
- package/assets/images/login-left.png +0 -0
- package/assets/images/login-logo.svg +44 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo.svg +47 -0
- package/assets/images/pl/dark/logo.png +0 -0
- package/assets/images/pl/half-logo.svg +2 -23
- package/assets/images/pl/harvester.png +0 -0
- package/assets/images/pl/logo.png +0 -0
- package/assets/images/promp-yellow.svg +5 -0
- package/assets/images/user.png +0 -0
- package/assets/styles/all.scss +83 -0
- package/assets/styles/app.scss +5 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_helpers.scss +1 -1
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +2 -1
- package/assets/styles/base/_variables.scss +14 -7
- package/assets/styles/fonts/_icons.scss +3 -2
- package/assets/styles/global/_button.scss +44 -26
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +46 -13
- package/assets/styles/global/_labeled-input.scss +54 -26
- package/assets/styles/global/_layout.scss +8 -3
- package/assets/styles/global/_select.scss +25 -17
- package/assets/styles/global/_table.scss +7 -1
- package/assets/styles/global/_tooltip.scss +60 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +69 -46
- package/assets/styles/vendor/vue-select.scss +24 -10
- package/assets/translations/en-us.yaml +92 -4
- package/assets/translations/zh-hans.yaml +668 -206
- package/components/ActionDropdown.vue +2 -1
- package/components/ActionMenu.vue +2 -2
- package/components/ActionMenuShell.vue +2 -0
- package/components/AppModal.vue +46 -5
- package/components/BrandImage.vue +1 -0
- package/components/ButtonDropdown.vue +28 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +2 -2
- package/components/CodeMirror.vue +26 -10
- package/components/ConsumptionGauge.vue +24 -5
- package/components/ContainerResourceLimit.vue +2 -2
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +12 -10
- package/components/CruResourceFooter.vue +2 -2
- package/components/DashboardOptions.vue +29 -17
- package/components/DotState.vue +84 -0
- package/components/Drawer/Chrome.vue +2 -2
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +30 -27
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +5 -4
- package/components/ExplorerMembers.vue +28 -4
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +23 -4
- package/components/GrafanaDashboard.vue +4 -4
- package/components/GrowlManager.vue +3 -1
- package/components/HardwareResourceGauge.vue +39 -3
- package/components/IndentedPanel.vue +4 -10
- package/components/InfoBox.vue +3 -3
- package/components/InputOrDisplay.vue +28 -2
- package/components/LabelValue.vue +20 -1
- package/components/ModalWithCard.vue +12 -3
- package/components/PodSecurityAdmission.vue +2 -2
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +53 -12
- package/components/RelatedResources.vue +3 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +1 -3
- package/components/Resource/Detail/Metadata/KeyValue.vue +8 -4
- package/components/Resource/Detail/Metadata/index.vue +3 -1
- package/components/Resource/Detail/TitleBar/Title.vue +4 -3
- package/components/Resource/Detail/TitleBar/Top.vue +2 -0
- package/components/Resource/Detail/TitleBar/composables.ts +16 -1
- package/components/Resource/Detail/TitleBar/index.vue +125 -27
- package/components/ResourceDetail/Masthead/index.vue +1 -1
- package/components/ResourceDetail/Masthead/latest.vue +1 -1
- package/components/ResourceDetail/Masthead/legacy.vue +183 -39
- package/components/ResourceDetail/legacy.vue +47 -29
- package/components/ResourceList/Masthead.vue +222 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +40 -2
- package/components/SideNav.vue +74 -20
- package/components/SingleClusterInfo.vue +2 -1
- package/components/SortableTable/THead.vue +79 -4
- package/components/SortableTable/index.vue +1053 -464
- package/components/SortableTable/paging.js +26 -16
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/Tab.vue +3 -3
- package/components/Tabbed/index.vue +53 -30
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +51 -19
- package/components/auth/RoleDetailEdit.vue +69 -14
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +119 -0
- package/components/form/ArrayList.vue +177 -152
- package/components/form/ArrayListGrouped.vue +13 -3
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +5 -5
- package/components/form/ClusterAppearance.vue +4 -3
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Command.vue +4 -5
- package/components/form/Conditions.vue +15 -1
- package/components/form/Footer.vue +12 -8
- package/components/form/HealthCheck.vue +0 -2
- package/components/form/HookOption.vue +87 -58
- package/components/form/InputWithSelect.vue +8 -4
- package/components/form/KeyValue.vue +66 -8
- package/components/form/LabeledSelect.vue +216 -242
- package/components/form/Labels.vue +4 -4
- package/components/form/MatchExpressions.vue +28 -11
- package/components/form/Members/ClusterMembershipEditor.vue +1 -1
- package/components/form/Members/ClusterPermissionsEditor.vue +61 -43
- package/components/form/Members/MembershipEditor.vue +4 -4
- package/components/form/Members/ProjectMembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +62 -22
- package/components/form/Networking.vue +6 -9
- package/components/form/NodeAffinity.vue +29 -28
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +24 -25
- package/components/form/Probe.vue +15 -11
- package/components/form/ProjectMemberEditor.vue +66 -48
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +26 -23
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +38 -35
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +24 -23
- package/components/form/Security.vue +1 -3
- package/components/form/Select.vue +12 -3
- package/components/form/ServiceNameSelect.vue +2 -5
- package/components/form/ServicePorts.vue +149 -75
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/Tolerations.vue +13 -9
- package/components/form/UnitInput.vue +8 -3
- package/components/form/ValueFromResource.vue +110 -96
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/formatter/WorkloadHealthScale.vue +4 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +139 -99
- package/components/nav/Header.vue +138 -164
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +34 -36
- package/components/nav/TopLevelMenu.vue +62 -25
- package/components/nav/Type.vue +73 -43
- package/composables/useClickOutside.ts +1 -1
- package/config/menuRouteMap.js +10 -0
- package/config/private-label.js +14 -11
- package/config/product/auth.js +17 -7
- package/config/product/explorer.js +32 -10
- package/config/product/manager.js +28 -17
- package/config/product/settings.js +19 -9
- package/config/product/uiplugins.js +13 -10
- package/config/router/navigation-guards/index.js +61 -3
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/detail/node.vue +28 -23
- package/dialog/AddCustomBadgeDialog.vue +17 -9
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/RollbackWorkloadDialog.vue +1 -1
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/hpa-scaling-rule.vue +9 -6
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +3 -1
- package/edit/autoscaling.horizontalpodautoscaler/metric-identifier.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +7 -5
- package/edit/autoscaling.horizontalpodautoscaler/metric-target.vue +5 -3
- package/edit/autoscaling.horizontalpodautoscaler/metrics-row.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/resource-metric.vue +2 -2
- package/edit/configmap.vue +4 -0
- package/edit/logging-flow/index.vue +1 -2
- package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/azurestorage.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/cloudwatch.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/datadog.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/forward.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/gcs.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/gelf.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/kafka.vue +10 -10
- package/edit/logging.banzaicloud.io.output/providers/kinesisStream.vue +8 -8
- package/edit/logging.banzaicloud.io.output/providers/logdna.vue +17 -17
- package/edit/logging.banzaicloud.io.output/providers/logz.vue +7 -7
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/newrelic.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/redis.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/s3.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +13 -13
- package/edit/logging.banzaicloud.io.output/providers/sumologic.vue +2 -2
- package/edit/logging.banzaicloud.io.output/providers/syslog.vue +54 -54
- package/edit/management.cattle.io.user.vue +17 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +19 -19
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +50 -26
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/dingding.vue +32 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/message.vue +52 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/snmp.vue +45 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/work.vue +31 -0
- package/edit/monitoring.coreos.com.receiver/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +5 -5
- package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -4
- package/edit/namespace.vue +1 -2
- package/edit/networking.k8s.io.ingress/Certificate.vue +14 -5
- package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
- package/edit/networking.k8s.io.ingress/Rule.vue +5 -11
- package/edit/networking.k8s.io.ingress/RulePath.vue +105 -96
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -3
- package/edit/networking.k8s.io.networkpolicy/PolicyRulePort.vue +4 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +12 -11
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/persistentvolume/index.vue +3 -1
- package/edit/persistentvolumeclaim.vue +2 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +1 -1
- package/edit/secret/index.vue +2 -2
- package/edit/service.vue +4 -1
- package/edit/storage.k8s.io.storageclass/index.vue +10 -8
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/aws-ebs.vue +34 -27
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/gce-pd.vue +15 -13
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/vsphere-volume.vue +41 -39
- package/edit/token.vue +31 -12
- package/edit/workload/Job.vue +31 -34
- package/edit/workload/Upgrading.vue +5 -5
- package/edit/workload/index.vue +22 -18
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +9 -7
- package/edit/workload/storage/azureDisk.vue +14 -10
- package/edit/workload/storage/azureFile.vue +9 -7
- package/edit/workload/storage/csi/index.vue +6 -9
- package/edit/workload/storage/emptyDir.vue +7 -5
- package/edit/workload/storage/gcePersistentDisk.vue +9 -7
- package/edit/workload/storage/hostPath.vue +7 -5
- package/edit/workload/storage/nfs.vue +8 -6
- package/edit/workload/storage/persistentVolumeClaim/index.vue +12 -10
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +20 -15
- package/edit/workload/storage/secret.vue +9 -6
- package/edit/workload/storage/vsphereVolume.vue +11 -7
- package/initialize/app-extended.js +7 -1
- package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +8 -6
- package/list/management.cattle.io.setting.vue +22 -13
- package/list/management.cattle.io.user.vue +7 -3
- package/list/namespace.vue +3 -0
- package/list/provisioning.cattle.io.cluster.vue +6 -7
- package/mixins/brand.js +17 -0
- package/mixins/create-edit-view/impl.js +10 -0
- package/models/provisioning.cattle.io.cluster.js +19 -18
- package/models/workload.js +2 -2
- package/package.json +1 -1
- package/pages/account/index.vue +93 -58
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +216 -51
- package/pages/auth/setup.vue +175 -33
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +83 -8
- package/pages/c/_cluster/explorer/ConfigBadge.vue +1 -1
- package/pages/c/_cluster/explorer/index.vue +2 -1
- package/pages/c/_cluster/explorer/tools/index.vue +6 -6
- package/pages/c/_cluster/monitoring/monitor/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +174 -102
- package/pages/c/_cluster/settings/brand.vue +350 -302
- package/pages/c/_cluster/settings/performance.vue +61 -38
- package/pages/home.vue +119 -37
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/actions.js +1 -1
- package/plugins/dashboard-store/resource-class.js +28 -27
- package/promptRemove/mixin/roleDeletionCheck.js +2 -2
- package/public/index.html +4 -4
- package/rancher-components/BadgeState/BadgeState.vue +38 -55
- package/rancher-components/Banner/Banner.vue +25 -9
- package/rancher-components/Card/Card.vue +7 -8
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -0
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +42 -3
- package/rancher-components/Form/Radio/RadioButton.vue +35 -11
- package/rancher-components/Form/Radio/RadioGroup.vue +22 -6
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +41 -4
- package/rancher-components/RcDropdown/RcDropdown.vue +35 -7
- package/rancher-components/RcDropdown/RcDropdownItem.vue +2 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +12 -6
- package/rancher-components/RcDropdown/types.ts +1 -0
- package/rancher-components/StringList/StringList.vue +1 -1
- package/scripts/build-pkg.sh +18 -23
- package/scripts/publish-shell.sh +1 -1
- package/static/favicon.ico +0 -0
- package/static/favicon.png +0 -0
- package/static/loading-indicator.html +3 -3
- package/store/i18n.js +6 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +30 -2
- package/types/shell/index.d.ts +86 -97
- package/utils/error.js +109 -8
- package/utils/errorTranslate.json +1740 -0
- package/utils/errorTranslateNew.json +39 -0
- package/utils/roleFiltering.js +33 -0
- package/utils/router.js +21 -0
- package/utils/select.js +26 -3
- package/utils/string.js +8 -5
- package/utils/title.ts +1 -1
- package/vue.config.js +1 -1
package/edit/secret/index.vue
CHANGED
|
@@ -444,7 +444,7 @@ export default {
|
|
|
444
444
|
v-if="isCustomSecretCreate"
|
|
445
445
|
class="row"
|
|
446
446
|
>
|
|
447
|
-
<div class="col span-
|
|
447
|
+
<div class="col span-6">
|
|
448
448
|
<LabeledSelect
|
|
449
449
|
v-model:value="secretType"
|
|
450
450
|
:options="secretTypes"
|
|
@@ -458,7 +458,7 @@ export default {
|
|
|
458
458
|
/>
|
|
459
459
|
</div>
|
|
460
460
|
|
|
461
|
-
<div class="col span-
|
|
461
|
+
<div class="col span-6">
|
|
462
462
|
<LabeledInput
|
|
463
463
|
v-if="showCustomSecretType"
|
|
464
464
|
ref="customType"
|
package/edit/service.vue
CHANGED
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
>
|
|
421
421
|
<div
|
|
422
422
|
v-if="hasClusterIp"
|
|
423
|
-
class="row
|
|
423
|
+
class="row"
|
|
424
424
|
>
|
|
425
425
|
<div class="col span-6">
|
|
426
426
|
<LabeledInput
|
|
@@ -485,6 +485,7 @@ export default {
|
|
|
485
485
|
:tooltip="t('servicesPage.affinity.helpText')"
|
|
486
486
|
>
|
|
487
487
|
<div class="row session-affinity">
|
|
488
|
+
<div style="min-width: 160px;padding-top: 3px;">会话保持</div>
|
|
488
489
|
<div class="col span-6">
|
|
489
490
|
<RadioGroup
|
|
490
491
|
v-model:value="value.spec.sessionAffinity"
|
|
@@ -495,6 +496,8 @@ export default {
|
|
|
495
496
|
:mode="mode"
|
|
496
497
|
/>
|
|
497
498
|
</div>
|
|
499
|
+
</div>
|
|
500
|
+
<div class="row">
|
|
498
501
|
<div
|
|
499
502
|
v-if="showAffinityTimeout"
|
|
500
503
|
class="col span-6"
|
|
@@ -224,9 +224,9 @@ export default {
|
|
|
224
224
|
:mode="modeOverride"
|
|
225
225
|
:searchable="true"
|
|
226
226
|
:taggable="true"
|
|
227
|
-
class="mb-20"
|
|
228
227
|
@update:value="updateProvisioner($event)"
|
|
229
228
|
/>
|
|
229
|
+
<div style="height: 20px;"></div>
|
|
230
230
|
<Banner
|
|
231
231
|
v-if="provisionerIsDeprecated"
|
|
232
232
|
color="warning"
|
|
@@ -259,8 +259,8 @@ export default {
|
|
|
259
259
|
:label="t('storageClass.customize.label')"
|
|
260
260
|
>
|
|
261
261
|
<div class="row mt-20">
|
|
262
|
-
<div class="
|
|
263
|
-
<div class="row
|
|
262
|
+
<div class="span-6">
|
|
263
|
+
<div class="row">
|
|
264
264
|
<div class="col span-12">
|
|
265
265
|
<RadioGroup
|
|
266
266
|
v-model:value="value.reclaimPolicy"
|
|
@@ -271,7 +271,7 @@ export default {
|
|
|
271
271
|
/>
|
|
272
272
|
</div>
|
|
273
273
|
</div>
|
|
274
|
-
<div class="row
|
|
274
|
+
<div class="row">
|
|
275
275
|
<div class="col span-12">
|
|
276
276
|
<RadioGroup
|
|
277
277
|
v-model:value="value.allowVolumeExpansion"
|
|
@@ -283,8 +283,10 @@ export default {
|
|
|
283
283
|
</div>
|
|
284
284
|
</div>
|
|
285
285
|
</div>
|
|
286
|
-
|
|
287
|
-
|
|
286
|
+
</div>
|
|
287
|
+
<div class="row">
|
|
288
|
+
<div style="display: flex;">
|
|
289
|
+
<div style="min-width: 160px;padding-top: 10px;">{{ t('storageClass.customize.mountOptions.label') }}</div>
|
|
288
290
|
<ArrayList
|
|
289
291
|
v-model:value="value.mountOptions"
|
|
290
292
|
:mode="mode"
|
|
@@ -293,8 +295,8 @@ export default {
|
|
|
293
295
|
/>
|
|
294
296
|
</div>
|
|
295
297
|
</div>
|
|
296
|
-
<div class="row">
|
|
297
|
-
<div class="col
|
|
298
|
+
<div class="row" style="margin-top: -24px;">
|
|
299
|
+
<div class="col">
|
|
298
300
|
<RadioGroup
|
|
299
301
|
v-model:value="value.volumeBindingMode"
|
|
300
302
|
name="volumeBindingMode"
|
|
@@ -104,34 +104,34 @@ export default {
|
|
|
104
104
|
</script>
|
|
105
105
|
<template>
|
|
106
106
|
<div>
|
|
107
|
-
<div class="row
|
|
108
|
-
<div class="col
|
|
107
|
+
<div class="row">
|
|
108
|
+
<div class="col">
|
|
109
109
|
<RadioGroup
|
|
110
110
|
v-model:value="value.parameters.type"
|
|
111
111
|
name="volumeType"
|
|
112
112
|
:label="t('storageClass.aws-ebs.volumeType.label')"
|
|
113
113
|
:mode="mode"
|
|
114
114
|
:options="volumeTypeOptions"
|
|
115
|
+
class="mb-20"
|
|
115
116
|
/>
|
|
116
117
|
<UnitInput
|
|
117
118
|
v-if="value.parameters.type === 'io1' || value.parameters.type === 'gp3'"
|
|
118
119
|
v-model:value="iopsPerGB"
|
|
119
|
-
class="mt-10"
|
|
120
120
|
:label="t('storageClass.aws-ebs.volumeType.provisionedIops.label')"
|
|
121
121
|
:suffix="t('storageClass.aws-ebs.volumeType.provisionedIops.suffix')"
|
|
122
122
|
:mode="mode"
|
|
123
123
|
/>
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
:placeholder="t('storageClass.aws-ebs.filesystemType.placeholder')"
|
|
128
|
-
:label="t('storageClass.aws-ebs.filesystemType.label')"
|
|
129
|
-
:mode="mode"
|
|
124
|
+
<div v-if="value.parameters.type === 'io1' || value.parameters.type === 'gp3'" style="height: 24px;"></div>
|
|
125
|
+
<LabeledInput
|
|
126
|
+
v-model:value="value.parameters.fsType"
|
|
127
|
+
:placeholder="t('storageClass.aws-ebs.filesystemType.placeholder')"
|
|
128
|
+
:label="t('storageClass.aws-ebs.filesystemType.label')"
|
|
129
|
+
:mode="mode"
|
|
130
130
|
/>
|
|
131
131
|
</div>
|
|
132
132
|
</div>
|
|
133
|
-
<div class="row
|
|
134
|
-
<div class="col
|
|
133
|
+
<div class="row">
|
|
134
|
+
<div class="col">
|
|
135
135
|
<RadioGroup
|
|
136
136
|
v-model:value="availabilityZone"
|
|
137
137
|
name="availabilityZone"
|
|
@@ -139,17 +139,20 @@ export default {
|
|
|
139
139
|
:mode="mode"
|
|
140
140
|
:options="availabilityZoneOptions"
|
|
141
141
|
/>
|
|
142
|
-
<
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
142
|
+
<div style="display: flex;">
|
|
143
|
+
<div style="width: 160px;"></div>
|
|
144
|
+
<LabeledInput
|
|
145
|
+
v-if="availabilityZone === 'manual'"
|
|
146
|
+
v-model:value="value.parameters.zones"
|
|
147
|
+
class="mt-10"
|
|
148
|
+
:placeholder="t('storageClass.aws-ebs.availabilityZone.placeholder')"
|
|
149
|
+
:mode="mode"
|
|
150
|
+
/>
|
|
151
|
+
</div>
|
|
149
152
|
</div>
|
|
150
153
|
</div>
|
|
151
154
|
<div class="row">
|
|
152
|
-
<div class="col
|
|
155
|
+
<div class="col">
|
|
153
156
|
<RadioGroup
|
|
154
157
|
v-model:value="value.parameters.encrypted"
|
|
155
158
|
name="encryption"
|
|
@@ -158,22 +161,26 @@ export default {
|
|
|
158
161
|
:options="encryptionOptions"
|
|
159
162
|
/>
|
|
160
163
|
</div>
|
|
161
|
-
|
|
164
|
+
</div>
|
|
165
|
+
<div class="row">
|
|
166
|
+
<div class="col">
|
|
162
167
|
<RadioGroup
|
|
163
168
|
v-if="value.parameters.encrypted === 'true'"
|
|
164
169
|
v-model:value="keyId"
|
|
165
|
-
class="mt-10"
|
|
166
170
|
name="keyId"
|
|
167
171
|
:label="t('storageClass.aws-ebs.keyId.label')"
|
|
168
172
|
:mode="mode"
|
|
169
173
|
:options="keyIdOptions"
|
|
170
174
|
/>
|
|
171
|
-
<
|
|
172
|
-
v-if="keyId === 'manual'"
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
<div class="row">
|
|
176
|
+
<div v-if="keyId === 'manual'" style="min-width: 160px;"></div>
|
|
177
|
+
<LabeledInput
|
|
178
|
+
v-if="keyId === 'manual'"
|
|
179
|
+
v-model:value="value.parameters.kmsKeyId"
|
|
180
|
+
class="mt-10"
|
|
181
|
+
:mode="mode"
|
|
182
|
+
/>
|
|
183
|
+
</div>
|
|
177
184
|
</div>
|
|
178
185
|
</div>
|
|
179
186
|
</div>
|
|
@@ -68,7 +68,7 @@ export default {
|
|
|
68
68
|
</script>
|
|
69
69
|
<template>
|
|
70
70
|
<div>
|
|
71
|
-
<div class="row
|
|
71
|
+
<div class="row">
|
|
72
72
|
<div class="col span-6">
|
|
73
73
|
<RadioGroup
|
|
74
74
|
v-model:value="value.parameters.type"
|
|
@@ -77,14 +77,16 @@ export default {
|
|
|
77
77
|
:mode="mode"
|
|
78
78
|
:options="volumeTypeOptions"
|
|
79
79
|
/>
|
|
80
|
-
<
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
:placeholder="t('storageClass.gce-pd.filesystemType.placeholder')"
|
|
84
|
-
:label="t('storageClass.gce-pd.filesystemType.label')"
|
|
85
|
-
:mode="mode"
|
|
80
|
+
<div style="height: 24px;"></div>
|
|
81
|
+
<LabeledInput
|
|
82
|
+
v-model:value="value.parameters.fsType"
|
|
83
|
+
:placeholder="t('storageClass.gce-pd.filesystemType.placeholder')"
|
|
84
|
+
:label="t('storageClass.gce-pd.filesystemType.label')"
|
|
85
|
+
:mode="mode"
|
|
86
86
|
/>
|
|
87
87
|
</div>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="row">
|
|
88
90
|
<div class="col span-6">
|
|
89
91
|
<RadioGroup
|
|
90
92
|
v-model:value="availabilityZone"
|
|
@@ -93,12 +95,12 @@ export default {
|
|
|
93
95
|
:mode="mode"
|
|
94
96
|
:options="availabilityZoneOptions"
|
|
95
97
|
/>
|
|
96
|
-
<LabeledInput
|
|
97
|
-
v-if="availabilityZone === 'manual'"
|
|
98
|
-
v-model:value="value.parameters.zones"
|
|
99
|
-
class="mt-10"
|
|
100
|
-
:placeholder="t('storageClass.gce-pd.availabilityZone.placeholder')"
|
|
101
|
-
:mode="mode"
|
|
98
|
+
<LabeledInput
|
|
99
|
+
v-if="availabilityZone === 'manual'"
|
|
100
|
+
v-model:value="value.parameters.zones"
|
|
101
|
+
class="mt-10"
|
|
102
|
+
:placeholder="t('storageClass.gce-pd.availabilityZone.placeholder')"
|
|
103
|
+
:mode="mode"
|
|
102
104
|
/>
|
|
103
105
|
</div>
|
|
104
106
|
</div>
|
|
@@ -41,55 +41,57 @@ export default {
|
|
|
41
41
|
</script>
|
|
42
42
|
<template>
|
|
43
43
|
<div>
|
|
44
|
-
<div class="row
|
|
45
|
-
<div class="col span-
|
|
46
|
-
<LabeledSelect
|
|
47
|
-
v-model:value="value.parameters.diskformat"
|
|
48
|
-
:options="diskFormatOptions"
|
|
49
|
-
:label="t('storageClass.vsphere-volume.diskFormat.label')"
|
|
50
|
-
:mode="mode"
|
|
51
|
-
/>
|
|
52
|
-
</div>
|
|
53
|
-
<div class="col span-4">
|
|
54
|
-
<LabeledInput
|
|
55
|
-
v-model:value="value.parameters.storagePolicyName"
|
|
56
|
-
:placeholder="t('storageClass.vsphere-volume.storagePolicyName.placeholder')"
|
|
57
|
-
:label="t('storageClass.vsphere-volume.storagePolicyName.label')"
|
|
58
|
-
:mode="mode"
|
|
44
|
+
<div class="row">
|
|
45
|
+
<div class="col span-6">
|
|
46
|
+
<LabeledSelect
|
|
47
|
+
v-model:value="value.parameters.diskformat"
|
|
48
|
+
:options="diskFormatOptions"
|
|
49
|
+
:label="t('storageClass.vsphere-volume.diskFormat.label')"
|
|
50
|
+
:mode="mode"
|
|
59
51
|
/>
|
|
60
52
|
</div>
|
|
61
|
-
<div class="col span-
|
|
62
|
-
<LabeledInput
|
|
63
|
-
v-model:value="value.parameters.
|
|
64
|
-
:placeholder="t('storageClass.vsphere-volume.
|
|
65
|
-
:label="t('storageClass.vsphere-volume.
|
|
66
|
-
:mode="mode"
|
|
53
|
+
<div class="col span-6">
|
|
54
|
+
<LabeledInput
|
|
55
|
+
v-model:value="value.parameters.storagePolicyName"
|
|
56
|
+
:placeholder="t('storageClass.vsphere-volume.storagePolicyName.placeholder')"
|
|
57
|
+
:label="t('storageClass.vsphere-volume.storagePolicyName.label')"
|
|
58
|
+
:mode="mode"
|
|
67
59
|
/>
|
|
68
60
|
</div>
|
|
69
61
|
</div>
|
|
70
62
|
<div class="row">
|
|
71
|
-
<div class="col span-
|
|
72
|
-
<LabeledInput
|
|
73
|
-
v-model:value="value.parameters.
|
|
74
|
-
:placeholder="t('storageClass.vsphere-volume.
|
|
75
|
-
:label="t('storageClass.vsphere-volume.
|
|
76
|
-
:mode="mode"
|
|
63
|
+
<div class="col span-6">
|
|
64
|
+
<LabeledInput
|
|
65
|
+
v-model:value="value.parameters.datastore"
|
|
66
|
+
:placeholder="t('storageClass.vsphere-volume.datastore.placeholder')"
|
|
67
|
+
:label="t('storageClass.vsphere-volume.datastore.label')"
|
|
68
|
+
:mode="mode"
|
|
77
69
|
/>
|
|
78
70
|
</div>
|
|
79
|
-
<div class="col span-
|
|
80
|
-
<LabeledInput
|
|
81
|
-
v-model:value="value.parameters.
|
|
82
|
-
:placeholder="t('storageClass.vsphere-volume.
|
|
83
|
-
:label="t('storageClass.vsphere-volume.
|
|
84
|
-
:mode="mode"
|
|
71
|
+
<div class="col span-6">
|
|
72
|
+
<LabeledInput
|
|
73
|
+
v-model:value="value.parameters.hostFailuresToTolerate"
|
|
74
|
+
:placeholder="t('storageClass.vsphere-volume.hostFailuresToTolerate.placeholder')"
|
|
75
|
+
:label="t('storageClass.vsphere-volume.hostFailuresToTolerate.label')"
|
|
76
|
+
:mode="mode"
|
|
77
|
+
/>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
<div class="row">
|
|
81
|
+
<div class="col span-6">
|
|
82
|
+
<LabeledInput
|
|
83
|
+
v-model:value="value.parameters.cachereservation"
|
|
84
|
+
:placeholder="t('storageClass.vsphere-volume.cacheReservation.placeholder')"
|
|
85
|
+
:label="t('storageClass.vsphere-volume.cacheReservation.label')"
|
|
86
|
+
:mode="mode"
|
|
85
87
|
/>
|
|
86
88
|
</div>
|
|
87
|
-
<div class="col span-
|
|
88
|
-
<LabeledInput
|
|
89
|
-
v-model:value="value.parameters.fstype"
|
|
90
|
-
:placeholder="t('storageClass.vsphere-volume.filesystemType.placeholder')"
|
|
91
|
-
:label="t('storageClass.vsphere-volume.filesystemType.label')"
|
|
92
|
-
:mode="mode"
|
|
89
|
+
<div class="col span-6">
|
|
90
|
+
<LabeledInput
|
|
91
|
+
v-model:value="value.parameters.fstype"
|
|
92
|
+
:placeholder="t('storageClass.vsphere-volume.filesystemType.placeholder')"
|
|
93
|
+
:label="t('storageClass.vsphere-volume.filesystemType.label')"
|
|
94
|
+
:mode="mode"
|
|
93
95
|
/>
|
|
94
96
|
</div>
|
|
95
97
|
</div>
|
package/edit/token.vue
CHANGED
|
@@ -175,7 +175,16 @@ export default {
|
|
|
175
175
|
|
|
176
176
|
<template>
|
|
177
177
|
<div v-if="!created">
|
|
178
|
-
<div
|
|
178
|
+
<div
|
|
179
|
+
v-for="(err,idx) in errors"
|
|
180
|
+
:key="idx"
|
|
181
|
+
>
|
|
182
|
+
<Banner
|
|
183
|
+
color="error"
|
|
184
|
+
:label="err"
|
|
185
|
+
/>
|
|
186
|
+
</div>
|
|
187
|
+
<div class="pr-10">
|
|
179
188
|
<LabeledInput
|
|
180
189
|
key="description"
|
|
181
190
|
v-model:value="value.description"
|
|
@@ -184,19 +193,20 @@ export default {
|
|
|
184
193
|
mode="edit"
|
|
185
194
|
:min-height="30"
|
|
186
195
|
/>
|
|
196
|
+
<div class="mt-20">
|
|
197
|
+
<LabeledSelect
|
|
198
|
+
v-model:value="value.clusterId"
|
|
199
|
+
class="scope-select"
|
|
200
|
+
label-key="accountAndKeys.apiKeys.add.scope"
|
|
201
|
+
:options="scopes"
|
|
202
|
+
/>
|
|
203
|
+
</div>
|
|
187
204
|
|
|
188
|
-
<
|
|
189
|
-
v-model:value="value.clusterId"
|
|
190
|
-
class="mt-20 scope-select"
|
|
191
|
-
label-key="accountAndKeys.apiKeys.add.scope"
|
|
192
|
-
:options="scopes"
|
|
193
|
-
/>
|
|
194
|
-
|
|
195
|
-
<h5 class="pt-20">
|
|
205
|
+
<div style="font-size: 14px; margin-top: 32px;">
|
|
196
206
|
{{ t('accountAndKeys.apiKeys.add.expiry.label') }}
|
|
197
|
-
</
|
|
207
|
+
</div>
|
|
198
208
|
|
|
199
|
-
<div class="
|
|
209
|
+
<div class="mt-20">
|
|
200
210
|
<RadioGroup
|
|
201
211
|
v-model:value="form.expiryType"
|
|
202
212
|
:options="expiryOptions"
|
|
@@ -204,11 +214,12 @@ export default {
|
|
|
204
214
|
class="mr-20"
|
|
205
215
|
name="expiryGroup"
|
|
206
216
|
/>
|
|
207
|
-
<div class="
|
|
217
|
+
<div class="mt-20 expiry">
|
|
208
218
|
<input
|
|
209
219
|
v-model="form.customExpiry"
|
|
210
220
|
:disabled="form.expiryType !== 'custom'"
|
|
211
221
|
type="number"
|
|
222
|
+
class="expire-input"
|
|
212
223
|
:mode="mode"
|
|
213
224
|
:aria-label="t('accountAndKeys.apiKeys.add.ariaLabel.expiration')"
|
|
214
225
|
>
|
|
@@ -299,6 +310,14 @@ export default {
|
|
|
299
310
|
flex: 0 0 200px;
|
|
300
311
|
margin-right: 10px;
|
|
301
312
|
}
|
|
313
|
+
.expire-input{
|
|
314
|
+
border: solid var(--border-width) var(--input-border);
|
|
315
|
+
padding: 0px 0px 0px 11px;
|
|
316
|
+
line-height: 30px;
|
|
317
|
+
/* &['disabled']{
|
|
318
|
+
border: solid var(--border-width) var(--input-border);
|
|
319
|
+
} */
|
|
320
|
+
}
|
|
302
321
|
}
|
|
303
322
|
|
|
304
323
|
.buttons {
|
package/edit/workload/Job.vue
CHANGED
|
@@ -150,7 +150,7 @@ export default {
|
|
|
150
150
|
|
|
151
151
|
<template>
|
|
152
152
|
<form>
|
|
153
|
-
<div class="row
|
|
153
|
+
<div class="row">
|
|
154
154
|
<div
|
|
155
155
|
data-testid="input-job-completions"
|
|
156
156
|
class="col span-6"
|
|
@@ -178,7 +178,7 @@ export default {
|
|
|
178
178
|
/>
|
|
179
179
|
</div>
|
|
180
180
|
</div>
|
|
181
|
-
<div class="row
|
|
181
|
+
<div class="row">
|
|
182
182
|
<div
|
|
183
183
|
data-testid="input-job-backoffLimit"
|
|
184
184
|
class="col span-6"
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
208
208
|
</div>
|
|
209
209
|
|
|
210
210
|
<template v-if="isCronJob">
|
|
211
|
-
<div class="row
|
|
211
|
+
<div class="row ">
|
|
212
212
|
<div
|
|
213
213
|
data-testid="input-job-successful"
|
|
214
214
|
class="col span-6"
|
|
@@ -234,7 +234,7 @@ export default {
|
|
|
234
234
|
/>
|
|
235
235
|
</div>
|
|
236
236
|
</div>
|
|
237
|
-
<div class="row
|
|
237
|
+
<div class="row">
|
|
238
238
|
<div
|
|
239
239
|
data-testid="input-job-startingDeadlineSeconds"
|
|
240
240
|
class="col span-6"
|
|
@@ -274,36 +274,33 @@ export default {
|
|
|
274
274
|
</UnitInput>
|
|
275
275
|
</div>
|
|
276
276
|
</div>
|
|
277
|
-
<div
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
@update:value="update"
|
|
305
|
-
/>
|
|
306
|
-
</div>
|
|
277
|
+
<div
|
|
278
|
+
data-testid="input-job-concurrencyPolicy"
|
|
279
|
+
class="col span-8"
|
|
280
|
+
>
|
|
281
|
+
<RadioGroup
|
|
282
|
+
v-model:value="concurrencyPolicy"
|
|
283
|
+
:mode="mode"
|
|
284
|
+
:label="t('workload.upgrading.concurrencyPolicy.label')"
|
|
285
|
+
name="concurrency"
|
|
286
|
+
:options="['Allow', 'Forbid', 'Replace']"
|
|
287
|
+
:labels="[t('workload.upgrading.concurrencyPolicy.options.allow'), t('workload.upgrading.concurrencyPolicy.options.forbid'), t('workload.upgrading.concurrencyPolicy.options.replace')]"
|
|
288
|
+
@update:value="update"
|
|
289
|
+
/>
|
|
290
|
+
</div>
|
|
291
|
+
<div
|
|
292
|
+
data-testid="input-job-suspend"
|
|
293
|
+
class="col span-8"
|
|
294
|
+
>
|
|
295
|
+
<RadioGroup
|
|
296
|
+
v-model:value="suspend"
|
|
297
|
+
:mode="mode"
|
|
298
|
+
:label="t('workload.job.suspend')"
|
|
299
|
+
name="suspend"
|
|
300
|
+
:options="[true, false]"
|
|
301
|
+
:labels="['Yes', 'No']"
|
|
302
|
+
@update:value="update"
|
|
303
|
+
/>
|
|
307
304
|
</div>
|
|
308
305
|
</template>
|
|
309
306
|
<div
|
|
@@ -223,7 +223,7 @@ export default {
|
|
|
223
223
|
<!--workload spec.upgradeStrategy -->
|
|
224
224
|
<div
|
|
225
225
|
v-if="strategyOptions && !noDeploymentSpec"
|
|
226
|
-
class="row
|
|
226
|
+
class="row"
|
|
227
227
|
>
|
|
228
228
|
<div
|
|
229
229
|
class="col"
|
|
@@ -241,7 +241,7 @@ export default {
|
|
|
241
241
|
</div>
|
|
242
242
|
<div
|
|
243
243
|
v-if="isStatefulSet && !noDeploymentSpec"
|
|
244
|
-
class="row
|
|
244
|
+
class="row"
|
|
245
245
|
>
|
|
246
246
|
<div
|
|
247
247
|
class="col span-6"
|
|
@@ -252,7 +252,7 @@ export default {
|
|
|
252
252
|
name="podManagement"
|
|
253
253
|
:mode="mode"
|
|
254
254
|
:label="t('workload.upgrading.podManagementPolicy.label')"
|
|
255
|
-
:options="['OrderedReady', 'Parallel']"
|
|
255
|
+
:options="['OrderedReady (顺序就绪模式)', 'Parallel (并行模式)']"
|
|
256
256
|
@update:value="update"
|
|
257
257
|
/>
|
|
258
258
|
</div>
|
|
@@ -260,7 +260,7 @@ export default {
|
|
|
260
260
|
<template v-if="strategy === 'RollingUpdate' && !noDeploymentSpec">
|
|
261
261
|
<div
|
|
262
262
|
v-if="isDeployment || isDaemonSet"
|
|
263
|
-
class="row
|
|
263
|
+
class="row"
|
|
264
264
|
data-testid="input-policy-surge"
|
|
265
265
|
>
|
|
266
266
|
<div
|
|
@@ -299,7 +299,7 @@ export default {
|
|
|
299
299
|
<!-- workload spec -->
|
|
300
300
|
<div
|
|
301
301
|
v-if="!noDeploymentSpec"
|
|
302
|
-
class="row
|
|
302
|
+
class="row"
|
|
303
303
|
>
|
|
304
304
|
<div
|
|
305
305
|
v-if="!isStatefulSet"
|