@rancher/shell 1.2.3 → 2.0.1
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/data/aws-regions.json +9 -0
- package/assets/images/vendor/openid.svg +18 -0
- package/assets/styles/app.scss +1 -2
- package/assets/styles/fonts/_icons.scss +3 -3
- package/assets/styles/global/_columns.scss +1 -1
- package/assets/styles/global/_labeled-input.scss +1 -0
- package/assets/styles/global/_layout.scss +99 -0
- package/assets/styles/themes/_csp.scss +2 -2
- package/assets/styles/themes/_dark.scss +8 -2
- package/assets/styles/themes/_light.scss +2 -1
- package/assets/styles/themes/_suse.scss +1 -1
- package/assets/styles/vendor/vue-select.scss +5 -0
- package/assets/translations/en-us.yaml +315 -64
- package/assets/translations/zh-hans.yaml +7 -31
- package/babel.config.js +8 -2
- package/chart/__tests__/S3.test.ts +9 -2
- package/chart/gatekeeper.vue +2 -11
- package/chart/istio.vue +1 -10
- package/chart/logging/index.vue +2 -11
- package/chart/monitoring/alerting/index.vue +7 -21
- package/chart/monitoring/grafana/index.vue +61 -2
- package/chart/monitoring/index.vue +52 -26
- package/chart/monitoring/prometheus/index.vue +39 -45
- package/chart/rancher-backup/S3.vue +11 -9
- package/chart/rancher-backup/index.vue +18 -15
- package/cloud-credential/__tests__/harvester.test.ts +18 -0
- package/cloud-credential/azure.vue +4 -17
- package/cloud-credential/generic.vue +18 -9
- package/cloud-credential/harvester.vue +11 -3
- package/components/AlertTable.vue +17 -7
- package/components/AppModal.vue +167 -0
- package/components/AssignTo.vue +7 -4
- package/components/AsyncButton.vue +27 -5
- package/components/BackLink.vue +4 -4
- package/components/BannerGraphic.vue +1 -0
- package/components/BrandImage.vue +47 -1
- package/components/Carousel.vue +15 -8
- package/components/Certificates.vue +161 -0
- package/components/ClusterBadge.vue +12 -3
- package/components/ClusterIconMenu.vue +55 -12
- package/components/ClusterProviderIcon.vue +14 -3
- package/components/CodeMirror.vue +111 -17
- package/components/CommunityLinks.vue +12 -8
- package/components/CopyCode.vue +6 -2
- package/components/CopyToClipboard.vue +2 -1
- package/components/CopyToClipboardText.vue +14 -9
- package/components/CreateDriver.vue +81 -0
- package/components/CruResource.vue +52 -27
- package/components/DetailTop.vue +2 -2
- package/components/Dialog.vue +6 -5
- package/components/DisableAuthProviderModal.vue +14 -8
- package/components/DraggableZone.vue +2 -2
- package/components/EtcdInfoBanner.vue +5 -5
- package/components/ExplorerMembers.vue +3 -3
- package/components/ExplorerProjectsNamespaces.vue +31 -7
- package/components/FixedBanner.vue +48 -36
- package/components/GlobalRoleBindings.vue +26 -0
- package/components/GrafanaDashboard.vue +6 -4
- package/components/IconOrSvg.vue +1 -1
- package/components/Import.vue +10 -6
- package/components/Inactivity.vue +1 -5
- package/components/KeyValueView.vue +14 -10
- package/components/Markdown.vue +16 -12
- package/components/MessageLink.vue +2 -2
- package/components/ModalWithCard.vue +5 -8
- package/components/MoveModal.vue +35 -33
- package/components/PodSecurityAdmission.vue +3 -3
- package/components/PromptChangePassword.vue +33 -33
- package/components/PromptModal.vue +11 -21
- package/components/PromptRemove.vue +12 -17
- package/components/PromptRestore.vue +18 -16
- package/components/Questions/__tests__/Boolean.test.ts +9 -19
- package/components/Questions/__tests__/Float.test.ts +9 -19
- package/components/Questions/__tests__/Int.test.ts +9 -19
- package/components/Questions/__tests__/String.test.ts +9 -19
- package/components/Questions/__tests__/Yaml.test.ts +9 -20
- package/components/Questions/__tests__/utils/questions-defaults.ts +20 -0
- package/components/Questions/index.vue +19 -3
- package/components/ResourceCancelModal.vue +34 -29
- package/components/ResourceDetail/Masthead.vue +48 -16
- package/components/ResourceDetail/index.vue +6 -4
- package/components/ResourceList/Masthead.vue +10 -9
- package/components/ResourceList/index.vue +65 -14
- package/components/ResourceTable.vue +87 -21
- package/components/ResourceYaml.vue +35 -5
- package/components/SelectIconGrid.vue +3 -3
- package/components/SideNav.vue +50 -94
- package/components/SingleClusterInfo.vue +4 -4
- package/components/SortableTable/THead.vue +33 -21
- package/components/SortableTable/filtering.js +9 -1
- package/components/SortableTable/grouping.js +8 -1
- package/components/SortableTable/index.vue +143 -44
- package/components/SortableTable/paging.js +36 -7
- package/components/SortableTable/selection.js +2 -1
- package/components/SortableTable/sorting.js +24 -7
- package/components/StatusTable.vue +5 -1
- package/components/Tabbed/index.vue +18 -1
- package/components/TableDataUserIcon.vue +47 -0
- package/components/TypeDescription.vue +1 -0
- package/components/Wizard.vue +1 -0
- package/components/YamlEditor.vue +1 -0
- package/components/__tests__/AppModal.test.ts +98 -0
- package/components/__tests__/AsyncButton.test.ts +1 -3
- package/components/__tests__/BackLink.test.ts +1 -1
- package/components/__tests__/ButtonGroup.test.ts +3 -6
- package/components/__tests__/Carousel.test.ts +43 -0
- package/components/__tests__/Certificates.test.ts +29 -0
- package/components/__tests__/CodeMirror.test.ts +87 -0
- package/components/__tests__/CopyCode.test.ts +5 -4
- package/components/__tests__/CruResource.test.ts +10 -9
- package/components/__tests__/EtcdInfoBanner.test.ts +37 -0
- package/components/__tests__/FixedBanner.test.ts +5 -20
- package/components/__tests__/NamespaceFilter.test.ts +9 -18
- package/components/__tests__/TabTitle.test.ts +129 -0
- package/components/auth/AzureWarning.vue +2 -2
- package/components/auth/RoleDetailEdit.vue +10 -0
- package/components/auth/__tests__/RoleDetailEdit.test.ts +3 -2
- package/components/auth/login/oidc.vue +7 -1
- package/components/fleet/FleetBundles.vue +5 -11
- package/components/fleet/FleetClusters.vue +9 -9
- package/components/fleet/FleetIntro.vue +11 -17
- package/components/fleet/FleetNoWorkspaces.vue +2 -2
- package/components/fleet/FleetRepos.vue +63 -27
- package/components/fleet/FleetResources.vue +6 -1
- package/components/fleet/FleetStatus.vue +3 -3
- package/components/fleet/FleetSummary.vue +35 -30
- package/components/fleet/ForceDirectedTreeChart/index.vue +9 -3
- package/components/fleet/__tests__/FleetSummary.test.ts +316 -0
- package/components/form/ArrayList.vue +22 -18
- package/components/form/ArrayListSelect.vue +5 -0
- package/components/form/BannerSettings.vue +3 -0
- package/components/form/ClusterAppearance.vue +132 -0
- package/components/form/ColorInput.vue +1 -0
- package/components/form/Error.vue +3 -3
- package/components/form/FileSelector.vue +1 -0
- package/components/form/Footer.vue +2 -2
- package/components/form/GitPicker.vue +83 -38
- package/components/form/KeyValue.vue +70 -48
- package/components/form/LabeledSelect.vue +145 -41
- package/components/form/Labels.vue +3 -1
- package/components/form/NameNsDescription.vue +26 -9
- package/components/form/Password.vue +3 -1
- package/components/form/ResourceLabeledSelect.vue +187 -0
- package/components/form/ResourceTabs/index.vue +31 -15
- package/components/form/SecretSelector.vue +93 -18
- package/components/form/SelectOrCreateAuthSecret.vue +132 -59
- package/components/form/SimpleSecretSelector.vue +88 -28
- package/components/form/Taints.vue +13 -7
- package/components/form/__tests__/BannerSettings.test.ts +53 -0
- package/components/form/__tests__/KeyValue.test.ts +120 -11
- package/components/form/__tests__/LabeledSelect.test.ts +0 -18
- package/components/form/__tests__/{NameNsDescription.ts → NameNsDescription.test.ts} +25 -15
- package/components/form/__tests__/Taints.test.ts +70 -0
- package/components/form/labeled-select-utils/labeled-select-pagination.ts +151 -0
- package/components/form/labeled-select-utils/labeled-select.utils.ts +122 -0
- package/components/formatter/AppSummaryGraph.vue +2 -2
- package/components/formatter/Checked.vue +11 -3
- package/components/formatter/CloudCredPublicData.vue +30 -0
- package/components/formatter/ClusterLink.vue +2 -2
- package/components/formatter/ClusterProvider.vue +1 -18
- package/components/formatter/FleetClusterSummaryGraph.vue +27 -0
- package/components/formatter/FleetSummaryGraph.vue +25 -12
- package/components/formatter/ImagePercentageBar.vue +0 -4
- package/components/formatter/IngressTarget.vue +18 -7
- package/components/formatter/Link.vue +2 -2
- package/components/formatter/LinkDetail.vue +2 -2
- package/components/formatter/LinkDetailImage.vue +2 -2
- package/components/formatter/LinkName.vue +2 -2
- package/components/formatter/LiveDuration.vue +1 -1
- package/components/formatter/PercentageBar.vue +1 -1
- package/components/formatter/PrincipalGroupBindings.vue +2 -2
- package/components/formatter/SecretType.vue +2 -2
- package/components/formatter/VirtualServiceGateways.vue +2 -2
- package/components/formatter/WorkloadDetailEndpoints.vue +12 -22
- package/components/formatter/__tests__/Checked.test.ts +19 -0
- package/components/formatter/__tests__/LinkDetail.test.ts +5 -5
- package/components/formatter/__tests__/WorkloadDetailEndpoints.test.ts +81 -0
- package/components/nav/Group.vue +9 -7
- package/components/nav/Header.vue +85 -46
- package/components/nav/Jump.vue +19 -9
- package/components/nav/NamespaceFilter.vue +8 -1
- package/components/nav/TopLevelMenu.vue +392 -136
- package/components/nav/Type.vue +71 -106
- package/components/nav/WindowManager/ContainerLogs.vue +120 -19
- package/components/nav/WindowManager/ContainerShell.vue +6 -1
- package/components/nav/WindowManager/__tests__/ContainerLogs.test.ts +186 -0
- package/components/nav/WindowManager/index.vue +11 -10
- package/components/nav/__tests__/TopLevelMenu.test.ts +400 -6
- package/components/nav/__tests__/Type.test.ts +322 -97
- package/components/nuxt/nuxt-child.js +9 -78
- package/components/nuxt/nuxt-error.vue +1 -1
- package/components/nuxt/nuxt-link.client.js +13 -95
- package/{layouts → components/templates}/blank.vue +1 -1
- package/{layouts → components/templates}/default.vue +11 -101
- package/{layouts → components/templates}/error.vue +13 -26
- package/{layouts → components/templates}/home.vue +4 -1
- package/{layouts → components/templates}/plain.vue +4 -1
- package/{layouts → components/templates}/standalone.vue +1 -5
- package/{layouts → components/templates}/unauthenticated.vue +2 -3
- package/composables/useCompactInput.test.ts +36 -0
- package/composables/useCompactInput.ts +20 -0
- package/composables/useLabeledFormElement.test.ts +135 -0
- package/composables/useLabeledFormElement.ts +138 -0
- package/config/harvester-manager-types.js +2 -0
- package/config/home-links.js +2 -1
- package/config/labels-annotations.js +2 -1
- package/config/middleware.js +0 -6
- package/config/pagination-table-headers.js +57 -0
- package/config/pod-security-admission.ts +1 -1
- package/config/private-label.js +21 -1
- package/config/product/auth.js +1 -0
- package/config/product/explorer.js +166 -45
- package/config/product/fleet.js +6 -1
- package/config/product/legacy.js +2 -11
- package/config/product/manager.js +51 -25
- package/config/query-params.js +2 -0
- package/config/roles.ts +23 -0
- package/config/router/index.js +23 -0
- package/config/router/navigation-guards/attempt-first-login.js +73 -0
- package/config/router/navigation-guards/authentication.js +63 -0
- package/config/router/navigation-guards/i18n.js +13 -0
- package/config/router/navigation-guards/index.js +16 -0
- package/config/router/navigation-guards/load-initial-settings.js +15 -0
- package/config/router/routes.js +487 -0
- package/config/settings.ts +31 -2
- package/config/store.js +8 -4
- package/config/system-namespaces.js +3 -0
- package/config/table-headers.js +66 -1
- package/config/types.js +35 -20
- package/config/uiplugins.js +10 -5
- package/core/plugin-helpers.js +4 -6
- package/core/plugin-routes.ts +56 -114
- package/core/plugin.ts +18 -11
- package/core/plugins-loader.js +7 -9
- package/core/plugins.js +289 -285
- package/core/types-provisioning.ts +7 -0
- package/creators/app/app.package.json +2 -1
- package/creators/app/files/.eslintignore +0 -2
- package/creators/app/files/.gitlab-ci.yml +14 -0
- package/creators/app/files/.vscode/settings.json +0 -1
- package/creators/app/init +19 -0
- package/creators/pkg/files/.github/workflows/build-extension-catalog.yml +2 -6
- package/creators/pkg/files/.github/workflows/build-extension-charts.yml +2 -6
- package/creators/pkg/init +32 -0
- package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +119 -0
- package/detail/__tests__/service.test.ts +62 -0
- package/detail/catalog.cattle.io.app.vue +1 -1
- package/detail/cis.cattle.io.clusterscan.vue +14 -3
- package/detail/fleet.cattle.io.bundle.vue +1 -1
- package/detail/fleet.cattle.io.cluster.vue +11 -1
- package/detail/fleet.cattle.io.gitrepo.vue +15 -9
- package/detail/namespace.vue +2 -2
- package/detail/networking.k8s.io.ingress.vue +52 -19
- package/detail/node.vue +22 -3
- package/detail/provisioning.cattle.io.cluster.vue +31 -13
- package/detail/service.vue +1 -1
- package/detail/workload/index.vue +1 -0
- package/dialog/AddCustomBadgeDialog.vue +318 -161
- package/dialog/DeactivateDriverDialog.vue +137 -0
- package/dialog/RollbackWorkloadDialog.vue +2 -2
- package/dialog/RotateCertificatesDialog.vue +0 -21
- package/dialog/ScaleMachineDownDialog.vue +34 -17
- package/directives/clean-html.js +15 -0
- package/directives/clean-tooltip.js +32 -0
- package/directives/focus.js +41 -0
- package/directives/int-number.js +21 -0
- package/directives/positive-int-number.js +19 -0
- package/directives/trim-whitespace.js +19 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +3 -2
- package/edit/__tests__/kontainerDriver.test.ts +107 -0
- package/edit/__tests__/management.cattle.io.clusterroletemplatebinding.test.ts +12 -1
- package/edit/__tests__/management.cattle.io.setting.test.ts +2 -1
- package/edit/__tests__/monitoring.coreos.com.prometheusrule.test.ts +2 -3
- package/edit/__tests__/nodeDriver.test.ts +107 -0
- package/edit/__tests__/service.test.ts +85 -0
- package/edit/__tests__/ui.cattle.io.navlink.test.ts +3 -1
- package/edit/auth/AuthProviderWarningBanners.vue +34 -0
- package/edit/auth/__tests__/AuthProviderWarningBanners.test.ts +19 -0
- package/edit/auth/__tests__/azuread.test.ts +241 -0
- package/edit/auth/__tests__/oidc.test.ts +137 -0
- package/edit/auth/azuread.vue +133 -31
- package/edit/auth/github.vue +5 -17
- package/edit/auth/googleoauth.vue +6 -23
- package/edit/auth/ldap/index.vue +5 -17
- package/edit/auth/oidc.vue +143 -42
- package/edit/auth/saml.vue +5 -14
- package/edit/catalog.cattle.io.clusterrepo.vue +177 -9
- package/edit/cis.cattle.io.clusterscan.vue +5 -2
- package/edit/cis.cattle.io.clusterscanbenchmark.vue +41 -9
- package/edit/cloudcredential.vue +28 -4
- package/edit/configmap.vue +10 -4
- package/edit/fleet.cattle.io.gitrepo.vue +3 -1
- package/edit/helm.cattle.io.projecthelmchart.vue +29 -19
- package/edit/kontainerDriver.vue +65 -0
- package/edit/logging-flow/Match.vue +10 -9
- package/edit/logging-flow/index.vue +4 -19
- package/edit/logging.banzaicloud.io.output/__tests__/logging.banzaicloud.io.output.test.ts +232 -2
- package/edit/logging.banzaicloud.io.output/index.vue +43 -26
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +3 -3
- package/edit/management.cattle.io.project.vue +3 -53
- package/edit/management.cattle.io.setting.vue +52 -2
- package/edit/management.cattle.io.user.vue +2 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +10 -7
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +21 -16
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +2 -2
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +1 -1
- package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +15 -3
- package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +4 -1
- package/edit/monitoring.coreos.com.prometheusrule/RecordingRule.vue +2 -0
- package/edit/monitoring.coreos.com.prometheusrule/index.vue +2 -0
- package/edit/networking.k8s.io.ingress/Rules.vue +8 -3
- package/edit/networking.k8s.io.ingress/index.vue +64 -8
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +1 -0
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +6 -2
- package/edit/networking.k8s.io.networkpolicy/__tests__/{PolicyRuleTarget.spec.ts → PolicyRuleTarget.test.ts} +46 -7
- package/edit/networking.k8s.io.networkpolicy/__tests__/utils/{selectors.ts → selectors.test.ts} +1 -1
- package/edit/networking.k8s.io.networkpolicy/index.vue +2 -0
- package/edit/nodeDriver.vue +65 -0
- package/edit/persistentvolume/index.vue +2 -2
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +33 -16
- package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +276 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +473 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/{CustomCommand.tests.ts → CustomCommand.test.ts} +3 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +228 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +73 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +77 -13
- package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +391 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +4 -4
- package/edit/provisioning.cattle.io.cluster/index.vue +126 -51
- package/edit/provisioning.cattle.io.cluster/rke2.vue +325 -791
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +137 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +217 -0
- package/edit/provisioning.cattle.io.cluster/{Basics.vue → tabs/Basics.vue} +123 -129
- package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +132 -0
- package/edit/provisioning.cattle.io.cluster/{MachinePool.vue → tabs/MachinePool.vue} +1 -0
- package/edit/provisioning.cattle.io.cluster/{S3Config.vue → tabs/etcd/S3Config.vue} +1 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +135 -0
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +190 -0
- package/edit/provisioning.cattle.io.cluster/{RegistryConfigs.vue → tabs/registries/RegistryConfigs.vue} +3 -0
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +148 -0
- package/edit/provisioning.cattle.io.cluster/tabs/upgrade/index.vue +76 -0
- package/edit/resources.cattle.io.backup.vue +139 -124
- package/edit/resources.cattle.io.restore.vue +146 -126
- package/edit/service.vue +13 -0
- package/edit/serviceaccount.vue +46 -4
- package/edit/token.vue +3 -1
- package/edit/workload/Upgrading.vue +3 -2
- package/edit/workload/__tests__/Job.test.ts +1 -3
- package/edit/workload/__tests__/Upgrading.test.ts +2 -2
- package/edit/workload/index.vue +2 -1
- package/edit/workload/mixins/workload.js +35 -2
- package/edit/workload/storage/emptyDir.vue +2 -2
- package/initialize/App.vue +75 -0
- package/initialize/app-extended.js +128 -0
- package/initialize/entry-helpers.js +546 -0
- package/initialize/entry.js +32 -0
- package/initialize/install-components.js +23 -0
- package/initialize/install-directives.js +59 -0
- package/initialize/install-plugins.js +123 -0
- package/list/__tests__/workload.test.ts +1 -1
- package/list/catalog.cattle.io.app.vue +1 -0
- package/list/cis.cattle.io.clusterscan.vue +16 -10
- package/list/group.principal.vue +2 -2
- package/list/management.cattle.io.feature.vue +16 -16
- package/list/management.cattle.io.setting.vue +1 -0
- package/list/management.cattle.io.user.vue +13 -4
- package/list/networking.k8s.io.ingress.vue +36 -0
- package/list/node.vue +212 -73
- package/list/provisioning.cattle.io.cluster.vue +17 -4
- package/list/ui.cattle.io.navlink.vue +2 -2
- package/list/workload.vue +22 -0
- package/machine-config/__tests__/vmwarevsphere-pool-config-merge.test.ts +30 -0
- package/machine-config/__tests__/vmwarevsphere.test.ts +1 -3
- package/machine-config/amazonec2.vue +1 -1
- package/machine-config/azure.vue +2 -1
- package/machine-config/generic.vue +11 -15
- package/machine-config/vmwarevsphere-pool-config-merge.ts +25 -0
- package/machine-config/vmwarevsphere.vue +31 -27
- package/middleware/authenticated.js +23 -399
- package/mixins/__tests__/chart.test.ts +48 -6
- package/mixins/__tests__/create-edit-view.test.ts +2 -3
- package/mixins/auth-config.js +5 -9
- package/mixins/brand.js +102 -96
- package/mixins/chart.js +27 -13
- package/mixins/create-edit-view/index.js +2 -2
- package/mixins/fetch.client.js +42 -48
- package/mixins/labeled-form-element.ts +27 -2
- package/mixins/page-actions.js +7 -5
- package/mixins/resource-fetch-api-pagination.js +304 -0
- package/mixins/resource-fetch-namespaced.js +1 -1
- package/mixins/resource-fetch.js +46 -5
- package/models/__tests__/cluster.test.ts +44 -0
- package/models/__tests__/fleet.cattle.io.cluster.test.ts +36 -0
- package/models/__tests__/management.cattle.io.cluster.test.ts +23 -0
- package/models/__tests__/management.cattle.io.node.ts +85 -0
- package/models/__tests__/management.cattle.io.nodepool.ts +83 -0
- package/models/__tests__/namespace.test.ts +49 -9
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +241 -0
- package/models/__tests__/schema.tests.ts +24 -0
- package/models/__tests__/secret.test.ts +37 -0
- package/models/__tests__/steve-schema.test.ts +73 -0
- package/models/__tests__/storage.k8s.io.storageclass.test.ts +22 -0
- package/models/__tests__/workload.test.ts +91 -0
- package/models/catalog.cattle.io.app.js +8 -0
- package/models/catalog.cattle.io.clusterrepo.js +9 -1
- package/models/catalog.cattle.io.uiplugin.js +7 -8
- package/models/cis.cattle.io.clusterscan.js +29 -8
- package/models/cloudcredential.js +9 -1
- package/models/cluster/node.js +8 -4
- package/models/cluster/schema.js +6 -0
- package/models/cluster.js +33 -0
- package/models/cluster.x-k8s.io.machine.js +1 -1
- package/models/cluster.x-k8s.io.machinedeployment.js +14 -0
- package/models/driver.js +63 -0
- package/models/fleet.cattle.io.cluster.js +27 -11
- package/models/fleet.cattle.io.gitrepo.js +66 -13
- package/models/helm.cattle.io.projecthelmchart.js +1 -1
- package/models/kontainerdriver.js +85 -0
- package/models/management/schema.js +6 -0
- package/models/management.cattle.io.authconfig.js +3 -2
- package/models/management.cattle.io.cluster.js +16 -7
- package/models/management.cattle.io.globalrole.js +2 -0
- package/models/management.cattle.io.kontainerdriver.js +1 -0
- package/models/management.cattle.io.node.js +18 -14
- package/models/management.cattle.io.nodepool.js +17 -0
- package/models/management.cattle.io.project.js +0 -36
- package/models/management.cattle.io.setting.js +11 -7
- package/models/management.cattle.io.user.js +2 -2
- package/models/monitoring.coreos.com.receiver.js +3 -1
- package/models/monitoring.coreos.com.route.js +1 -1
- package/models/namespace.js +1 -1
- package/models/networking.k8s.io.ingress.js +2 -1
- package/models/nodedriver.js +85 -0
- package/models/pod.js +20 -0
- package/models/provisioning.cattle.io.cluster.js +125 -10
- package/models/schema.js +28 -7
- package/models/secret.js +126 -18
- package/models/service.js +2 -0
- package/models/steve-schema.ts +254 -0
- package/models/storage.k8s.io.storageclass.js +1 -1
- package/models/workload.js +17 -0
- package/models/workload.service.js +18 -0
- package/package.json +18 -14
- package/pages/about.vue +12 -6
- package/pages/account/create-key.vue +0 -1
- package/pages/account/index.vue +7 -3
- package/pages/auth/login.vue +106 -103
- package/pages/auth/logout.vue +2 -4
- package/pages/auth/setup.vue +92 -66
- package/pages/auth/verify.vue +30 -24
- package/pages/c/_cluster/apps/charts/__tests__/install.helper.test.ts +2 -17
- package/pages/c/_cluster/apps/charts/chart.vue +54 -9
- package/pages/c/_cluster/apps/charts/index.vue +99 -69
- package/pages/c/_cluster/apps/charts/install.helpers.js +2 -13
- package/pages/c/_cluster/apps/charts/install.vue +12 -11
- package/pages/c/_cluster/auth/config/_id.vue +0 -6
- package/pages/c/_cluster/auth/config/index.vue +15 -9
- package/pages/c/_cluster/auth/roles/index.vue +8 -10
- package/pages/c/_cluster/ecm/index.vue +0 -2
- package/pages/c/_cluster/explorer/ConfigBadge.vue +13 -8
- package/pages/c/_cluster/explorer/EventsTable.vue +18 -0
- package/pages/c/_cluster/explorer/__tests__/index.test.ts +181 -0
- package/pages/c/_cluster/explorer/index.vue +253 -91
- package/pages/c/_cluster/explorer/tools/__tests__/index.test.ts +69 -0
- package/pages/c/_cluster/explorer/tools/index.vue +10 -6
- package/pages/c/_cluster/fleet/index.vue +89 -94
- package/pages/c/_cluster/longhorn/__tests__/longhorn.index.test.ts +89 -0
- package/pages/c/_cluster/longhorn/index.vue +52 -17
- package/pages/c/_cluster/manager/cloudCredential/index.vue +18 -25
- package/pages/c/_cluster/manager/drivers/kontainerDriver/_id.vue +12 -0
- package/pages/c/_cluster/manager/drivers/kontainerDriver/create.vue +15 -0
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +91 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/_id.vue +12 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/create.vue +15 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/index.vue +60 -0
- package/pages/c/_cluster/manager/jwt.authentication/index.vue +235 -0
- package/pages/c/_cluster/manager/pages/_page.vue +4 -5
- package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +4 -0
- package/pages/c/_cluster/monitoring/route-receiver/index.vue +2 -2
- package/pages/c/_cluster/neuvector/index.vue +1 -0
- package/pages/c/_cluster/settings/DefaultLinksEditor.vue +1 -0
- package/pages/c/_cluster/settings/banners.vue +86 -10
- package/pages/c/_cluster/settings/brand.vue +261 -38
- package/pages/c/_cluster/settings/index.vue +4 -6
- package/pages/c/_cluster/settings/links.vue +3 -2
- package/pages/c/_cluster/settings/performance.vue +71 -3
- package/pages/c/_cluster/uiplugins/AddExtensionRepos.vue +5 -2
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +12 -8
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue +9 -6
- package/pages/c/_cluster/uiplugins/CatalogList/index.vue +10 -46
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +11 -5
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +55 -19
- package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +36 -301
- package/pages/c/_cluster/uiplugins/UninstallDialog.vue +14 -6
- package/pages/c/_cluster/uiplugins/__tests__/SetupUIPlugins.test.ts +52 -106
- package/pages/c/_cluster/uiplugins/index.vue +38 -54
- package/pages/diagnostic.vue +2 -2
- package/pages/fail-whale.vue +103 -42
- package/pages/home.vue +81 -24
- package/pages/prefs.vue +8 -4
- package/pages/support/index.vue +14 -10
- package/pkg/auto-import.js +1 -1
- package/plugins/axios.js +0 -36
- package/plugins/back-button.js +3 -5
- package/plugins/clean-html-directive.js +5 -30
- package/plugins/clean-html.js +53 -0
- package/plugins/clean-tooltip-directive.js +6 -31
- package/plugins/codemirror-loader.js +1 -1
- package/plugins/codemirror.js +41 -9
- package/plugins/dashboard-store/__tests__/mutations.test.ts +389 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +49 -0
- package/plugins/dashboard-store/__tests__/utils/store-mocks.ts +7 -0
- package/plugins/dashboard-store/actions.js +132 -25
- package/plugins/dashboard-store/classify.js +1 -18
- package/plugins/dashboard-store/getters.js +154 -44
- package/plugins/dashboard-store/index.js +0 -111
- package/plugins/dashboard-store/mutations.js +150 -52
- package/plugins/dashboard-store/resource-class.js +77 -127
- package/plugins/directives.js +6 -39
- package/plugins/ember-cookie.js +13 -0
- package/plugins/global-formatters.js +26 -5
- package/plugins/i18n.js +89 -55
- package/plugins/int-number.js +6 -20
- package/plugins/plugin.js +3 -3
- package/plugins/positive-int-number.js +6 -17
- package/plugins/steve/__tests__/{getters.spec.ts → getters.test.ts} +81 -10
- package/plugins/steve/__tests__/mutations.test.ts +49 -0
- package/plugins/steve/__tests__/resource-utils.test.ts +159 -0
- package/plugins/steve/__tests__/steve-class.test.ts +59 -0
- package/plugins/steve/__tests__/subscribe.spec.ts +4 -1
- package/plugins/steve/__tests__/utils/mutation.test.helpers.ts +105 -0
- package/plugins/steve/__tests__/utils/steve-mocks.ts +31 -0
- package/plugins/steve/accept-or-reject-socket-message.ts +103 -0
- package/plugins/steve/actions.js +3 -38
- package/plugins/steve/getters.js +164 -61
- package/plugins/steve/hybrid-class.js +5 -1
- package/plugins/steve/mutations.js +24 -3
- package/plugins/steve/norman-class.js +142 -2
- package/{utils → plugins/steve}/projectAndNamespaceFiltering.utils.ts +28 -10
- package/plugins/steve/resource-utils.ts +38 -0
- package/plugins/steve/schema.d.ts +22 -0
- package/plugins/steve/steve-class.js +22 -0
- package/plugins/steve/steve-pagination-utils.ts +368 -0
- package/plugins/steve/subscribe.js +17 -76
- package/plugins/trim-whitespace.js +6 -34
- package/plugins/vue-js-modal.js +1 -1
- package/promptRemove/pod.vue +15 -7
- package/public/index.html +1 -0
- package/rancher-components/Accordion/Accordion.test.ts +45 -0
- package/rancher-components/Accordion/Accordion.vue +86 -0
- package/rancher-components/Accordion/index.ts +1 -0
- package/rancher-components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/Banner/Banner.test.ts +1 -5
- package/rancher-components/Banner/Banner.vue +2 -2
- package/rancher-components/Card/Card.vue +4 -4
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -3
- package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +18 -1
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +57 -24
- package/rancher-components/Form/Radio/RadioButton.test.ts +1 -3
- package/rancher-components/Form/Radio/RadioButton.vue +13 -7
- package/rancher-components/Form/Radio/RadioGroup.vue +4 -3
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +6 -4
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
- package/rancher-components/StringList/StringList.test.ts +270 -0
- package/rancher-components/StringList/StringList.vue +65 -26
- package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +69 -0
- package/scripts/clean +1 -1
- package/scripts/extension/bundle +19 -7
- package/scripts/extension/helm/charts/ui-plugin-server/templates/_helpers.tpl +11 -0
- package/scripts/extension/helm/charts/ui-plugin-server/templates/cr.yaml +2 -0
- package/scripts/extension/helm/charts/ui-plugin-server/values.yaml +2 -0
- package/scripts/extension/helm/package/Dockerfile +1 -1
- package/scripts/extension/helm/scripts/package +11 -3
- package/scripts/extension/helm/scripts/patch +27 -0
- package/scripts/extension/parse-tag-name +4 -4
- package/scripts/extension/publish +25 -14
- package/scripts/publish-shell.sh +11 -1
- package/scripts/serve-pkgs +0 -2
- package/scripts/test-plugins-build.sh +87 -11
- package/scripts/vue-migrate.js +683 -0
- package/server/har-file.js +183 -0
- package/store/__tests__/catalog.test.ts +224 -0
- package/store/__tests__/type-map.test.ts +1122 -0
- package/store/auth.js +23 -4
- package/store/aws.js +53 -6
- package/store/catalog.js +22 -6
- package/store/cru-resource.ts +26 -0
- package/store/customisation.js +35 -0
- package/store/features.js +7 -4
- package/store/i18n.js +11 -0
- package/store/index.js +140 -49
- package/store/plugins.js +8 -4
- package/store/prefs.js +33 -38
- package/store/type-map.js +288 -213
- package/store/type-map.utils.ts +226 -0
- package/tsconfig.json +34 -9
- package/tsconfig.paths.json +21 -0
- package/types/components/labeledSelect.ts +50 -0
- package/types/resources/settings.d.ts +32 -0
- package/types/{userPreferences.d.ts → resources/userPreferences.d.ts} +0 -1
- package/types/shell/index.d.ts +1045 -770
- package/types/store/dashboard-store.types.ts +42 -0
- package/types/store/pagination.types.ts +457 -0
- package/types/store/type-map.ts +30 -0
- package/types/store/vuex.d.ts +9 -0
- package/types/vue-shim.d.ts +51 -0
- package/utils/__tests__/cluster.test.ts +20 -18
- package/utils/__tests__/create-yaml.test.ts +359 -2
- package/utils/__tests__/kontainer.test.ts +180 -0
- package/utils/__tests__/pod-security-admission.test.ts +1 -1
- package/utils/alertmanagerconfig.js +19 -0
- package/utils/array.ts +40 -1
- package/utils/async.ts +2 -0
- package/utils/auth.js +152 -4
- package/utils/axios.js +2 -21
- package/utils/azure.js +24 -0
- package/utils/banners.js +103 -0
- package/utils/clipboard.js +5 -0
- package/utils/cluster.js +1 -1
- package/utils/config.js +4 -0
- package/utils/create-yaml.js +59 -28
- package/utils/custom-validators.js +0 -2
- package/utils/error.js +41 -1
- package/utils/formatter.js +5 -3
- package/utils/git.ts +1 -1
- package/utils/install-redirect.js +1 -1
- package/utils/kontainer.ts +190 -0
- package/utils/object.js +24 -0
- package/utils/pagination-utils.ts +154 -0
- package/utils/pod-security-admission.ts +1 -1
- package/utils/router.js +86 -0
- package/utils/settings.ts +46 -0
- package/utils/time.js +2 -1
- package/utils/unit-tests/ChildRenderingRouterLinkStub.ts +36 -0
- package/utils/url.ts +1 -1
- package/utils/validators/formRules/__tests__/index.test.ts +70 -4
- package/utils/validators/formRules/index.ts +15 -9
- package/utils/validators/index.js +1 -0
- package/utils/validators/setting.js +6 -10
- package/utils/version.js +2 -1
- package/vue.config.js +377 -401
- package/.DS_Store +0 -0
- package/assets/images/providers/aks-black.svg +0 -28
- package/assets/images/providers/aks.svg +0 -31
- package/assets/styles/vendor/vue-js-modal.scss +0 -16
- package/components/ChartPsp.vue +0 -76
- package/components/EventsTable.vue +0 -67
- package/components/TabbedLinks/index.vue +0 -94
- package/components/__tests__/ChartPsp.test.ts +0 -75
- package/components/formatter/__tests__/ClusterProvider.test.ts +0 -28
- package/components/nuxt/nuxt-link.server.js +0 -16
- package/components/nuxt/nuxt.js +0 -101
- package/config/router.js +0 -408
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +0 -237
- package/initialize/App.js +0 -198
- package/initialize/client.js +0 -875
- package/initialize/index.js +0 -364
- package/initialize/layouts.ts +0 -26
- package/middleware/i18n.js +0 -10
- package/middleware/unauthenticated.js +0 -22
- package/mixins/fetch.server.js +0 -73
- package/pages/c/_cluster/apps/index.vue +0 -17
- package/pages/c/_cluster/auth/index.vue +0 -19
- package/pages/c/_cluster/index.vue +0 -17
- package/pages/c/_cluster/legacy/index.vue +0 -22
- package/pages/c/_cluster/manager/index.vue +0 -22
- package/pages/c/_cluster/mcapps/index.vue +0 -21
- package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +0 -232
- package/pages/c/index.vue +0 -9
- package/pages/rio/mesh.vue +0 -508
- package/plugins/dashboard-store/__tests__/mutations.spec.ts +0 -406
- package/plugins/dashboard-store/rehydrate-all.js +0 -44
- package/plugins/portal-vue.js +0 -4
- package/plugins/portal.js +0 -4
- package/plugins/resize.js +0 -5
- package/plugins/shortkey.js +0 -4
- package/plugins/tooltip.js +0 -4
- package/plugins/transitions.js +0 -4
- package/plugins/v-select.js +0 -4
- package/plugins/vue-clipboard2.js +0 -4
- package/tsconfig.default.json +0 -46
- package/utils/group.js +0 -70
- package/utils/nuxt.js +0 -659
- package/utils/router.scrollBehavior.js +0 -80
- /package/components/__tests__/{Collapse.spec.ts → Collapse.test.ts} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{AgentConfiguration.vue → tabs/AgentConfiguration.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{MemberRoles.vue → tabs/MemberRoles.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{ACE.vue → tabs/networking/ACE.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{RegistryMirrors.vue → tabs/registries/RegistryMirrors.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{DrainOptions.vue → tabs/upgrade/DrainOptions.vue} +0 -0
- /package/models/__tests__/{node.ts → node.test.ts} +0 -0
- /package/plugins/dashboard-store/__tests__/{actions.spec.ts → actions.test.ts} +0 -0
- /package/plugins/dashboard-store/__tests__/{getters.spec.ts → getters.test.ts} +0 -0
- /package/plugins/steve/__tests__/{header-warnings.spec.ts → header-warnings.test.ts} +0 -0
- /package/rancher-components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
- /package/types/{pod-security-admission.ts → resources/pod-security-admission.ts} +0 -0
|
@@ -120,6 +120,7 @@ locale:
|
|
|
120
120
|
nav:
|
|
121
121
|
harvesterDashboard: Harvester Dashboard
|
|
122
122
|
backToRancher: Cluster Manager
|
|
123
|
+
tools: Tools
|
|
123
124
|
clusterTools: Cluster Tools
|
|
124
125
|
kubeconfig:
|
|
125
126
|
download: Download KubeConfig
|
|
@@ -141,6 +142,7 @@ nav:
|
|
|
141
142
|
takeSnapshot: Take Snapshot
|
|
142
143
|
seeAllClusters: See all clusters
|
|
143
144
|
seeAllClustersCollapsed: See all
|
|
145
|
+
keyComboTooltip: Switch clusters and keep location
|
|
144
146
|
group:
|
|
145
147
|
cluster: Cluster
|
|
146
148
|
inUse: More Resources
|
|
@@ -152,10 +154,12 @@ nav:
|
|
|
152
154
|
workload: Workloads
|
|
153
155
|
monitoring: Monitoring
|
|
154
156
|
advanced: Advanced
|
|
157
|
+
drivers: Drivers
|
|
155
158
|
RKE1Configuration: RKE1 Configuration
|
|
156
159
|
admission: Admission
|
|
157
160
|
apps: Apps
|
|
158
161
|
clusterProvisioning: Cluster Provisioning
|
|
162
|
+
jwt.authentication: JWT Authentication
|
|
159
163
|
core: Core
|
|
160
164
|
legacy: Legacy
|
|
161
165
|
API: API
|
|
@@ -168,6 +172,7 @@ nav:
|
|
|
168
172
|
RBAC: RBAC
|
|
169
173
|
Scheduling: Scheduling
|
|
170
174
|
Storage: Storage
|
|
175
|
+
Project: Project
|
|
171
176
|
ns:
|
|
172
177
|
all: All Namespaces
|
|
173
178
|
clusterLevel: Only Cluster Resources
|
|
@@ -185,7 +190,7 @@ nav:
|
|
|
185
190
|
configuration: Configuration
|
|
186
191
|
hci: HCI
|
|
187
192
|
search:
|
|
188
|
-
placeholder:
|
|
193
|
+
placeholder: Filter clusters by...
|
|
189
194
|
noResults: No matching clusters
|
|
190
195
|
clusters: clusters
|
|
191
196
|
resourceSearch:
|
|
@@ -369,7 +374,7 @@ authConfig:
|
|
|
369
374
|
unrestricted: Allow any valid user
|
|
370
375
|
allowedPrincipalIds:
|
|
371
376
|
title: Authorized Users & Groups
|
|
372
|
-
associatedWarning: '
|
|
377
|
+
associatedWarning: 'The {provider} account that is used to enable the external provider will be granted admin permissions. If you use a test account or non-admin account, that account will still be granted admin-level permissions. See <a href="{docsBase}/how-to-guides/new-user-guides/authentication-permissions-and-global-configuration/authentication-config#external-authentication-configuration-and-principal-users" target="_blank" rel="noopener noreferrer nofollow">External Authentication Configuration and Principal Users</a> to understand why.'
|
|
373
378
|
github:
|
|
374
379
|
clientId:
|
|
375
380
|
label: Client ID
|
|
@@ -527,12 +532,34 @@ authConfig:
|
|
|
527
532
|
show: Show details
|
|
528
533
|
hide: Hide details
|
|
529
534
|
azuread:
|
|
530
|
-
tenantId:
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
535
|
+
tenantId:
|
|
536
|
+
label: Tenant ID
|
|
537
|
+
tooltip: From the Azure AD portal
|
|
538
|
+
placeholder: A long UUID string
|
|
539
|
+
applicationId:
|
|
540
|
+
label: Application ID
|
|
541
|
+
placeholder: A long UUID string
|
|
542
|
+
applicationSecret:
|
|
543
|
+
label: Application Secret
|
|
544
|
+
endpoint:
|
|
545
|
+
label: Endpoint
|
|
546
|
+
endpoints:
|
|
547
|
+
label: Endpoints
|
|
548
|
+
standard: Standard
|
|
549
|
+
china: China
|
|
550
|
+
custom: Custom
|
|
551
|
+
graphEndpoint:
|
|
552
|
+
label: Graph Endpoint
|
|
553
|
+
tokenEndpoint:
|
|
554
|
+
label: Token Endpoint
|
|
555
|
+
authEndpoint:
|
|
556
|
+
label: Auth Endpoint
|
|
557
|
+
groupMembershipFilter:
|
|
558
|
+
label: Group Membership Filter
|
|
559
|
+
enable: Limit users by group membership
|
|
560
|
+
tooltip: Limit users by applying a GroupMembershipFilter
|
|
561
|
+
externalHelp: See the OData filter expression documentation for more information.
|
|
562
|
+
externalHelpLink: https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/webservices/use-filter-expressions-in-odata-uris#filter-expressions
|
|
536
563
|
reply:
|
|
537
564
|
info: 'Azure AD requires a whitelisted URL for your Rancher server before beginning this setup. Please ensure that the following URL is set in the Reply URL section of your Azure Portal. Please note that it may take up to 5 minutes for the whitelisted URL to propagate.'
|
|
538
565
|
label: Reply URL
|
|
@@ -545,7 +572,7 @@ authConfig:
|
|
|
545
572
|
title: Are you sure? This update is irreversible.
|
|
546
573
|
body: '<p><b>You may need to make some additional changes</b>. Please ensure the Azure AD app has the Directory.Read.All <b>Application</b> permission added to Microsoft Graph.<br> If any endpoints were customized while configuring Azure AD authentication in Rancher, they will not be automatically updated. </p>'
|
|
547
574
|
oidc:
|
|
548
|
-
|
|
575
|
+
genericoidc: Configure an OIDC account
|
|
549
576
|
keycloakoidc: Configure a Keycloak OIDC account
|
|
550
577
|
rancherUrl: Rancher URL
|
|
551
578
|
clientId: Client ID
|
|
@@ -554,11 +581,21 @@ authConfig:
|
|
|
554
581
|
label: Endpoints
|
|
555
582
|
custom: Specify
|
|
556
583
|
standard: Generate
|
|
584
|
+
url: URL
|
|
585
|
+
realm: Realm
|
|
557
586
|
keycloak:
|
|
558
587
|
url: Keycloak URL
|
|
559
588
|
realm: Keycloak Realm
|
|
560
589
|
issuer: Issuer
|
|
561
590
|
authEndpoint: Auth Endpoint
|
|
591
|
+
jwksUrl: JWKS URL
|
|
592
|
+
tokenEndpoint: Token Endpoint
|
|
593
|
+
userInfoEndpoint: User Info Endpoint
|
|
594
|
+
acrValue: Authorization Context Reference
|
|
595
|
+
scope:
|
|
596
|
+
label: Scopes
|
|
597
|
+
placeholder: openid
|
|
598
|
+
protip: The <code>openid</code> scope is required. If you are using custom scopes, ensure that it is included.
|
|
562
599
|
cert:
|
|
563
600
|
label: Certificate
|
|
564
601
|
placeholder: Paste in the certificate, starting with -----BEGIN CERTIFICATE-----
|
|
@@ -692,6 +729,15 @@ asyncButton:
|
|
|
692
729
|
successIcon: checkmark
|
|
693
730
|
waiting: ''
|
|
694
731
|
waitingIcon: refresh
|
|
732
|
+
manual-refresh:
|
|
733
|
+
action: ''
|
|
734
|
+
actionIcon: refresh
|
|
735
|
+
error: ''
|
|
736
|
+
errorIcon: error
|
|
737
|
+
success: ''
|
|
738
|
+
successIcon: checkmark
|
|
739
|
+
waiting: ''
|
|
740
|
+
waitingIcon: refresh
|
|
695
741
|
remove:
|
|
696
742
|
action: Remove
|
|
697
743
|
success: Removed
|
|
@@ -765,7 +811,7 @@ backupRestoreOperator:
|
|
|
765
811
|
warning: 'This {type} does not have its reclaim policy set to "Retain". Your backups may be lost if the volume is changed or becomes unbound.'
|
|
766
812
|
encryption: Encryption
|
|
767
813
|
encryptionConfigName:
|
|
768
|
-
backuptip: 'Any secret in the <code>
|
|
814
|
+
backuptip: 'Any secret in the <code>{ns}</code> namespace that has an <code>encryption-provider-config.yaml</code> key. <br/>The contents of this file are necessary to perform a restore from this backup, and are not stored by Rancher Backup.'
|
|
769
815
|
label: Encryption Config Secret
|
|
770
816
|
options:
|
|
771
817
|
none: Store the contents of the backup unencrypted
|
|
@@ -852,10 +898,10 @@ catalog:
|
|
|
852
898
|
keywords: Keywords
|
|
853
899
|
errors:
|
|
854
900
|
clusterToolExists: This chart has a fixed namespace and name. A matching <a href="{url}">application</a> has been found and any changes will be made to it.
|
|
855
|
-
banner:
|
|
856
|
-
legacy: 'PSP Removal: Before upgrading a cluster to Kubernetes 1.25+, please ensure you review your Helm applications for Pod Security Policies and update them accordingly'
|
|
857
|
-
enablePSP: Enable Pod Security Policies
|
|
858
901
|
global: Global
|
|
902
|
+
deprecatedWarning: '{chartName} has been marked as deprecated. Use caution when installing this helm chart as it might be removed in the future.'
|
|
903
|
+
experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
|
|
904
|
+
deprecatedAndExperimentalWarning: '{chartName} has been marked as deprecated and experimental. Use caution when installing this helm chart as it might be removed in the future and might not function as expected.'
|
|
859
905
|
charts:
|
|
860
906
|
all: All
|
|
861
907
|
categories:
|
|
@@ -869,7 +915,7 @@ catalog:
|
|
|
869
915
|
versionWindowsIncompatible: Linux only version
|
|
870
916
|
header: Charts
|
|
871
917
|
featuredCharts: Featured Charts
|
|
872
|
-
noCharts: 'There are no charts available, have you added any repos?'
|
|
918
|
+
noCharts: 'There are no charts available, have you added any repos or set filters?'
|
|
873
919
|
noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
|
|
874
920
|
noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
|
|
875
921
|
operatingSystems:
|
|
@@ -877,12 +923,21 @@ catalog:
|
|
|
877
923
|
linux: Linux
|
|
878
924
|
windows: Windows
|
|
879
925
|
search: Filter
|
|
926
|
+
deprecatedChartsFilter:
|
|
927
|
+
label: Show deprecated apps
|
|
880
928
|
install:
|
|
881
929
|
action:
|
|
882
930
|
goToUpgrade: Edit/Upgrade
|
|
883
931
|
appReadmeMissing: This chart doesn't have any additional chart information.
|
|
884
932
|
appReadmeTitle: Chart Information (Helm README)
|
|
885
933
|
chart: Chart
|
|
934
|
+
warning:
|
|
935
|
+
managed:
|
|
936
|
+
Warning, Rancher manages deployment and upgrade of the {name} app. Upgrading this app is not supported.<br>
|
|
937
|
+
{version, select,
|
|
938
|
+
null { }
|
|
939
|
+
other { Under most circumstances, no user intervention should be needed to ensure that the {version} version is compatible with the version of Rancher that you are running.}
|
|
940
|
+
}
|
|
886
941
|
error:
|
|
887
942
|
requiresFound: '<a href="{url}">{name}</a> must be installed before you can install this chart.'
|
|
888
943
|
requiresMissing: 'This chart requires another chart that provides {name}, but none was was found.'
|
|
@@ -976,6 +1031,9 @@ catalog:
|
|
|
976
1031
|
current: '{ver} (Current)'
|
|
977
1032
|
linux: '{ver} (Linux-only)'
|
|
978
1033
|
windows: '{ver} (Windows-only)'
|
|
1034
|
+
delete:
|
|
1035
|
+
warning:
|
|
1036
|
+
managed: Warning, Rancher manages deployment and upgrade of the {name} app. Deleting this app is not supported.
|
|
979
1037
|
operation:
|
|
980
1038
|
tableHeaders:
|
|
981
1039
|
action: Action
|
|
@@ -1001,10 +1059,28 @@ catalog:
|
|
|
1001
1059
|
target:
|
|
1002
1060
|
git: Git repository containing Helm chart or cluster template definitions
|
|
1003
1061
|
http: http(s) URL to an index generated by Helm
|
|
1062
|
+
oci: OCI Repository <span class="oci-experimental-badge text-bold ml-5">Experimental</span>
|
|
1004
1063
|
label: Target
|
|
1005
1064
|
url:
|
|
1006
1065
|
label: Index URL
|
|
1007
1066
|
placeholder: 'e.g. https://charts.rancher.io'
|
|
1067
|
+
oci:
|
|
1068
|
+
urlLabel: OCI Repository Host URL
|
|
1069
|
+
placeholder: 'e.g. oci://test.azure.io/test-namespace:test-tag'
|
|
1070
|
+
info: For better performance, add OCI URLs that contain ONLY helm charts. For example oci://test.rancher.io/charts or oci://test.rancher.io/charts/mychart. The list of charts available from the repository is updated every 6 hours. Scanning directories with a large number of artifacts may degrade performance considerably.
|
|
1071
|
+
skipTlsVerifications: Skip TLS Verifications
|
|
1072
|
+
insecurePlainHttp: Insecure Plain Http
|
|
1073
|
+
exponentialBackOff:
|
|
1074
|
+
label: Exponential Back Off
|
|
1075
|
+
minWait:
|
|
1076
|
+
label: Min Wait Time (in Seconds)
|
|
1077
|
+
placeholder: 1 (default)
|
|
1078
|
+
maxWait:
|
|
1079
|
+
label: Max Wait Time (in Seconds)
|
|
1080
|
+
placeholder: 5 (default)
|
|
1081
|
+
maxRetries:
|
|
1082
|
+
label: Max Number of Retries
|
|
1083
|
+
placeholder: 5 (default)
|
|
1008
1084
|
tools:
|
|
1009
1085
|
header: Cluster Tools
|
|
1010
1086
|
noTools: "No Cluster Tools found"
|
|
@@ -1106,6 +1182,9 @@ cis:
|
|
|
1106
1182
|
testsToSkip: Tests to Skip
|
|
1107
1183
|
|
|
1108
1184
|
cluster:
|
|
1185
|
+
jwtAuthentication:
|
|
1186
|
+
banner: "Service Account access with JWT authentication can be configured after cluster creation from <br>
|
|
1187
|
+
<code>Cluster Management > Advanced > JWT Authentication</code>"
|
|
1109
1188
|
addonChart:
|
|
1110
1189
|
rancher-vsphere-cpi: vSphere CPI Configuration
|
|
1111
1190
|
rancher-vsphere-csi: vSphere CSI Configuration
|
|
@@ -1215,7 +1294,7 @@ cluster:
|
|
|
1215
1294
|
placeholder: Your Client Secret
|
|
1216
1295
|
name:
|
|
1217
1296
|
label: Credential Name
|
|
1218
|
-
placeholder: Name for this credential
|
|
1297
|
+
placeholder: Name for this credential
|
|
1219
1298
|
s3:
|
|
1220
1299
|
accessKey:
|
|
1221
1300
|
label: Access Key
|
|
@@ -1300,6 +1379,7 @@ cluster:
|
|
|
1300
1379
|
placeholder: 'Namespace/Name'
|
|
1301
1380
|
cluster: Imported Harvester Cluster
|
|
1302
1381
|
installGuestAgent: Install guest agent
|
|
1382
|
+
tokenExpirationWarning: 'Warning: Harvester Cloud Credentials use an underlying authentication token that may have an expiry time - please see the following <a href="https://harvesterhci.io/kb/renew_harvester_cloud_credentials" target="_blank" rel="noopener nofollow">knowledge base article</a> for possible implications on management operations.'
|
|
1303
1383
|
description:
|
|
1304
1384
|
label: Cluster Description
|
|
1305
1385
|
placeholder: Any text you want that better describes this cluster
|
|
@@ -1361,6 +1441,21 @@ cluster:
|
|
|
1361
1441
|
name:
|
|
1362
1442
|
label: Cluster Name
|
|
1363
1443
|
placeholder: A unique name for the cluster
|
|
1444
|
+
directoryConfig:
|
|
1445
|
+
title: Data directory configuration
|
|
1446
|
+
checkboxText: Use the same path for System-agent, Provisioning and K8s Distro data directories configuration
|
|
1447
|
+
common:
|
|
1448
|
+
label: Data directory configuration path
|
|
1449
|
+
tooltip: Data directory configuration for System-agent, Provisioning and K8s Distro
|
|
1450
|
+
systemAgent:
|
|
1451
|
+
label: System-agent directory path
|
|
1452
|
+
tooltip: Data directory for the system-agent connection info and plans
|
|
1453
|
+
provisioning:
|
|
1454
|
+
label: Provisioning directory path
|
|
1455
|
+
tooltip: Data directory for provisioning related files
|
|
1456
|
+
k8sDistro:
|
|
1457
|
+
label: K8s Distro directory path
|
|
1458
|
+
tooltip: Data directory for the k8s distro
|
|
1364
1459
|
machineConfig:
|
|
1365
1460
|
banner:
|
|
1366
1461
|
updateInfo: Create a new pool to update machine configs
|
|
@@ -1660,6 +1755,11 @@ cluster:
|
|
|
1660
1755
|
advanced:
|
|
1661
1756
|
argInfo:
|
|
1662
1757
|
title: Additional Kubelet Args
|
|
1758
|
+
tooltip:
|
|
1759
|
+
mixed-args: Kubelet args are defined both at Global and Machine Selector level.<br> Click on "Add Global Argument" to add them as Global config.
|
|
1760
|
+
global-args: Kubelet args are defined at Global level.<br> Click on "Add Global Argument" to add them as Global config.
|
|
1761
|
+
machineGlobal:
|
|
1762
|
+
listLabel: Add Global Argument
|
|
1663
1763
|
machineSelector:
|
|
1664
1764
|
label: Add Machine Selector
|
|
1665
1765
|
listLabel: Add Argument
|
|
@@ -1669,7 +1769,7 @@ cluster:
|
|
|
1669
1769
|
titleAlt: |-
|
|
1670
1770
|
{count, plural,
|
|
1671
1771
|
=1 { For all machines, use the Kubelet args: }
|
|
1672
|
-
other { For
|
|
1772
|
+
other { For machines without matched labels below: }
|
|
1673
1773
|
}
|
|
1674
1774
|
kubeControllerManagerTitle: Additional Controller Manager Args
|
|
1675
1775
|
kubeApiServerTitle: Additional API Server Args
|
|
@@ -1679,12 +1779,9 @@ cluster:
|
|
|
1679
1779
|
banner:
|
|
1680
1780
|
warning: 'This cluster contains a machineSelectorConfig, which this form does not fully support; use the YAML editor to manage the full configuration.'
|
|
1681
1781
|
os: 'You are attempting to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
|
|
1682
|
-
rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a
|
|
1782
|
+
rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a href="{docsBase}/how-to-guides/new-user-guides/launch-kubernetes-with-rancher/rke1-vs-rke2-differences#cluster-api" target="_blank" rel="noopener nofollow">documentation</a>.'
|
|
1683
1783
|
desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
|
|
1684
|
-
invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25 and will be automatically removed.
|
|
1685
1784
|
haveArgInfo: Configuration information is not available for the selected Kubernetes version. The options available on this screen will be limited; you may want to use the YAML editor.
|
|
1686
|
-
deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25.
|
|
1687
|
-
removedPsp: Pod Security Policies have been removed in Kubernetes v1.25. Use Pod Security Admission instead.
|
|
1688
1785
|
cloudProviderAddConfig: 'On Kubernetes 1.27 or greater, the Amazon Cloud Provider requires additional configuration. See <a href="https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/kubernetes-clusters-in-rancher-setup/set-up-cloud-providers/amazon" target="_blank" rel="noopener noreferrer nofollow">the documentation</a> for more information.'
|
|
1689
1786
|
machinePoolError: |-
|
|
1690
1787
|
{count, plural,
|
|
@@ -1693,6 +1790,11 @@ cluster:
|
|
|
1693
1790
|
}
|
|
1694
1791
|
rkeTemplateUpgrade: Template revision {name} available for upgrade
|
|
1695
1792
|
|
|
1793
|
+
architecture:
|
|
1794
|
+
label:
|
|
1795
|
+
unknown: Unknown
|
|
1796
|
+
mixed: Mixed
|
|
1797
|
+
|
|
1696
1798
|
availabilityWarnings:
|
|
1697
1799
|
node: Node {name} is inactive
|
|
1698
1800
|
machine: Machine {name} is inactive
|
|
@@ -1851,9 +1953,6 @@ cluster:
|
|
|
1851
1953
|
cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
|
|
1852
1954
|
cisUnsupported: The selected Kubernetes Version no longer supports CIS Profile "{cisProfile}". Please select a supported profile. We recommend reviewing the <a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">documentation</a> to evaluate the impact of changing the CIS Profile.
|
|
1853
1955
|
modal:
|
|
1854
|
-
pspChange:
|
|
1855
|
-
title: Pod Security Policy deprecation
|
|
1856
|
-
body: <p>Kubernetes has removed support for Pod Security Policies (PSPs) starting with version 1.25. If your cluster has PodSecurityPolicy admission controller enabled via "kube-apiserver-arg.enable-admission-plugins" in Cluster YAML, it has to be <i>manually</i> removed before proceeding with the upgrade. Additionally, any PSPs that may be present in the cluster will no longer be available/enforced. Do you want to proceed?</p>
|
|
1857
1956
|
editYamlMachinePool:
|
|
1858
1957
|
title: Save Machine Configurations
|
|
1859
1958
|
body: Machine Configurations define how machines in Pools are deployed.<br><br> They will be saved upfront to ensure valid Cluster YAML can be saved.
|
|
@@ -1867,6 +1966,10 @@ cluster:
|
|
|
1867
1966
|
header: System Services
|
|
1868
1967
|
cni:
|
|
1869
1968
|
label: Container Network
|
|
1969
|
+
cniNoneBanner: When CNI is set to 'none' an <a href="https://ranchermanager.docs.rancher.com/reference-guides/cluster-configuration/rancher-server-configuration/rke2-cluster-configuration#additionalmanifest" target="_blank" rel="noopener noreferrer nofollow">Additional Manifest</a> deploying an alternate CNI must be specified for successful cluster provisioning.
|
|
1970
|
+
cilium:
|
|
1971
|
+
BandwidthManager:
|
|
1972
|
+
enable: Enable Bandwidth Manager
|
|
1870
1973
|
cloudProvider:
|
|
1871
1974
|
label: Cloud Provider
|
|
1872
1975
|
header: Cloud Provider Config
|
|
@@ -2050,6 +2153,10 @@ clusterIndexPage:
|
|
|
2050
2153
|
etcd: Etcd
|
|
2051
2154
|
scheduler: Scheduler
|
|
2052
2155
|
controller-manager: Controller Manager
|
|
2156
|
+
cattle: Cattle
|
|
2157
|
+
fleet: Fleet
|
|
2158
|
+
certs:
|
|
2159
|
+
label: Certificates
|
|
2053
2160
|
|
|
2054
2161
|
configmap:
|
|
2055
2162
|
tabs:
|
|
@@ -2077,6 +2184,11 @@ resource:
|
|
|
2077
2184
|
errors:
|
|
2078
2185
|
update: "Error updating {name}"
|
|
2079
2186
|
|
|
2187
|
+
codeMirror:
|
|
2188
|
+
keymap:
|
|
2189
|
+
tooltip: Key mapping preference.
|
|
2190
|
+
indicatorToolip: "Key mapping: {name}"
|
|
2191
|
+
|
|
2080
2192
|
cruResource:
|
|
2081
2193
|
backToForm: Back to Form
|
|
2082
2194
|
backBody: You will lose any changes made to the YAML.
|
|
@@ -2088,6 +2200,48 @@ cruResource:
|
|
|
2088
2200
|
previewYaml: Edit as YAML
|
|
2089
2201
|
showYaml: View as YAML
|
|
2090
2202
|
|
|
2203
|
+
drivers:
|
|
2204
|
+
kontainer:
|
|
2205
|
+
title: Cluster Drivers
|
|
2206
|
+
node:
|
|
2207
|
+
title: Node Drivers
|
|
2208
|
+
add:
|
|
2209
|
+
title: Add Driver
|
|
2210
|
+
name:
|
|
2211
|
+
label: Driver name
|
|
2212
|
+
downloadUrl:
|
|
2213
|
+
label: Download URL
|
|
2214
|
+
placeholder: https://test.com/driver
|
|
2215
|
+
tooltip: The URL to download the machine driver binary for 64-bit Linux.
|
|
2216
|
+
customUiUrl:
|
|
2217
|
+
label: Custom UI URL
|
|
2218
|
+
placeholder: https://test.com/ui
|
|
2219
|
+
tooltip: The URL to load for customized Add Nodes screen for this driver. See https://github.com/rancher/ui-driver-skel for more info.
|
|
2220
|
+
checksum:
|
|
2221
|
+
label: Checksum
|
|
2222
|
+
tooltip: Checksum to verify that the downloaded driver matches the expected checksum.
|
|
2223
|
+
whitelist: Whitelist Domains
|
|
2224
|
+
actions:
|
|
2225
|
+
refresh: Refresh Kubernetes Metadata
|
|
2226
|
+
deactivate:
|
|
2227
|
+
title: Are you sure?
|
|
2228
|
+
andOthers: |-
|
|
2229
|
+
{count, plural,
|
|
2230
|
+
=0 {}
|
|
2231
|
+
=1 { and <b>one other </b>}
|
|
2232
|
+
other { and <b>{count} other </b>}
|
|
2233
|
+
}
|
|
2234
|
+
warningDrivers: |-
|
|
2235
|
+
{count, plural,
|
|
2236
|
+
=1 { You will no longer be able to edit the configuration of clusters using {names} driver.}
|
|
2237
|
+
other { You will no longer be able to edit the configuration of clusters using {names} drivers.}
|
|
2238
|
+
}
|
|
2239
|
+
warning: |-
|
|
2240
|
+
{count, plural,
|
|
2241
|
+
=1 { {warningDrivers} Resources in the corresponding provider will not be automatically removed.}
|
|
2242
|
+
other { {warningDrivers} Resources in the corresponding providers will not be automatically removed.}
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2091
2245
|
detailText:
|
|
2092
2246
|
collapse: Hide
|
|
2093
2247
|
binary: '<Binary Data: {n, number} bytes>'
|
|
@@ -2354,25 +2508,32 @@ glance:
|
|
|
2354
2508
|
pods: Pods
|
|
2355
2509
|
provider: Provider
|
|
2356
2510
|
version: Kubernetes Version
|
|
2511
|
+
architecture: Architecture
|
|
2357
2512
|
monitoringDashboard: Monitoring Dashboard
|
|
2358
2513
|
installMonitoring: Install Monitoring
|
|
2359
2514
|
clusterInfo: Cluster Information
|
|
2360
2515
|
eventsTable: Full events list
|
|
2516
|
+
secretsTable: Full secrets list
|
|
2361
2517
|
|
|
2362
2518
|
clusterBadge:
|
|
2519
|
+
customizeAppearance: Customize Appearance
|
|
2363
2520
|
addLabel: Add Cluster Badge
|
|
2521
|
+
setClusterAppearance: Cluster Appearance
|
|
2522
|
+
customize: Customize
|
|
2364
2523
|
editLabel: Edit Cluster Badge
|
|
2365
2524
|
modal:
|
|
2366
|
-
title:
|
|
2367
|
-
checkbox: Show
|
|
2368
|
-
|
|
2525
|
+
title: Cluster Appearance
|
|
2526
|
+
checkbox: Show cluster comment
|
|
2527
|
+
comment: Custom comment
|
|
2369
2528
|
iconText: Icon Text
|
|
2370
2529
|
buttonAction: Apply
|
|
2371
2530
|
badgeBgColor: Badge background color
|
|
2372
2531
|
badgeTextColor: Badge text color
|
|
2373
|
-
badgeAsIcon:
|
|
2374
|
-
maxCharsTooltip:
|
|
2375
|
-
previewTitle: "
|
|
2532
|
+
badgeAsIcon: Use custom badge
|
|
2533
|
+
maxCharsTooltip: Overwrites the default cluster name abbreviation.
|
|
2534
|
+
previewTitle: "Preview:"
|
|
2535
|
+
previewSide: "SIDE NAVIGATION"
|
|
2536
|
+
previewHeader: "RANCHER HEADER"
|
|
2376
2537
|
|
|
2377
2538
|
grafanaDashboard:
|
|
2378
2539
|
failedToLoad: Failed to load graph
|
|
@@ -2741,6 +2902,21 @@ istio:
|
|
|
2741
2902
|
tracing: Enable Jaeger Tracing (limited)
|
|
2742
2903
|
v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
|
|
2743
2904
|
|
|
2905
|
+
jwt:
|
|
2906
|
+
title: JWT Authentication
|
|
2907
|
+
actions:
|
|
2908
|
+
activate: Enable
|
|
2909
|
+
deactivate: Disable
|
|
2910
|
+
refresh: Refresh
|
|
2911
|
+
state:
|
|
2912
|
+
enabled: Enabled
|
|
2913
|
+
disabled: Disabled
|
|
2914
|
+
headers:
|
|
2915
|
+
clusterName: Cluster Name
|
|
2916
|
+
updatedOn: JWT Enabled On
|
|
2917
|
+
clusterAge: Cluster Age
|
|
2918
|
+
|
|
2919
|
+
|
|
2744
2920
|
labels:
|
|
2745
2921
|
addLabel: Add Label
|
|
2746
2922
|
addSetLabel: Add/Set Label
|
|
@@ -2751,16 +2927,25 @@ labels:
|
|
|
2751
2927
|
title: Labels
|
|
2752
2928
|
description: Key/value pairs that are attached to objects which specify identifying attributes.
|
|
2753
2929
|
fleetClusterTooltip: Label changes are made to the Management Cluster and synchronized to the Fleet Cluster
|
|
2754
|
-
show: Show System
|
|
2755
|
-
hide: Hide System
|
|
2930
|
+
show: Show System Labels and Annotations
|
|
2931
|
+
hide: Hide System Labels and Annotations
|
|
2756
2932
|
annotations:
|
|
2757
2933
|
title: Annotations
|
|
2758
2934
|
|
|
2935
|
+
labelSelect:
|
|
2936
|
+
noOptions:
|
|
2937
|
+
empty: No options
|
|
2938
|
+
noMatch: No matching options
|
|
2939
|
+
pagination:
|
|
2940
|
+
counts: '{count} / {totalCount} items'
|
|
2941
|
+
more: Load More...
|
|
2759
2942
|
landing:
|
|
2760
2943
|
clusters:
|
|
2761
2944
|
title: Clusters
|
|
2762
2945
|
provider: Provider
|
|
2946
|
+
distro: Distro
|
|
2763
2947
|
kubernetesVersion: Kubernetes Version
|
|
2948
|
+
architecture: Architecture
|
|
2764
2949
|
explorer: Explorer
|
|
2765
2950
|
explore: Explore
|
|
2766
2951
|
cores: |-
|
|
@@ -2770,11 +2955,9 @@ landing:
|
|
|
2770
2955
|
cpuUsed: CPU Used
|
|
2771
2956
|
memoryUsed: Memory Used
|
|
2772
2957
|
seeWhatsNew: Learn more about the improvements and new capabilities in this version.
|
|
2773
|
-
whatsNewLink: "What's new in 2.
|
|
2958
|
+
whatsNewLink: "What's new in 2.9"
|
|
2774
2959
|
learnMore: Learn More
|
|
2775
2960
|
support: Support
|
|
2776
|
-
psps: PSPs
|
|
2777
|
-
deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25. You have one or more PodSecurityPolicy resource(s) in this cluster.
|
|
2778
2961
|
community:
|
|
2779
2962
|
title: Community Support
|
|
2780
2963
|
docs: Docs
|
|
@@ -2822,6 +3005,7 @@ logging:
|
|
|
2822
3005
|
include: Limit to specific container names
|
|
2823
3006
|
exclude: Exclude specific container names
|
|
2824
3007
|
placeholder: "Default: Any container"
|
|
3008
|
+
enter: Enter container name to select
|
|
2825
3009
|
namespaces:
|
|
2826
3010
|
title:
|
|
2827
3011
|
include: Limit to specific namespaces
|
|
@@ -2840,7 +3024,7 @@ logging:
|
|
|
2840
3024
|
dockerRootDirectory: Docker Root Directory
|
|
2841
3025
|
systemdLogPath: systemd Log Path
|
|
2842
3026
|
tooltip: 'Some kubernetes distributions log to <code>journald</code>. In order to collect these logs the <code>systemdLogPath</code> needs to be defined. While the <code>/run/log/journal</code> directory is used by default, some Linux distributions do not default to this path.'
|
|
2843
|
-
url: '<a href="
|
|
3027
|
+
url: '<a href="{docsBase}/integrations-in-rancher/logging/logging-helm-chart-options" target="_blank" rel="noopener nofollow noreferrer">Learn more</a>'
|
|
2844
3028
|
default: /run/log/journal
|
|
2845
3029
|
elasticsearch:
|
|
2846
3030
|
host: Host
|
|
@@ -3062,6 +3246,7 @@ longhorn:
|
|
|
3062
3246
|
label: 'Longhorn'
|
|
3063
3247
|
description: 'Manage storage system via UI'
|
|
3064
3248
|
na: Resource Unavailable
|
|
3249
|
+
uiServiceUnavailable: The Longhorn UI service is not available or you do not have permission to access it.
|
|
3065
3250
|
|
|
3066
3251
|
neuvector:
|
|
3067
3252
|
overview:
|
|
@@ -3077,6 +3262,7 @@ login:
|
|
|
3077
3262
|
howdy: Howdy!
|
|
3078
3263
|
welcome: Welcome to {vendor}
|
|
3079
3264
|
loggedOut: You have been logged out.
|
|
3265
|
+
loggedOutFromSso: You've been logged out of Rancher, however you may still be logged in to your single sign-on identity provider.
|
|
3080
3266
|
loginAgain: Log in again to continue.
|
|
3081
3267
|
serverError:
|
|
3082
3268
|
authFailedCreds: "Logging in failed: Check credentials, or your account may not be authorized to log in."
|
|
@@ -3109,7 +3295,7 @@ members:
|
|
|
3109
3295
|
clusterMembers: Cluster Members
|
|
3110
3296
|
clusterAndProject: Cluster and Project Members
|
|
3111
3297
|
createActionLabel: Add
|
|
3112
|
-
|
|
3298
|
+
clusterMembership: Cluster Membership
|
|
3113
3299
|
projectMembership: Project Membership
|
|
3114
3300
|
clusterPermissions:
|
|
3115
3301
|
noDescription: User created - no description
|
|
@@ -3163,9 +3349,9 @@ monitoring:
|
|
|
3163
3349
|
label: Additional Secrets
|
|
3164
3350
|
existing: Choose an existing config secret
|
|
3165
3351
|
info: |
|
|
3166
|
-
<span class="text-bold">Create default config</span
|
|
3352
|
+
<span class="text-bold">Create default config</span>:<br>A Secret containing your Alertmanager Config will be created in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace on deploying this chart under the name <pre class='inline-block m-0'>alertmanager-rancher-monitoring-alertmanager</pre>. By default, this Secret will never be modified on an uninstall or upgrade of this chart. <br /><br />
|
|
3167
3353
|
Once you have deployed this chart, you should edit the Secret via the UI in order to add your custom notification configurations that will be used by Alertmanager to send alerts. <br /> <br />
|
|
3168
|
-
<span class="text-bold">Choose an existing config secret</span
|
|
3354
|
+
<span class="text-bold">Choose an existing config secret</span>:<br>You must specify a Secret that exists in the <pre class='inline-block m-0'>cattle-monitoring-system</pre> namespace. If the namespace does not exist, you will not be able to select an existing secret.
|
|
3169
3355
|
label: Alertmanager Secret
|
|
3170
3356
|
new: Create default config
|
|
3171
3357
|
radio:
|
|
@@ -4083,7 +4269,7 @@ plugins:
|
|
|
4083
4269
|
title: Error loading extension
|
|
4084
4270
|
message: Could not load extension code
|
|
4085
4271
|
generic: Extension error
|
|
4086
|
-
api: This Extension is not compatible with the Extensions API
|
|
4272
|
+
api: This Extension is not compatible with the current Extensions API version
|
|
4087
4273
|
host: This Extension is not compatible with this application
|
|
4088
4274
|
version: This Extension is not compatible with this version of Rancher
|
|
4089
4275
|
load: An error occurred loading the code for this Extension
|
|
@@ -4116,6 +4302,7 @@ plugins:
|
|
|
4116
4302
|
manageRepos: Manage Repositories
|
|
4117
4303
|
addRancherRepos: Add Rancher Repositories
|
|
4118
4304
|
manageCharts: Manage Extension Charts
|
|
4305
|
+
warnNoAuth: This version of the extension will be loaded before authentication and will have access to the login process.
|
|
4119
4306
|
manageCatalog:
|
|
4120
4307
|
label: Manage Extension Catalogs
|
|
4121
4308
|
title: Extension
|
|
@@ -4127,6 +4314,9 @@ plugins:
|
|
|
4127
4314
|
image:
|
|
4128
4315
|
label: Catalog Image Reference
|
|
4129
4316
|
placeholder: "e.g. hub.docker.io/example-org/my-image:latest"
|
|
4317
|
+
imagePullSecrets:
|
|
4318
|
+
label: Image Pull Secrets
|
|
4319
|
+
tooltip: Must be of Type `kubernetes.io/dockercfg` or `kubernetes.io/dockerconfigjson`
|
|
4130
4320
|
secrets:
|
|
4131
4321
|
banner: "If the registry that hosts the Catalog Image requires Pull Secrets, they must be created in the following namespace:<pre>cattle-ui-plugin-system</pre>"
|
|
4132
4322
|
banner: This will create an Deployment, Service, and Helm repository to serve the extension charts.
|
|
@@ -4196,17 +4386,17 @@ plugins:
|
|
|
4196
4386
|
title: Extension support is not enabled
|
|
4197
4387
|
prompt:
|
|
4198
4388
|
cant: Automatic installation is not available - required Helm Charts could not be found
|
|
4199
|
-
can: You need to
|
|
4389
|
+
can: 'You need to enable the <code>{ff}</code> Feature Flag in Global Settings. Once enabled, Rancher will require a restart.'
|
|
4200
4390
|
official: The Official Rancher Extensions Repository provides extensions published by Rancher
|
|
4201
4391
|
partners: The Partners Extensions Repository provides extensions published by Rancher Partners
|
|
4202
4392
|
community: The Community Extensions Repository provides extensions published by Rancher Community
|
|
4203
4393
|
install:
|
|
4204
4394
|
title: Enable Extension Support?
|
|
4205
|
-
prompt: This will
|
|
4395
|
+
prompt: This will lead you to the page where you can enable the Feature Flag needed to enable Extension support.
|
|
4396
|
+
featuresButton: Go to Feature Flags
|
|
4206
4397
|
airgap: Air-gapped installations should NOT enable this feature
|
|
4207
4398
|
addRancherRepo: Add Official Rancher Extensions Repository
|
|
4208
4399
|
addPartnersRancherRepo: Add Partners Extensions Repository
|
|
4209
|
-
addCommunityRancherRepo: Add Community Extensions Repository
|
|
4210
4400
|
remove:
|
|
4211
4401
|
label: Disable Extension Support
|
|
4212
4402
|
title: Disable Extension Support?
|
|
@@ -4278,11 +4468,11 @@ prefs:
|
|
|
4278
4468
|
advFeatures:
|
|
4279
4469
|
title: Advanced Features
|
|
4280
4470
|
viewInApi: Enable "View in API"
|
|
4281
|
-
allNamespaces: Show
|
|
4471
|
+
allNamespaces: Show dynamic Namespaces managed by Rancher (not intended for editing or deletion)
|
|
4282
4472
|
themeShortcut: Enable Dark/Light Theme keyboard shortcut toggle (shift+T)
|
|
4283
4473
|
pluginDeveloper: Enable Extension developer features
|
|
4284
4474
|
hideDesc:
|
|
4285
|
-
label: Hide
|
|
4475
|
+
label: Hide Type Description banners above resource lists
|
|
4286
4476
|
helm:
|
|
4287
4477
|
'true': Include Prerelease Versions
|
|
4288
4478
|
'false': Show Releases Only
|
|
@@ -4339,10 +4529,6 @@ project:
|
|
|
4339
4529
|
vmDefaultResourceLimit: VM Default Resource Limit
|
|
4340
4530
|
resourceQuotas: Resource Quotas
|
|
4341
4531
|
haveOneOwner: There must be at least one member with the Owner role.
|
|
4342
|
-
psp:
|
|
4343
|
-
default: Cluster Default
|
|
4344
|
-
label: Pod Security Policy
|
|
4345
|
-
current: "{value} (Current)"
|
|
4346
4532
|
|
|
4347
4533
|
|
|
4348
4534
|
projectMembers:
|
|
@@ -4546,6 +4732,9 @@ rbac:
|
|
|
4546
4732
|
label: Grant Resources
|
|
4547
4733
|
noApiGroupClusterScope: Core K8s API, Cluster Scoped
|
|
4548
4734
|
noApiGroupNamespaceScope: Core K8s API, Namespaced
|
|
4735
|
+
neuvector:
|
|
4736
|
+
labelClusterScoped: NeuVector, Cluster Scoped
|
|
4737
|
+
labelNamespaceScoped: NeuVector, Namespaced
|
|
4549
4738
|
deprecatedLabel: (deprecated)
|
|
4550
4739
|
resourceOptionInfo: The resource options are not a complete list of every resource available in every Rancher-managed Kubernetes cluster. Resources and API groups may need to be manually entered in advanced use cases.
|
|
4551
4740
|
tableHeaders:
|
|
@@ -4648,9 +4837,6 @@ rbac:
|
|
|
4648
4837
|
nodetemplates-manage:
|
|
4649
4838
|
label: Manage Node Templates
|
|
4650
4839
|
description: Allows the user to define, edit, and remove Node Templates.
|
|
4651
|
-
podsecuritypolicytemplates-manage:
|
|
4652
|
-
label: Manage Pod Security Policies (PSPs)
|
|
4653
|
-
description: Allows the user to define, edit, and remove PSPs.
|
|
4654
4840
|
roles-manage:
|
|
4655
4841
|
label: Manage Roles
|
|
4656
4842
|
description: Allows the user to define, edit, and remove Role definitions.
|
|
@@ -4731,6 +4917,7 @@ resourceList:
|
|
|
4731
4917
|
createFromYaml: Create from YAML
|
|
4732
4918
|
createResource: "Create {resourceName}"
|
|
4733
4919
|
nsFiltering: "Please select one or more namespaces or projects using the filter above."
|
|
4920
|
+
nsFilteringGeneric: "Please select a valid namespace or project option using the filter above."
|
|
4734
4921
|
nsFilterToolTip: "Filtering is restricted to projects and namespaces"
|
|
4735
4922
|
resourceLoadingIndicator:
|
|
4736
4923
|
loading: Loading
|
|
@@ -4751,7 +4938,7 @@ resourceTable:
|
|
|
4751
4938
|
machinePool: "<span>Pool:</span> {name}"
|
|
4752
4939
|
notInANamespace: Not Namespaced
|
|
4753
4940
|
notInAProject: Not in a Project
|
|
4754
|
-
project: "<span>Project:</span> {name}"
|
|
4941
|
+
project: "<span>Project:</span> <span>{name}</span>"
|
|
4755
4942
|
notInAWorkspace: Not in a Workspace
|
|
4756
4943
|
workspace: "<span>Workspace:</span> {name}"
|
|
4757
4944
|
notInANodePool: "Not in a Pool"
|
|
@@ -4784,13 +4971,25 @@ secret:
|
|
|
4784
4971
|
authentication: Authentication
|
|
4785
4972
|
certificate:
|
|
4786
4973
|
certificate: Certificate
|
|
4974
|
+
certificates: Certificates
|
|
4787
4975
|
certificatePlaceholder: "Paste in the CA certificate, starting with -----BEGIN CERTIFICATE----"
|
|
4788
4976
|
cn: Domain Name
|
|
4789
4977
|
expires: Expires
|
|
4978
|
+
expiresOn: Expires On
|
|
4979
|
+
expiresDuration: Expires In
|
|
4980
|
+
lifetime: Lifetime
|
|
4790
4981
|
issuer: Issuer
|
|
4982
|
+
paging: |-
|
|
4983
|
+
{pages, plural,
|
|
4984
|
+
=0 {No {pluralLabel}}
|
|
4985
|
+
=1 {{count} {count, plural, =1 {{singularLabel}} other {{pluralLabel}}}}
|
|
4986
|
+
other {{from} - {to} of {count} {pluralLabel}}}
|
|
4791
4987
|
plusMore: "+ {n} more"
|
|
4792
4988
|
privateKey: Private Key
|
|
4793
4989
|
privateKeyPlaceholder: "Paste in the private key, typically starting with -----BEGIN RSA PRIVATE KEY-----"
|
|
4990
|
+
warnings:
|
|
4991
|
+
expiring: "{count} {count, plural, =1 {Certificate expires soon} other {Certificates expire soon}}"
|
|
4992
|
+
expired: "{count} {count, plural, =1 {Certificate has expired} other {Certificates have expired}}"
|
|
4794
4993
|
data: Data
|
|
4795
4994
|
registry:
|
|
4796
4995
|
address: Registry
|
|
@@ -5572,6 +5771,7 @@ tableHeaders:
|
|
|
5572
5771
|
userDeletedIn: Delete After
|
|
5573
5772
|
userDisabledIn: Disable After
|
|
5574
5773
|
userLastLogin: Last Login
|
|
5774
|
+
userState: Enabled
|
|
5575
5775
|
userStatus: Status
|
|
5576
5776
|
username: Local Username
|
|
5577
5777
|
value: Value
|
|
@@ -5579,6 +5779,9 @@ tableHeaders:
|
|
|
5579
5779
|
volume: Volume
|
|
5580
5780
|
volumeMode: Volume Mode
|
|
5581
5781
|
weight: Weight
|
|
5782
|
+
clusterResources: Cluster Resources
|
|
5783
|
+
repoPerClusterState: Cluster State
|
|
5784
|
+
repoPerClusterStateTooltip: The state of the repo on the cluster
|
|
5582
5785
|
target:
|
|
5583
5786
|
router:
|
|
5584
5787
|
label: Router
|
|
@@ -5675,6 +5878,7 @@ validation:
|
|
|
5675
5878
|
exactly: '"{key}" should contain {count, plural, =1 {# item} other {# items}}'
|
|
5676
5879
|
max: '"{key}" should contain at most {count} {count, plural, =1 {item} other {items}}'
|
|
5677
5880
|
min: '"{key}" should contain at least {count} {count, plural, =1 {item} other {items}}'
|
|
5881
|
+
alphanumeric: '"{key}" must be alphanumeric'
|
|
5678
5882
|
boolean: '"{key}" must be a boolean value.'
|
|
5679
5883
|
chars: '"{key}" contains {count, plural, =1 {an invalid character} other {# invalid characters}}: {chars}'
|
|
5680
5884
|
cluster:
|
|
@@ -5794,7 +5998,10 @@ validation:
|
|
|
5794
5998
|
required: 'Port Rule [{position}] - Target Port is required'
|
|
5795
5999
|
setting:
|
|
5796
6000
|
serverUrl:
|
|
5797
|
-
https:
|
|
6001
|
+
https: Server URL must be https.
|
|
6002
|
+
localhost: If the Server URL is internal to the Rancher server (e.g. localhost) the downstream clusters may not be able to communicate with Rancher.
|
|
6003
|
+
trailingForwardSlash: Server URL should not have a trailing forward slash.
|
|
6004
|
+
url: Server URL must be an URL.
|
|
5798
6005
|
stringLength:
|
|
5799
6006
|
between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
|
|
5800
6007
|
exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
|
|
@@ -5912,7 +6119,9 @@ workload:
|
|
|
5912
6119
|
exec: Command run inside the container exits with status 0
|
|
5913
6120
|
image: Container Image
|
|
5914
6121
|
imagePullPolicy: Pull Policy
|
|
5915
|
-
imagePullSecrets:
|
|
6122
|
+
imagePullSecrets:
|
|
6123
|
+
label: Pull Secrets
|
|
6124
|
+
tooltip: Must be of Type `kubernetes.io/dockercfg` or `kubernetes.io/dockerconfigjson`
|
|
5916
6125
|
init: Init Container
|
|
5917
6126
|
lifecycleHook:
|
|
5918
6127
|
postStart:
|
|
@@ -6388,7 +6597,7 @@ model:
|
|
|
6388
6597
|
okta: Okta
|
|
6389
6598
|
freeipa: FreeIPA
|
|
6390
6599
|
googleoauth: Google
|
|
6391
|
-
|
|
6600
|
+
genericoidc: Generic OIDC
|
|
6392
6601
|
keycloakoidc: Keycloak
|
|
6393
6602
|
|
|
6394
6603
|
cluster:
|
|
@@ -6428,6 +6637,7 @@ typeDescription:
|
|
|
6428
6637
|
# Should fit on one line.
|
|
6429
6638
|
# If you link to anything external, it MUST have
|
|
6430
6639
|
# target="_blank" rel="noopener noreferrer nofollow"
|
|
6640
|
+
jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
|
|
6431
6641
|
branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
|
|
6432
6642
|
chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
|
|
6433
6643
|
cis.cattle.io.clusterscanbenchmark: A benchmark version is the name of benchmark to run using kube-bench as well as the valid configuration parameters for that benchmark.
|
|
@@ -6513,6 +6723,16 @@ typeLabel:
|
|
|
6513
6723
|
one { Cloud Credential }
|
|
6514
6724
|
other { Cloud Credentials }
|
|
6515
6725
|
}
|
|
6726
|
+
kontainerdriver: |-
|
|
6727
|
+
{count, plural,
|
|
6728
|
+
one { Cluster Driver }
|
|
6729
|
+
other { Cluster Drivers }
|
|
6730
|
+
}
|
|
6731
|
+
nodedriver: |-
|
|
6732
|
+
{count, plural,
|
|
6733
|
+
one { Node Driver }
|
|
6734
|
+
other { Node Drivers }
|
|
6735
|
+
}
|
|
6516
6736
|
endpoints: |-
|
|
6517
6737
|
{count, plural,
|
|
6518
6738
|
one { Endpoint }
|
|
@@ -7052,7 +7272,7 @@ podAffinity:
|
|
|
7052
7272
|
keyValue:
|
|
7053
7273
|
keyPlaceholder: e.g. foo
|
|
7054
7274
|
valuePlaceholder: e.g. bar
|
|
7055
|
-
protip: 'Paste lines of <em>key=value</em> or <em>key:
|
|
7275
|
+
protip: 'Paste lines of <em>key=value</em> or <em>key:value</em> into any key field for easy bulk entry'
|
|
7056
7276
|
|
|
7057
7277
|
registryMirror:
|
|
7058
7278
|
header: Mirrors
|
|
@@ -7128,6 +7348,9 @@ advancedSettings:
|
|
|
7128
7348
|
'ui-default-landing': 'The default page users land on after login.'
|
|
7129
7349
|
'brand': Folder name for an alternative theme defined in '/assets/brand'
|
|
7130
7350
|
'hide-local-cluster': Hide the local cluster
|
|
7351
|
+
'agent-tls-mode': "Rancher Certificate Verification. In `strict` mode the agents (system, cluster, fleet, etc) will only trust Rancher installations which are using a certificate signed by the CABundle in the `cacerts` setting. When the mode is system-store, the agents will trust any certificate signed by a CABundle in the operating system’s trust store."
|
|
7352
|
+
warnings:
|
|
7353
|
+
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
7131
7354
|
editHelp:
|
|
7132
7355
|
'ui-banners': This setting takes a JSON object containing 3 root parameters; <code>banner</code>, <code>showHeader</code>, <code>showFooter</code>. <code>banner</code> is an object containing; <code>textColor</code>, <code>background</code>, and <code>text</code>, where <code>textColor</code> and <code>background</code> are any valid CSS color value.
|
|
7133
7356
|
enum:
|
|
@@ -7150,6 +7373,9 @@ advancedSettings:
|
|
|
7150
7373
|
info: Info
|
|
7151
7374
|
debug: Debug
|
|
7152
7375
|
trace: Trace
|
|
7376
|
+
'agent-tls-mode':
|
|
7377
|
+
strict: 'Strict'
|
|
7378
|
+
system-store: 'System Store'
|
|
7153
7379
|
|
|
7154
7380
|
featureFlags:
|
|
7155
7381
|
label: Feature Flags
|
|
@@ -7176,7 +7402,7 @@ performance:
|
|
|
7176
7402
|
When enabled, resources will appear more quickly, but it may take slightly longer to load the entire set of resources. This setting only applies to resources that come from the Kubernetes API
|
|
7177
7403
|
checkboxLabel: Enable incremental loading
|
|
7178
7404
|
inputLabel: Resource Threshold
|
|
7179
|
-
incompatibleDescription: "Incremental Loading is incomaptible with Namespace/Project filtering. Enabling this will disable
|
|
7405
|
+
incompatibleDescription: "Incremental Loading is incomaptible with Namespace/Project filtering and Server-side Pagination. Enabling this will disable them."
|
|
7180
7406
|
manualRefresh:
|
|
7181
7407
|
label: Manual Refresh
|
|
7182
7408
|
setting: You can configure a threshold above which manual refresh will be enabled.
|
|
@@ -7185,7 +7411,7 @@ performance:
|
|
|
7185
7411
|
When enabled, list data will not auto-update but instead the user must manually trigger a list-view refresh. This setting only applies to resources that come from the Kubernetes API
|
|
7186
7412
|
checkboxLabel: Enable manual refresh of data for lists
|
|
7187
7413
|
inputLabel: Resource Threshold
|
|
7188
|
-
incompatibleDescription: "Manual Refresh is incomaptible with Namespace/Project filtering. Enabling this will disable
|
|
7414
|
+
incompatibleDescription: "Manual Refresh is incomaptible with Namespace/Project filtering and Server-side Pagination. Enabling this will disable them."
|
|
7189
7415
|
websocketNotification:
|
|
7190
7416
|
label: Websocket Notifications
|
|
7191
7417
|
description: |-
|
|
@@ -7193,7 +7419,7 @@ performance:
|
|
|
7193
7419
|
checkboxLabel: Disable websocket notifications
|
|
7194
7420
|
gc:
|
|
7195
7421
|
label: Resource Garbage Collection
|
|
7196
|
-
description: The UI will cache
|
|
7422
|
+
description: The UI will cache Kubernetes resources locally to avoid having to re-fetch them. In some cases this can lead to a large amount of data stored in the browser. Enable this setting to periodically remove them.
|
|
7197
7423
|
checkboxLabel: Enable Garbage Collection
|
|
7198
7424
|
whenRun:
|
|
7199
7425
|
description: Update when garbage collection runs
|
|
@@ -7228,8 +7454,16 @@ performance:
|
|
|
7228
7454
|
information: To change the automatic logout behaviour, edit the authorisation and/or session token timeout values (<code>auth-user-session-ttl-minutes</code> and <code>auth-token-max-ttl-minutes</code>) in the Settings page.
|
|
7229
7455
|
description: When enabled and the user is inactive past the specified timeout, the UI will no longer fresh page content and the user must reload the page to continue.
|
|
7230
7456
|
authUserTTL: This timeout cannot be higher than the user session timeout auth-user-session-ttl-minutes, which is currently {current} minutes.
|
|
7231
|
-
|
|
7232
|
-
|
|
7457
|
+
serverPagination:
|
|
7458
|
+
label: Server-side Pagination
|
|
7459
|
+
description: By default Lists will fetch all resources and paginate in the browser (create the page given sorting and filtering settings). Change this setting to enable pagination server-side. This should help the responsiveness of the UI in systems with a lot of resources.
|
|
7460
|
+
checkboxLabel: Enable Server-side Pagination
|
|
7461
|
+
applicable: "This applies to the following resource types"
|
|
7462
|
+
incompatibleDescription: "Server-side Pagination is incomaptible with Manual Refresh and Incremental Loading. Enabling this will disable them."
|
|
7463
|
+
featureFlag: The <a href="{ffUrl}">Feature Flag</a> `ui-sql-cache` must be enabled to use this feature
|
|
7464
|
+
resources:
|
|
7465
|
+
generic: most resources in the cluster's 'More Resources' section
|
|
7466
|
+
all: All Resources
|
|
7233
7467
|
banner:
|
|
7234
7468
|
label: Fixed Banners
|
|
7235
7469
|
settingName: Banners
|
|
@@ -7261,6 +7495,7 @@ banner:
|
|
|
7261
7495
|
label: 'Font Size'
|
|
7262
7496
|
consent: Consent Banner
|
|
7263
7497
|
consentFootnote: "Tip: Use \\n character for line break"
|
|
7498
|
+
individualSetting: 'This banner is managed by the setting "{name}" and can not be modified in the UI'
|
|
7264
7499
|
|
|
7265
7500
|
branding:
|
|
7266
7501
|
label: Branding
|
|
@@ -7273,9 +7508,25 @@ branding:
|
|
|
7273
7508
|
uploadLight: Upload Light Logo
|
|
7274
7509
|
uploadDark: Upload Dark Logo
|
|
7275
7510
|
useCustom: Use a Custom Logo
|
|
7511
|
+
banner:
|
|
7512
|
+
label: Banner
|
|
7513
|
+
tip: 'Upload an image to replace the default Rancher banner in the Dashboard page. We recommend using an SVG image with an aspect ratio of 6:1. The default image size is 4197x633. Max file size is 200KB. Accepted formats: JPEG, PNG, SVG.'
|
|
7514
|
+
lightPreview: Light Theme Preview
|
|
7515
|
+
darkPreview: Dark Theme Preview
|
|
7516
|
+
uploadLight: Upload Light Banner
|
|
7517
|
+
uploadDark: Upload Dark Banner
|
|
7518
|
+
useCustom: Use a Custom Banner
|
|
7519
|
+
loginBackground:
|
|
7520
|
+
label: Login Background
|
|
7521
|
+
tip: 'Upload an image to replace the default Rancher background in the Login page. We recommend using an SVG image with an aspect ratio of 7:8. The default image size is 683x768. Max file size is 200KB. Accepted formats: JPEG, PNG, SVG.'
|
|
7522
|
+
lightPreview: Light Theme Preview
|
|
7523
|
+
darkPreview: Dark Theme Preview
|
|
7524
|
+
uploadLight: Upload Light Background
|
|
7525
|
+
uploadDark: Upload Dark Background
|
|
7526
|
+
useCustom: Use a Custom Background
|
|
7276
7527
|
favicon:
|
|
7277
7528
|
label: Favicon
|
|
7278
|
-
tip: 'Upload an icon to replace the Rancher favicon in the browser tab. Max file size is 20KB'
|
|
7529
|
+
tip: 'Upload an icon to replace the Rancher favicon in the browser tab. Max file size is 20KB.'
|
|
7279
7530
|
preview: Favicon Preview
|
|
7280
7531
|
upload: Upload Favicon
|
|
7281
7532
|
useCustom: Use a Custom Favicon
|
|
@@ -7369,7 +7620,6 @@ customLinks:
|
|
|
7369
7620
|
suseCollective: SUSE Collective
|
|
7370
7621
|
|
|
7371
7622
|
|
|
7372
|
-
|
|
7373
7623
|
##############################
|
|
7374
7624
|
### Support Page
|
|
7375
7625
|
##############################
|
|
@@ -7427,7 +7677,6 @@ legacy:
|
|
|
7427
7677
|
globalDnsProviders: Global DNS Providers
|
|
7428
7678
|
notifiers: Notifiers
|
|
7429
7679
|
monitoring: Monitoring
|
|
7430
|
-
psps: Pod Security Policy Templates
|
|
7431
7680
|
secrets: Secrets
|
|
7432
7681
|
|
|
7433
7682
|
project:
|
|
@@ -7451,6 +7700,8 @@ manager:
|
|
|
7451
7700
|
label: RKE Templates
|
|
7452
7701
|
nodeTemplates:
|
|
7453
7702
|
label: Node Templates
|
|
7703
|
+
jwtAuthentication:
|
|
7704
|
+
label: JWT Authentication
|
|
7454
7705
|
|
|
7455
7706
|
auth:
|
|
7456
7707
|
roleTemplate: Role Templates
|