@rancher/shell 3.0.5-rc.3 → 3.0.5-rc.6
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 +1 -0
- package/assets/images/icons/document.svg +3 -0
- package/assets/images/key.svg +17 -0
- package/assets/images/vendor/cognito.svg +1 -0
- package/assets/styles/app.scss +1 -0
- package/assets/styles/base/_basic.scss +10 -0
- package/assets/styles/base/_spacing.scss +29 -0
- package/assets/styles/global/_form.scss +1 -1
- package/assets/styles/global/_labeled-input.scss +1 -1
- package/assets/styles/global/_layout.scss +1 -1
- package/assets/styles/themes/_dark.scss +28 -0
- package/assets/styles/themes/_light.scss +68 -0
- package/assets/styles/vendor/vue-select.scss +1 -1
- package/assets/translations/en-us.yaml +721 -83
- package/assets/translations/zh-hans.yaml +11 -9
- package/cloud-credential/gcp.vue +9 -1
- package/components/AppModal.vue +2 -0
- package/components/Certificates.vue +5 -0
- package/components/CodeMirror.vue +1 -1
- package/components/ConfigMapSettings/Settings.vue +377 -0
- package/components/ConfigMapSettings/index.vue +354 -0
- package/components/CruResource.vue +1 -2
- package/components/DetailText.vue +61 -11
- package/components/Drawer/Chrome.vue +116 -0
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +61 -0
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +48 -0
- package/components/Drawer/ResourceDetailDrawer/__tests__/ConfigTab.test.ts +54 -0
- package/components/Drawer/ResourceDetailDrawer/__tests__/YamlTab.test.ts +80 -0
- package/components/Drawer/ResourceDetailDrawer/__tests__/composables.test.ts +82 -0
- package/components/Drawer/ResourceDetailDrawer/__tests__/helpers.test.ts +42 -0
- package/components/Drawer/ResourceDetailDrawer/composables.ts +50 -0
- package/components/Drawer/ResourceDetailDrawer/helpers.ts +10 -0
- package/components/Drawer/ResourceDetailDrawer/index.vue +110 -0
- package/components/FilterPanel.vue +156 -0
- package/components/{fleet/ForceDirectedTreeChart/index.vue → ForceDirectedTreeChart.vue} +47 -41
- package/components/GrowlManager.vue +16 -15
- package/components/IconOrSvg.vue +19 -35
- package/components/KeyValueView.vue +1 -1
- package/components/LocaleSelector.vue +9 -1
- package/components/ProgressBarMulti.vue +1 -0
- package/components/PromptModal.vue +6 -1
- package/components/PromptRemove.vue +5 -1
- package/components/RelatedResources.vue +4 -12
- package/components/Resource/Detail/Additional.vue +46 -0
- package/components/Resource/Detail/Card/PodsCard/Bubble.vue +13 -0
- package/components/Resource/Detail/Card/PodsCard/composable.ts +30 -0
- package/components/Resource/Detail/Card/PodsCard/index.vue +118 -0
- package/components/Resource/Detail/Card/ResourceUsageCard/composable.ts +51 -0
- package/components/Resource/Detail/Card/ResourceUsageCard/index.vue +79 -0
- package/components/Resource/Detail/Card/Scaler.vue +89 -0
- package/components/Resource/Detail/Card/StateCard/composables.ts +112 -0
- package/components/Resource/Detail/Card/StateCard/index.vue +39 -0
- package/components/Resource/Detail/Card/VerticalGap.vue +11 -0
- package/components/Resource/Detail/Card/__tests__/Card.test.ts +36 -0
- package/components/Resource/Detail/Card/__tests__/PodsCard.test.ts +84 -0
- package/components/Resource/Detail/Card/__tests__/ResourceUsageCard.test.ts +72 -0
- package/components/Resource/Detail/Card/__tests__/Scaler.test.ts +87 -0
- package/components/Resource/Detail/Card/__tests__/StateCard.test.ts +53 -0
- package/components/Resource/Detail/Card/__tests__/VerticalGap.test.ts +14 -0
- package/components/Resource/Detail/Card/__tests__/index.test.ts +36 -0
- package/components/Resource/Detail/Card/index.vue +56 -0
- package/components/Resource/Detail/Metadata/Annotations/__tests__/index.test.ts +19 -0
- package/components/Resource/Detail/Metadata/Annotations/composable.ts +12 -0
- package/components/Resource/Detail/Metadata/Annotations/index.vue +31 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +223 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/index.test.ts +103 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/composable.ts +64 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +298 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +133 -0
- package/components/Resource/Detail/Metadata/KeyValue.vue +138 -0
- package/components/Resource/Detail/Metadata/Labels/__tests__/index.test.ts +18 -0
- package/components/Resource/Detail/Metadata/Labels/composable.ts +12 -0
- package/components/Resource/Detail/Metadata/Labels/index.vue +31 -0
- package/components/Resource/Detail/Metadata/Rectangle.vue +32 -0
- package/components/Resource/Detail/Metadata/__tests__/KeyValue.test.ts +107 -0
- package/components/Resource/Detail/Metadata/__tests__/Rectangle.test.ts +24 -0
- package/components/Resource/Detail/Metadata/__tests__/composables.test.ts +75 -0
- package/components/Resource/Detail/Metadata/__tests__/index.test.ts +91 -0
- package/components/Resource/Detail/Metadata/composables.ts +78 -0
- package/components/Resource/Detail/Metadata/index.vue +73 -0
- package/components/Resource/Detail/Page.vue +37 -0
- package/components/Resource/Detail/PercentageBar.vue +40 -0
- package/components/Resource/Detail/ResourceRow.vue +138 -0
- package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/composables.test.ts +29 -0
- package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/__tests__/index.test.ts +48 -0
- package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/composables.ts +31 -0
- package/components/Resource/Detail/ResourceTabs/ConfigMapDataTab/index.vue +50 -0
- package/components/Resource/Detail/ResourceTabs/KnownHostsTab/__tests__/composables.test.ts +66 -0
- package/components/Resource/Detail/ResourceTabs/KnownHostsTab/composables.ts +21 -0
- package/components/Resource/Detail/ResourceTabs/KnownHostsTab/index.vue +31 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/Basic.vue +45 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/BasicAuth.vue +31 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/Certificate.vue +31 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/Registry.vue +22 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/ServiceAccountToken.vue +31 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/Ssh.vue +32 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Basic.test.ts +40 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/BasicAuth.test.ts +33 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Certificate.test.ts +33 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Registry.test.ts +27 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/ServiceAccountToken.test.ts +33 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/Ssh.test.ts +33 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/auth-types.test.ts +186 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/__tests__/composables.test.ts +102 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/auth-types.ts +109 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/composeables.ts +52 -0
- package/components/Resource/Detail/ResourceTabs/SecretDataTab/index.vue +71 -0
- package/components/Resource/Detail/SpacedRow.vue +14 -0
- package/components/Resource/Detail/StatusBar.vue +59 -0
- package/components/Resource/Detail/StatusRow.vue +61 -0
- package/components/Resource/Detail/TitleBar/Title.vue +14 -0
- package/components/Resource/Detail/TitleBar/Top.vue +14 -0
- package/components/Resource/Detail/TitleBar/__tests__/Title.test.ts +17 -0
- package/components/Resource/Detail/TitleBar/__tests__/Top.test.ts +17 -0
- package/components/Resource/Detail/TitleBar/__tests__/composables.test.ts +63 -0
- package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +142 -0
- package/components/Resource/Detail/TitleBar/composables.ts +44 -0
- package/components/Resource/Detail/TitleBar/index.vue +196 -0
- package/components/Resource/Detail/Top/index.vue +34 -0
- package/components/Resource/Detail/__tests__/Page.test.ts +32 -0
- package/components/Resource/Detail/composables.ts +45 -0
- package/components/ResourceDetail/Masthead/__tests__/index.test.ts +70 -0
- package/components/ResourceDetail/{__tests__/Masthead.test.ts → Masthead/__tests__/legacy.test.ts} +3 -3
- package/components/ResourceDetail/Masthead/index.vue +65 -0
- package/components/ResourceDetail/Masthead/latest.vue +44 -0
- package/components/ResourceDetail/__tests__/index.test.ts +135 -0
- package/components/ResourceDetail/index.vue +73 -557
- package/components/ResourceDetail/legacy.vue +562 -0
- package/components/ResourceList/Masthead.vue +6 -0
- package/components/ResourceTable.vue +41 -7
- package/components/ResourceYaml.vue +14 -1
- package/components/SlideInPanelManager.vue +117 -10
- package/components/SortableTable/index.vue +13 -2
- package/components/SortableTable/selection.js +21 -8
- package/components/StateDot/index.vue +28 -0
- package/components/StatusBadge.vue +6 -4
- package/components/SubtleLink.vue +25 -0
- package/components/Tabbed/index.vue +11 -15
- package/components/Wizard.vue +16 -3
- package/components/YamlEditor.vue +1 -1
- package/components/__tests__/ConfigMapSettings.test.ts +376 -0
- package/components/__tests__/FilterPanel.test.ts +81 -0
- package/components/__tests__/GrowlManager.test.ts +0 -25
- package/components/auth/AuthBanner.vue +2 -3
- package/components/auth/RoleDetailEdit.vue +45 -3
- package/components/auth/login/ldap.vue +1 -1
- package/components/auth/login/oidc.vue +6 -1
- package/components/fleet/FleetApplications.vue +174 -0
- package/components/fleet/FleetClusterTargets/TargetsList.vue +66 -0
- package/components/fleet/FleetClusterTargets/index.vue +455 -0
- package/components/fleet/FleetClusters.vue +25 -6
- package/components/fleet/FleetGitRepoPaths.vue +476 -0
- package/components/fleet/FleetHelmOps.vue +123 -0
- package/components/fleet/FleetIntro.vue +58 -28
- package/components/fleet/FleetNoWorkspaces.vue +5 -1
- package/components/fleet/FleetOCIStorageSecret.vue +171 -0
- package/components/fleet/FleetRepos.vue +37 -80
- package/components/fleet/FleetResources.vue +53 -26
- package/components/fleet/FleetSummary.vue +26 -51
- package/components/fleet/FleetValuesFrom.vue +295 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +1224 -0
- package/components/fleet/__tests__/FleetGitRepoPaths.test.ts +265 -0
- package/components/fleet/__tests__/FleetOCIStorageSecret.test.ts +213 -0
- package/components/fleet/__tests__/FleetSummary.test.ts +39 -39
- package/components/fleet/__tests__/FleetValuesFrom.test.ts +300 -0
- package/components/fleet/dashboard/Empty.vue +73 -0
- package/components/fleet/dashboard/ResourceCard.vue +184 -0
- package/components/fleet/dashboard/ResourceCardSummary.vue +195 -0
- package/components/fleet/dashboard/ResourceDetails.vue +194 -0
- package/components/fleet/dashboard/ResourcePanel.vue +383 -0
- package/components/form/ArrayList.vue +19 -2
- package/components/form/ChangePassword.vue +3 -1
- package/components/form/Footer.vue +10 -4
- package/components/form/KeyValue.vue +81 -43
- package/components/form/LabeledSelect.vue +56 -16
- package/components/form/Labels.vue +90 -17
- package/components/form/MatchExpressions.vue +46 -5
- package/components/form/NameNsDescription.vue +1 -1
- package/components/form/ResourceSelector.vue +1 -0
- package/components/form/ResourceTabs/index.vue +5 -0
- package/components/form/SecretSelector.vue +9 -2
- package/components/form/Select.vue +57 -19
- package/components/form/SimpleSecretSelector.vue +17 -4
- package/components/form/Taints.vue +21 -2
- package/components/form/UnitInput.vue +8 -0
- package/components/form/ValueFromResource.vue +31 -19
- package/components/form/__tests__/LabeledSelect.test.ts +8 -4
- package/components/form/__tests__/Labels.test.ts +360 -0
- package/components/form/__tests__/MatchExpressions.test.ts +16 -13
- package/components/form/__tests__/Select.test.ts +5 -2
- package/components/formatter/FleetApplicationClustersReady.vue +77 -0
- package/components/formatter/FleetApplicationSource.vue +71 -0
- package/components/formatter/FleetSummaryGraph.vue +7 -0
- package/components/formatter/WorkloadHealthScale.vue +1 -1
- package/components/google/AccountAccess.vue +211 -0
- package/components/google/types/gcp.d.ts +136 -0
- package/components/google/types/index.d.ts +101 -0
- package/components/google/util/__mocks__/gcp.ts +465 -0
- package/components/google/util/formatter.ts +82 -0
- package/components/google/util/gcp.ts +134 -0
- package/components/google/util/index.d.ts +11 -0
- package/components/nav/Favorite.vue +1 -1
- package/components/nav/Group.vue +70 -47
- package/components/nav/Header.vue +13 -8
- package/components/nav/NamespaceFilter.vue +13 -1
- package/components/nav/NotificationCenter/Notification.vue +510 -0
- package/components/nav/NotificationCenter/NotificationHeader.vue +112 -0
- package/components/nav/NotificationCenter/index.vue +148 -0
- package/components/nav/TopLevelMenu.helper.ts +55 -34
- package/components/nav/TopLevelMenu.vue +11 -0
- package/components/nav/Type.vue +4 -1
- package/composables/drawer.ts +26 -0
- package/composables/resources.test.ts +63 -0
- package/composables/resources.ts +38 -0
- package/composables/useI18n.ts +12 -11
- package/composables/useIsNewDetailPageEnabled.ts +17 -0
- package/config/labels-annotations.js +20 -11
- package/config/product/auth.js +17 -1
- package/config/product/{cis.js → compliance.js} +23 -26
- package/config/product/explorer.js +5 -1
- package/config/product/fleet.js +77 -17
- package/config/product/settings.js +22 -11
- package/config/query-params.js +6 -1
- package/config/roles.ts +2 -1
- package/config/router/navigation-guards/authentication.js +51 -2
- package/config/router/routes.js +45 -31
- package/config/secret.ts +15 -0
- package/config/settings.ts +24 -5
- package/config/store.js +2 -0
- package/config/system-namespaces.js +1 -1
- package/config/table-headers.js +53 -23
- package/config/types.js +17 -6
- package/core/plugin-helpers.ts +3 -2
- package/core/plugin.ts +32 -7
- package/core/types.ts +18 -1
- package/detail/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +22 -18
- package/detail/fleet.cattle.io.cluster.vue +28 -15
- package/detail/fleet.cattle.io.gitrepo.vue +10 -1
- package/detail/fleet.cattle.io.helmop.vue +157 -0
- package/detail/management.cattle.io.fleetworkspace.vue +18 -27
- package/detail/management.cattle.io.oidcclient.vue +369 -0
- package/detail/node.vue +2 -2
- package/detail/pod.vue +2 -2
- package/detail/service.vue +10 -1
- package/detail/workload/index.vue +8 -2
- package/dialog/ExtensionCatalogUninstallDialog.vue +7 -4
- package/dialog/GenericPrompt.vue +1 -1
- package/dialog/HelmOpForceUpdateDialog.vue +132 -0
- package/dialog/ImportDialog.vue +8 -8
- package/dialog/OidcClientSecretDialog.vue +117 -0
- package/dialog/RedeployWorkloadDialog.vue +164 -0
- package/edit/__tests__/cis.cattle.io.clusterscan.test.ts +3 -3
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +60 -68
- package/edit/auth/oidc.vue +159 -93
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +4 -1
- package/edit/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +30 -31
- package/edit/{cis.cattle.io.clusterscanbenchmark.vue → compliance.cattle.io.clusterscanbenchmark.vue} +4 -4
- package/edit/{cis.cattle.io.clusterscanprofile.vue → compliance.cattle.io.clusterscanprofile.vue} +5 -5
- package/edit/configmap.vue +4 -1
- package/edit/constraints.gatekeeper.sh.constraint/index.vue +1 -0
- package/edit/fleet.cattle.io.gitrepo.vue +70 -255
- package/edit/fleet.cattle.io.helmop.vue +772 -0
- package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
- package/edit/k8s.cni.cncf.io.networkattachmentdefinition.vue +1 -0
- package/edit/logging-flow/index.vue +1 -0
- package/edit/logging.banzaicloud.io.output/index.vue +1 -0
- package/edit/management.cattle.io.fleetworkspace.vue +44 -10
- package/edit/management.cattle.io.oidcclient.vue +162 -0
- package/edit/management.cattle.io.project.vue +4 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +5 -0
- package/edit/monitoring.coreos.com.prometheusrule/index.vue +1 -0
- package/edit/monitoring.coreos.com.receiver/auth.vue +30 -30
- package/edit/monitoring.coreos.com.receiver/index.vue +1 -0
- package/edit/monitoring.coreos.com.receiver/types/email.vue +1 -1
- package/edit/monitoring.coreos.com.route.vue +1 -0
- package/edit/namespace.vue +1 -0
- package/edit/networking.istio.io.destinationrule/index.vue +4 -1
- package/edit/networking.k8s.io.ingress/index.vue +4 -1
- package/edit/networking.k8s.io.networkpolicy/PolicyRules.vue +7 -2
- package/edit/networking.k8s.io.networkpolicy/index.vue +6 -2
- package/edit/node.vue +1 -0
- package/edit/persistentvolume/index.vue +4 -1
- package/edit/provisioning.cattle.io.cluster/rke2.vue +418 -382
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +27 -27
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +5 -0
- package/edit/resources.cattle.io.restore.vue +1 -1
- package/edit/secret/index.vue +1 -0
- package/edit/service.vue +4 -1
- package/edit/serviceaccount.vue +4 -1
- package/edit/storage.k8s.io.storageclass/index.vue +4 -1
- package/edit/workload/index.vue +5 -0
- package/list/{cis.cattle.io.clusterscan.vue → compliance.cattle.io.clusterscan.vue} +2 -2
- package/list/fleet.cattle.io.gitrepo.vue +1 -1
- package/list/fleet.cattle.io.helmop.vue +108 -0
- package/list/management.cattle.io.oidcclient.vue +108 -0
- package/list/namespace.vue +5 -2
- package/list/node.vue +2 -0
- package/machine-config/amazonec2.vue +3 -24
- package/machine-config/components/GCEImage.vue +374 -0
- package/machine-config/google.vue +617 -0
- package/mixins/__tests__/brand.spec.ts +170 -0
- package/mixins/auth-config.js +8 -1
- package/mixins/brand.js +16 -17
- package/mixins/create-edit-view/index.js +5 -0
- package/mixins/preset.js +100 -0
- package/mixins/resource-fetch-api-pagination.js +18 -0
- package/mixins/resource-fetch.js +1 -1
- package/mixins/resource-table-watch.js +45 -0
- package/mixins/vue-select-overrides.js +1 -0
- package/models/__tests__/chart.test.ts +273 -0
- package/models/__tests__/fleet.cattle.io.gitrepo.test.ts +1 -1
- package/models/chart.js +144 -2
- package/models/{cis.cattle.io.clusterscan.js → compliance.cattle.io.clusterscan.js} +8 -8
- package/models/{cis.cattle.io.clusterscanbenchmark.js → compliance.cattle.io.clusterscanbenchmark.js} +1 -1
- package/models/{cis.cattle.io.clusterscanprofile.js → compliance.cattle.io.clusterscanprofile.js} +5 -5
- package/models/{cis.cattle.io.clusterscanreport.js → compliance.cattle.io.clusterscanreport.js} +1 -1
- package/models/fleet-application.js +314 -0
- package/models/fleet.cattle.io.bundle.js +9 -8
- package/models/fleet.cattle.io.cluster.js +11 -0
- package/models/fleet.cattle.io.gitrepo.js +41 -365
- package/models/fleet.cattle.io.helmop.js +198 -0
- package/models/management.cattle.io.authconfig.js +1 -0
- package/models/management.cattle.io.fleetworkspace.js +14 -1
- package/models/management.cattle.io.oidcclient.js +18 -0
- package/models/management.cattle.io.registration.js +3 -0
- package/models/provisioning.cattle.io.cluster.js +5 -5
- package/models/service.js +4 -0
- package/models/workload.js +19 -18
- package/package.json +2 -1
- package/pages/about.vue +4 -58
- package/pages/auth/login.vue +1 -1
- package/pages/auth/verify.vue +13 -1
- package/pages/c/_cluster/apps/charts/AddRepoLink.vue +36 -0
- package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +80 -0
- package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +54 -0
- package/pages/c/_cluster/apps/charts/StatusLabel.vue +33 -0
- package/pages/c/_cluster/apps/charts/index.vue +487 -465
- package/pages/c/_cluster/auth/user.retention/index.vue +87 -78
- package/pages/c/_cluster/explorer/EventsTable.vue +1 -1
- package/pages/c/_cluster/explorer/index.vue +3 -3
- package/pages/c/_cluster/explorer/tools/pages/_page.vue +0 -1
- package/pages/c/_cluster/fleet/__tests__/index.test.ts +426 -0
- package/pages/c/_cluster/fleet/application/_resource/_id.vue +14 -0
- package/pages/c/_cluster/fleet/application/_resource/create.vue +14 -0
- package/pages/c/_cluster/fleet/application/create.vue +341 -0
- package/pages/c/_cluster/fleet/application/index.vue +139 -0
- package/pages/c/_cluster/fleet/graph/config.js +277 -0
- package/pages/c/_cluster/fleet/index.vue +809 -329
- package/pages/c/_cluster/fleet/settings/index.vue +229 -0
- package/pages/c/_cluster/longhorn/index.vue +5 -2
- package/pages/c/_cluster/uiplugins/CatalogList/index.vue +16 -1
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +2 -2
- package/pages/explorer/resource/detail/configmap.vue +42 -0
- package/pages/explorer/resource/detail/secret.vue +50 -0
- package/pages/home.vue +9 -55
- package/pages/support/index.vue +4 -6
- package/plugins/dashboard-store/actions.js +50 -14
- package/plugins/dashboard-store/getters.js +38 -21
- package/plugins/dashboard-store/mutations.js +51 -7
- package/plugins/dashboard-store/resource-class.js +30 -4
- package/plugins/steve/__tests__/subscribe.spec.ts +66 -1
- package/plugins/steve/actions.js +3 -0
- package/plugins/steve/steve-pagination-utils.ts +17 -8
- package/plugins/steve/subscribe.js +235 -43
- package/rancher-components/BadgeState/BadgeState.vue +3 -1
- package/rancher-components/Banner/Banner.vue +13 -0
- package/rancher-components/Form/Checkbox/Checkbox.vue +11 -6
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +1 -1
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +1 -0
- package/rancher-components/RcItemCard/RcItemCard.test.ts +189 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +430 -0
- package/rancher-components/RcItemCard/RcItemCardAction.vue +24 -0
- package/rancher-components/RcItemCard/index.ts +2 -0
- package/store/auth.js +3 -0
- package/store/catalog.js +85 -25
- package/store/growl.js +97 -8
- package/store/index.js +39 -14
- package/store/notifications.ts +426 -0
- package/store/prefs.js +0 -1
- package/store/slideInPanel.ts +6 -0
- package/store/type-map.js +19 -15
- package/store/uiplugins.ts +15 -1
- package/types/fleet.d.ts +59 -0
- package/types/notifications/index.ts +74 -0
- package/types/resources/settings.d.ts +19 -1
- package/types/shell/index.d.ts +388 -307
- package/types/store/dashboard-store.types.ts +33 -3
- package/types/store/pagination.types.ts +6 -1
- package/types/store/subscribe.types.ts +50 -0
- package/utils/__tests__/fleet.test.ts +148 -0
- package/utils/__tests__/object.test.ts +54 -1
- package/utils/__tests__/string.test.ts +273 -1
- package/utils/__tests__/time.test.ts +31 -0
- package/utils/auth.js +41 -5
- package/utils/crypto/encryption.ts +103 -0
- package/utils/cspAdaptor.ts +51 -0
- package/utils/fleet-types.ts +0 -0
- package/utils/fleet.ts +190 -2
- package/utils/object.js +36 -0
- package/utils/pagination-utils.ts +27 -2
- package/utils/pagination-wrapper.ts +132 -50
- package/utils/release-notes.ts +48 -0
- package/utils/selector-typed.ts +7 -2
- package/utils/settings.ts +4 -1
- package/utils/string.js +24 -0
- package/utils/style.ts +39 -0
- package/utils/{time.js → time.ts} +25 -6
- package/utils/uiplugins.ts +22 -0
- package/utils/validators/formRules/__tests__/index.test.ts +36 -3
- package/utils/validators/formRules/index.ts +13 -3
- package/utils/window.js +11 -7
- package/components/__tests__/ApplicationCard.test.ts +0 -27
- package/components/cards/ApplicationCard.vue +0 -145
- package/components/fleet/ForceDirectedTreeChart/chartIcons.js +0 -17
- package/config/product/legacy.js +0 -62
- package/config/secret.js +0 -14
- package/pages/c/_cluster/fleet/GitRepoGraphConfig.js +0 -249
- package/pages/c/_cluster/legacy/pages/_page.vue +0 -29
- package/pages/c/_cluster/legacy/project/_page.vue +0 -57
- package/pages/c/_cluster/legacy/project/index.vue +0 -32
- package/pages/c/_cluster/legacy/project/pipelines.vue +0 -96
- /package/components/ResourceDetail/{Masthead.vue → Masthead/legacy.vue} +0 -0
- /package/{components/form/SSHKnownHosts → dialog}/__tests__/KnownHostsEditDialog.test.ts +0 -0
|
@@ -7,6 +7,7 @@ generic:
|
|
|
7
7
|
userMenu: user menu
|
|
8
8
|
actionMenu: action menu
|
|
9
9
|
namespaceFilter: namespace filter menu
|
|
10
|
+
imageAlt: Generic Rancher image alt
|
|
10
11
|
banners:
|
|
11
12
|
altCloseBanner: Close banner icon
|
|
12
13
|
bannerIcon: Banner icon
|
|
@@ -67,6 +68,11 @@ generic:
|
|
|
67
68
|
warning: Warning
|
|
68
69
|
error: Error
|
|
69
70
|
ok: OK
|
|
71
|
+
other: |-
|
|
72
|
+
{count, plural,
|
|
73
|
+
one {other}
|
|
74
|
+
other {others}
|
|
75
|
+
}
|
|
70
76
|
overview: Overview
|
|
71
77
|
plusMore: "+ {n} more"
|
|
72
78
|
readFromFile: Read from File
|
|
@@ -75,6 +81,7 @@ generic:
|
|
|
75
81
|
reload: Reload
|
|
76
82
|
register: Register
|
|
77
83
|
remove: Remove
|
|
84
|
+
delete: Delete
|
|
78
85
|
addCatalog: Add Catalog
|
|
79
86
|
resource: |-
|
|
80
87
|
{count, plural,
|
|
@@ -119,6 +126,13 @@ generic:
|
|
|
119
126
|
experimental: Experimental
|
|
120
127
|
|
|
121
128
|
deprecated: Deprecated
|
|
129
|
+
upgradeable: Upgradeable
|
|
130
|
+
installed: Installed
|
|
131
|
+
featured: Featured
|
|
132
|
+
shortFeatured: Feat
|
|
133
|
+
category: Category
|
|
134
|
+
tags: Tags
|
|
135
|
+
tag: Tag
|
|
122
136
|
placeholder: "e.g. {text}"
|
|
123
137
|
moreInfo: More Info
|
|
124
138
|
selectors:
|
|
@@ -141,7 +155,18 @@ generic:
|
|
|
141
155
|
genericAddRow: Add a new row
|
|
142
156
|
arrayList: Array list input
|
|
143
157
|
genericRow: row {index}
|
|
158
|
+
showLess: Show less
|
|
159
|
+
showMore: Show more
|
|
160
|
+
opensInNewTab: Opens in a new tab
|
|
144
161
|
|
|
162
|
+
tabs:
|
|
163
|
+
addItem: Add a new tab item
|
|
164
|
+
removeItem: Remove selected tab item
|
|
165
|
+
|
|
166
|
+
graph:
|
|
167
|
+
noPermissions: You do not have permission to Graph view
|
|
168
|
+
loading: Loading chart data...
|
|
169
|
+
rendering: Rendering chart...
|
|
145
170
|
|
|
146
171
|
locale:
|
|
147
172
|
menu: Locale selector menu
|
|
@@ -226,6 +251,7 @@ nav:
|
|
|
226
251
|
Scheduling: Scheduling
|
|
227
252
|
Storage: Storage
|
|
228
253
|
Project: Project
|
|
254
|
+
resources: Resources
|
|
229
255
|
ns:
|
|
230
256
|
all: All Namespaces
|
|
231
257
|
clusterLevel: Only Cluster Resources
|
|
@@ -268,6 +294,10 @@ nav:
|
|
|
268
294
|
label: Page actions menu
|
|
269
295
|
button:
|
|
270
296
|
label: Open page actions menu
|
|
297
|
+
notifications:
|
|
298
|
+
label: Notification Center
|
|
299
|
+
button:
|
|
300
|
+
label: Open notification center
|
|
271
301
|
failWhale:
|
|
272
302
|
authMiddleware: Auth Middleware
|
|
273
303
|
clusterNotFound: Cluster { clusterId } not found
|
|
@@ -282,7 +312,7 @@ product:
|
|
|
282
312
|
apps: Apps
|
|
283
313
|
auth: Users & Authentication
|
|
284
314
|
backup: Rancher Backups
|
|
285
|
-
|
|
315
|
+
compliance: Compliance
|
|
286
316
|
ecm: Cluster Manager
|
|
287
317
|
explorer: Cluster Explorer
|
|
288
318
|
fleet: Continuous Delivery
|
|
@@ -667,6 +697,7 @@ authConfig:
|
|
|
667
697
|
oidc:
|
|
668
698
|
genericoidc: Configure an OIDC account
|
|
669
699
|
keycloakoidc: Configure a Keycloak OIDC account
|
|
700
|
+
cognito: Configure an Amazon Cognito account
|
|
670
701
|
rancherUrl: Rancher URL
|
|
671
702
|
clientId: Client ID
|
|
672
703
|
clientSecret: Client Secret
|
|
@@ -685,6 +716,8 @@ authConfig:
|
|
|
685
716
|
tokenEndpoint: Token Endpoint
|
|
686
717
|
userInfoEndpoint: User Info Endpoint
|
|
687
718
|
acrValue: Authorization Context Reference
|
|
719
|
+
cognitoIssuer: Issuer URL
|
|
720
|
+
cognitoHelp: "You will need to create an application client in Cognito of type <b>Traditional web application</b> with the Return URL set to the URL shown below."
|
|
688
721
|
scope:
|
|
689
722
|
label: Scopes
|
|
690
723
|
placeholder: openid
|
|
@@ -729,6 +762,14 @@ assignTo:
|
|
|
729
762
|
asyncButton:
|
|
730
763
|
alt:
|
|
731
764
|
iconAlt: Async button icon
|
|
765
|
+
registerApplication:
|
|
766
|
+
action: Add Application
|
|
767
|
+
success: Added
|
|
768
|
+
waiting: Adding…
|
|
769
|
+
saveApplication:
|
|
770
|
+
action: Save Application
|
|
771
|
+
success: Saved
|
|
772
|
+
waiting: Saving…
|
|
732
773
|
apply:
|
|
733
774
|
action: Apply
|
|
734
775
|
success: Applied
|
|
@@ -848,6 +889,10 @@ asyncButton:
|
|
|
848
889
|
action: Resume Orchestration
|
|
849
890
|
success: Resumed Orchestration
|
|
850
891
|
waiting: Resuming Orchestration
|
|
892
|
+
redeploy:
|
|
893
|
+
action: Redeploy
|
|
894
|
+
success: Redeployed
|
|
895
|
+
waiting: Redeploying Workload
|
|
851
896
|
rollback:
|
|
852
897
|
action: Roll Back
|
|
853
898
|
success: Rolled Back
|
|
@@ -1013,9 +1058,6 @@ catalog:
|
|
|
1013
1058
|
experimentalWarning: '{chartName} has been marked as experimental. Use caution when installing this helm chart as it might not function as expected.'
|
|
1014
1059
|
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.'
|
|
1015
1060
|
charts:
|
|
1016
|
-
browseBtn: Browse
|
|
1017
|
-
featuredBtn: Featured
|
|
1018
|
-
featuredAriaLabel: Show Featured Charts Carousel and charts grid
|
|
1019
1061
|
browseAriaLabel: Show only charts grid
|
|
1020
1062
|
iconAlt: Icon for {app} card/grid item
|
|
1021
1063
|
refresh: refresh charts
|
|
@@ -1030,17 +1072,50 @@ catalog:
|
|
|
1030
1072
|
windowsIncompatible: Linux only
|
|
1031
1073
|
versionWindowsIncompatible: Linux only version
|
|
1032
1074
|
header: Charts
|
|
1033
|
-
|
|
1034
|
-
|
|
1075
|
+
noCharts:
|
|
1076
|
+
title: No charts to show
|
|
1077
|
+
messagePart1: <b>Tips:</b> undo the last filter you applied or
|
|
1078
|
+
messagePart2: clear all filters
|
|
1079
|
+
messagePart3: ', and ensure you have the right <a tabindex="0" href={repositoriesUrl} rel="noopener noreferrer nofollow">repositories</a> in place.'
|
|
1080
|
+
messagePart4: 'Want to learn more about Helm Charts and Apps? Read our <a tabindex="0" href="{docsBase}/how-to-guides/new-user-guides/helm-charts-in-rancher" target="_blank" class="secondary-text-link">documentation <i class="icon icon-external-link"></i></a>.'
|
|
1035
1081
|
noWindows: Your repos do not contain any charts capable of being deployed on a cluster with Windows nodes.
|
|
1036
1082
|
noWindowsAndLinux: Your repos do not contain any charts capable of being deployed on a cluster with both Windows and Linux worker nodes.
|
|
1037
1083
|
operatingSystems:
|
|
1038
1084
|
all: All Operating Systems
|
|
1039
1085
|
linux: Linux
|
|
1040
1086
|
windows: Windows
|
|
1041
|
-
search:
|
|
1087
|
+
search: Search the catalogue...
|
|
1042
1088
|
deprecatedChartsFilter:
|
|
1043
1089
|
label: Show deprecated apps
|
|
1090
|
+
addNewRepo:
|
|
1091
|
+
label: Add new
|
|
1092
|
+
ariaLabel: Add a new repository
|
|
1093
|
+
appChartCard:
|
|
1094
|
+
footerItem:
|
|
1095
|
+
ariaLabel: Apply filter
|
|
1096
|
+
statusFilterCautions:
|
|
1097
|
+
installation: Installation status cannot be determined with 100% accuracy
|
|
1098
|
+
upgradeable: Upgradeable status cannot be determined with 100% accuracy
|
|
1099
|
+
totalChartsMessage: |-
|
|
1100
|
+
{count , plural,
|
|
1101
|
+
=1 { {count} chart in total }
|
|
1102
|
+
other { {count} charts in total }
|
|
1103
|
+
}
|
|
1104
|
+
totalMatchedChartsMessage: |-
|
|
1105
|
+
{count , plural,
|
|
1106
|
+
=1 { {count} chart matching your criteria. }
|
|
1107
|
+
other { {count} charts matching your criteria. }
|
|
1108
|
+
}
|
|
1109
|
+
resetFilters:
|
|
1110
|
+
title: Clear all filters
|
|
1111
|
+
sort:
|
|
1112
|
+
prefix: Sort by
|
|
1113
|
+
recommended: Recommended
|
|
1114
|
+
lastUpdatedDesc: Last updated
|
|
1115
|
+
alphaAscending: Chart name, A → Z
|
|
1116
|
+
alphaDescending: Chart name, Z → A
|
|
1117
|
+
refreshButton:
|
|
1118
|
+
label: Refresh all repositories
|
|
1044
1119
|
install:
|
|
1045
1120
|
action:
|
|
1046
1121
|
goToUpgrade: Edit/Upgrade
|
|
@@ -1245,10 +1320,10 @@ chartHeading:
|
|
|
1245
1320
|
overview: Overview
|
|
1246
1321
|
poweredBy: "Powered by:"
|
|
1247
1322
|
|
|
1248
|
-
|
|
1323
|
+
compliance:
|
|
1249
1324
|
addTest: Add Test ID
|
|
1250
1325
|
alertNeeded: |-
|
|
1251
|
-
Alerting must be enabled within the
|
|
1326
|
+
Alerting must be enabled within the compliance chart values.yaml.
|
|
1252
1327
|
This requires that the <a tabindex="0" href="{link}">{vendor} Monitoring and Alerting app</a> is installed
|
|
1253
1328
|
and the Receivers and Routes are <a target="_blank" rel='noopener noreferrer nofollow' href='{docsBase}/how-to-guides/advanced-user-guides/monitoring-v2-configuration-guides/advanced-configuration/alertmanager'> configured to send out alerts.</a>
|
|
1254
1329
|
alertOnComplete: Alert on scan completion
|
|
@@ -1303,6 +1378,9 @@ cis:
|
|
|
1303
1378
|
testsSkipped: Tests Skipped
|
|
1304
1379
|
testsToSkip: Tests to Skip
|
|
1305
1380
|
alerting: Alerting
|
|
1381
|
+
detail:
|
|
1382
|
+
subRow:
|
|
1383
|
+
noNodes: No Additional Information
|
|
1306
1384
|
|
|
1307
1385
|
cluster:
|
|
1308
1386
|
jwtAuthentication:
|
|
@@ -1480,16 +1558,27 @@ cluster:
|
|
|
1480
1558
|
authEncodedJson:
|
|
1481
1559
|
label: Service Account
|
|
1482
1560
|
placeholder: Service Account private key JSON file
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
<
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1561
|
+
gke: GKE
|
|
1562
|
+
gce: GCE
|
|
1563
|
+
help:
|
|
1564
|
+
shared: <p>Create a <a href="https://console.cloud.google.com/projectselector/iam-admin/serviceaccounts" target="_blank" rel="noopener noreferrer nofollow">Service Account</a> with a JSON private key and provide the JSON here.</p>
|
|
1565
|
+
gke: |-
|
|
1566
|
+
<p>These IAM roles are required for GKE:</p>
|
|
1567
|
+
<ul>
|
|
1568
|
+
<li><b>Compute Engine:</b> Compute Viewer (roles/compute.viewer)</li>
|
|
1569
|
+
<li><b>Project:</b> Viewer (roles/viewer)</li>
|
|
1570
|
+
<li><b>Kubernetes Engine:</b> Kubernetes Engine Admin (roles/container.admin)</li>
|
|
1571
|
+
<li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
|
|
1572
|
+
</ul>
|
|
1573
|
+
More info on roles can be found <a href="https://cloud.google.com/kubernetes-engine/docs/how-to/iam-integration" target="_blank" rel="noopener noreferrer nofollow">here</a>.
|
|
1574
|
+
gce: |-
|
|
1575
|
+
<p>These IAM roles are required for GCE:</p>
|
|
1576
|
+
<ul>
|
|
1577
|
+
<li><b>Compute Engine:</b> Compute Engine Admin (roles/compute.admin)</li>
|
|
1578
|
+
<li><b>Project:</b> Viewer (roles/viewer)</li>
|
|
1579
|
+
<li><b>Service Accounts:</b> Service Account User (roles/iam.serviceAccountUser)</li>
|
|
1580
|
+
</ul>
|
|
1581
|
+
More info on roles can be found <a href="https://cloud.google.com/compute/docs/access/iam" target="_blank" rel="noopener noreferrer nofollow">here</a>.
|
|
1493
1582
|
harvester:
|
|
1494
1583
|
namespace: Namespace
|
|
1495
1584
|
cpu: CPUs
|
|
@@ -1878,6 +1967,63 @@ cluster:
|
|
|
1878
1967
|
label: Network
|
|
1879
1968
|
serverOs:
|
|
1880
1969
|
label: OS
|
|
1970
|
+
gce:
|
|
1971
|
+
machineImage:
|
|
1972
|
+
label: Machine Image
|
|
1973
|
+
option: '{name} - {description}'
|
|
1974
|
+
deprecatedOption: '{name}(deprecated) - {description}'
|
|
1975
|
+
tooltip: Please select Image Family to get available images
|
|
1976
|
+
imageProjects:
|
|
1977
|
+
label: Image Projects
|
|
1978
|
+
firewall:
|
|
1979
|
+
header: Firewall Configuration
|
|
1980
|
+
showDeprecated:
|
|
1981
|
+
label: Show Deprecated
|
|
1982
|
+
tooltip: Includes deprecated images
|
|
1983
|
+
diskType:
|
|
1984
|
+
label: Disk Type
|
|
1985
|
+
diskSize:
|
|
1986
|
+
label: Disk Size
|
|
1987
|
+
network:
|
|
1988
|
+
label: Network
|
|
1989
|
+
subnetwork:
|
|
1990
|
+
label: Subnetwork
|
|
1991
|
+
machineType:
|
|
1992
|
+
label: Machine Type
|
|
1993
|
+
family:
|
|
1994
|
+
label: Image Family
|
|
1995
|
+
location:
|
|
1996
|
+
zone:
|
|
1997
|
+
label: Zone
|
|
1998
|
+
scopes:
|
|
1999
|
+
add: Add scope
|
|
2000
|
+
label: Scopes
|
|
2001
|
+
tags:
|
|
2002
|
+
add: Add tags
|
|
2003
|
+
label: Tags
|
|
2004
|
+
openPort:
|
|
2005
|
+
add: Add port
|
|
2006
|
+
label: Open Ports
|
|
2007
|
+
address:
|
|
2008
|
+
label: External Address
|
|
2009
|
+
placeholder: '10.0.0.0/14'
|
|
2010
|
+
tooltip: External IP address for the GCE VM instance.
|
|
2011
|
+
username:
|
|
2012
|
+
label: Username
|
|
2013
|
+
placeholder: docker-user
|
|
2014
|
+
tooltip: This is the username used when SSH'ing into the node, and not a username associated with the GCP account.
|
|
2015
|
+
internalFirewall:
|
|
2016
|
+
label: Allow communication between cluster nodes
|
|
2017
|
+
tooltip: Allows Rancher to open ports required for internal communication between nodes.
|
|
2018
|
+
banner: Tags can be used to impose additional firewall rules.
|
|
2019
|
+
externalFirewall:
|
|
2020
|
+
label: Expose external ports
|
|
2021
|
+
tooltip: Allows Rancher to open ports required for external access.
|
|
2022
|
+
banner: By default, the Kubernetes API server listens on port 6443. Exposing this port on control plane machine pools is required for the Authorized Cluster Endpoint feature to work as expected.
|
|
2023
|
+
error:
|
|
2024
|
+
diskSizeWithoutMax: Disk size has to be greater than {diskSizeMin} based on this image and disk type.
|
|
2025
|
+
diskSizeWithMax: Disk size has to be between {diskSizeMin} and {diskSizeMax} based on this image and disk type.
|
|
2026
|
+
projects: Image projects should be a comma separated list of alphanumeric string which may contain '-' and '.'
|
|
1881
2027
|
addOns:
|
|
1882
2028
|
dependencyBanner: Add-On Configuration can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
|
|
1883
2029
|
additionalManifest:
|
|
@@ -2124,8 +2270,8 @@ cluster:
|
|
|
2124
2270
|
rke2:
|
|
2125
2271
|
banner:
|
|
2126
2272
|
psaChange: PSACT is now set to Rancher default automatically
|
|
2127
|
-
|
|
2128
|
-
|
|
2273
|
+
complianceOverride: Changing this setting may affect cluster security as it overrides default compliance settings
|
|
2274
|
+
complianceUnsupported: The selected Kubernetes Version no longer supports compliance profile "{profile}". 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 compliance profile.
|
|
2129
2275
|
modal:
|
|
2130
2276
|
editYamlMachinePool:
|
|
2131
2277
|
title: Save Machine Configurations
|
|
@@ -2152,10 +2298,10 @@ cluster:
|
|
|
2152
2298
|
label: Default - RKE2 Embedded
|
|
2153
2299
|
security:
|
|
2154
2300
|
header: Security
|
|
2155
|
-
|
|
2156
|
-
server: Server
|
|
2157
|
-
agent:
|
|
2158
|
-
override: Allow the default Pod Security Admission Configuration Template to be overridden when using a
|
|
2301
|
+
compliance:
|
|
2302
|
+
server: Server compliance Profile
|
|
2303
|
+
agent: Compliance Profile
|
|
2304
|
+
override: Allow the default Pod Security Admission Configuration Template to be overridden when using a compliance profile
|
|
2159
2305
|
defaultPodSecurityPolicyTemplateName:
|
|
2160
2306
|
label: Default Pod Security Policy
|
|
2161
2307
|
option: Default - RKE2 Embedded
|
|
@@ -2166,7 +2312,7 @@ cluster:
|
|
|
2166
2312
|
default: Default - RKE2 Embedded
|
|
2167
2313
|
secretEncryption:
|
|
2168
2314
|
label: Encrypt Secrets
|
|
2169
|
-
|
|
2315
|
+
complianceProfile:
|
|
2170
2316
|
option: (None)
|
|
2171
2317
|
enableNetworkPolicy:
|
|
2172
2318
|
label: Project Network Isolation
|
|
@@ -2442,6 +2588,9 @@ detailText:
|
|
|
2442
2588
|
binary: '<Binary Data: {n, number} bytes>'
|
|
2443
2589
|
empty: '<Empty>'
|
|
2444
2590
|
unsupported: '<Value not supported by UI, see YAML>'
|
|
2591
|
+
sensitive:
|
|
2592
|
+
hide: Hide Sensitive Values
|
|
2593
|
+
show: Show Sensitive Values
|
|
2445
2594
|
plusMore: |-
|
|
2446
2595
|
{n, plural,
|
|
2447
2596
|
=1 {+ 1 more char}
|
|
@@ -2475,6 +2624,105 @@ etcdInfoBanner:
|
|
|
2475
2624
|
failedProposals: "Number of failed proposals:"
|
|
2476
2625
|
|
|
2477
2626
|
fleet:
|
|
2627
|
+
settings:
|
|
2628
|
+
label: Fleet
|
|
2629
|
+
title: Fleet Settings
|
|
2630
|
+
info: Rancher will reboot Fleet agent and controller on settings change.
|
|
2631
|
+
apply: Apply changes
|
|
2632
|
+
noPermissions: You have no permissions to modify Fleet Settings
|
|
2633
|
+
parseError: 'Cannot parse values from "{ path }" in "{ id }" ConfigMap'
|
|
2634
|
+
fields:
|
|
2635
|
+
ariaLabel: Fleet {name} setting
|
|
2636
|
+
agentTLSMode:
|
|
2637
|
+
label: TLS Mode
|
|
2638
|
+
description: "Determines whether the agent should trust CA bundles from the operating system's trust store when connecting to a management cluster."
|
|
2639
|
+
options:
|
|
2640
|
+
system-store:
|
|
2641
|
+
label: system-store
|
|
2642
|
+
strict:
|
|
2643
|
+
label: strict
|
|
2644
|
+
agentCheckinInterval:
|
|
2645
|
+
label: Checkin Interval
|
|
2646
|
+
description: A duration string for how often agents should report a heartbeat.
|
|
2647
|
+
garbageCollectionInterval:
|
|
2648
|
+
label: Garbage Collection Interval
|
|
2649
|
+
description: The amount of time that agents will wait before they clean up old Helm releases. A non-existent value or 0 will result in an interval of 15 minutes.
|
|
2650
|
+
clusterEnqueueDelay:
|
|
2651
|
+
label: Cluster Enqueue Delay
|
|
2652
|
+
description: "Interval to sync a repo with bundle deployments states."
|
|
2653
|
+
proxy:
|
|
2654
|
+
label: Proxy
|
|
2655
|
+
description: Fleet http[s] proxy server.
|
|
2656
|
+
placeholder: http://<username>@<password>:<url>:<port>
|
|
2657
|
+
noProxy:
|
|
2658
|
+
label: No Proxy
|
|
2659
|
+
description: Comma separated list of domains or ip addresses that will not use the proxy.
|
|
2660
|
+
gitClientTimeout:
|
|
2661
|
+
label: Git Client Timeout
|
|
2662
|
+
description: "The amount of time to wait for a response from the server before canceling the request. Used to retrieve the latest commit of configured git repositories. A non-existent value or 0 will result in a timeout of 30 seconds."
|
|
2663
|
+
nodeSelector:
|
|
2664
|
+
label: Node Selector
|
|
2665
|
+
description: "Node labels for pod assignment."
|
|
2666
|
+
add: Add Selector
|
|
2667
|
+
tolerations:
|
|
2668
|
+
label: Tolerations
|
|
2669
|
+
description: "List of node taints to tolerate (requires Kubernetes >= 1.6)"
|
|
2670
|
+
add: Add Toleration
|
|
2671
|
+
priorityClassName:
|
|
2672
|
+
label: Priority Class Name
|
|
2673
|
+
description: "PriorityClassName assigned to deployment."
|
|
2674
|
+
metrics:
|
|
2675
|
+
label: Metrics
|
|
2676
|
+
description: 'Enable metrics'
|
|
2677
|
+
debug:
|
|
2678
|
+
label: Debug
|
|
2679
|
+
description: 'Enable debug mode'
|
|
2680
|
+
controllerAnnotations:
|
|
2681
|
+
label: Controller
|
|
2682
|
+
description: ""
|
|
2683
|
+
add: Add Annotation
|
|
2684
|
+
gitjobAnnotations:
|
|
2685
|
+
label: Gitjob
|
|
2686
|
+
description: ""
|
|
2687
|
+
add: Add Annotation
|
|
2688
|
+
helmopsAnnotations:
|
|
2689
|
+
label: Helmops
|
|
2690
|
+
description: ""
|
|
2691
|
+
add: Add Annotation
|
|
2692
|
+
controllerReplicas:
|
|
2693
|
+
label: Controller
|
|
2694
|
+
description: ""
|
|
2695
|
+
gitjobReplicas:
|
|
2696
|
+
label: Gitjob
|
|
2697
|
+
description: ""
|
|
2698
|
+
helmopsReplicas:
|
|
2699
|
+
label: Helmops
|
|
2700
|
+
description: ""
|
|
2701
|
+
agentReplicas:
|
|
2702
|
+
label: Agent
|
|
2703
|
+
description: ""
|
|
2704
|
+
general:
|
|
2705
|
+
label: General
|
|
2706
|
+
description: 'General settings.'
|
|
2707
|
+
agent:
|
|
2708
|
+
label: Agent
|
|
2709
|
+
description: 'Agent deployment settings.'
|
|
2710
|
+
replicas:
|
|
2711
|
+
label: Replicas
|
|
2712
|
+
description: 'Number of replicas of Fleet pods.'
|
|
2713
|
+
annotations:
|
|
2714
|
+
label: Extra Annotations
|
|
2715
|
+
description: 'Extra annotations passed to the Fleet pods.'
|
|
2716
|
+
developer:
|
|
2717
|
+
label: Developer
|
|
2718
|
+
description: 'Enable debug info from Fleet.'
|
|
2719
|
+
|
|
2720
|
+
tableHeaders:
|
|
2721
|
+
applicationType: Type
|
|
2722
|
+
applicationSource: Source
|
|
2723
|
+
applicationTarget: Target
|
|
2724
|
+
applicationClustersReady: Clusters Ready
|
|
2725
|
+
applicationResourcesSummary: Resources
|
|
2478
2726
|
dashboard:
|
|
2479
2727
|
pageTitle: Continuous Delivery Dashboard
|
|
2480
2728
|
menuLabel: Dashboard
|
|
@@ -2482,16 +2730,33 @@ fleet:
|
|
|
2482
2730
|
gitOpsScale: GitOps at scale.
|
|
2483
2731
|
learnMore: Learn More.
|
|
2484
2732
|
learnMoreLink: https://fleet.rancher.io
|
|
2485
|
-
|
|
2733
|
+
noApplications: "You don't have any App Bundles in your Workspaces"
|
|
2486
2734
|
getStarted: Get started
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
other { There are { count } other workspaces with no repositories}
|
|
2491
|
-
}
|
|
2735
|
+
workspace: Workspace
|
|
2736
|
+
expand: Expand
|
|
2737
|
+
collapse: Collapse
|
|
2492
2738
|
expandAll: Expand All
|
|
2493
2739
|
collapseAll: Collapse All
|
|
2740
|
+
state: State
|
|
2741
|
+
viewMode:
|
|
2742
|
+
table: Show table
|
|
2743
|
+
cards: Show cards
|
|
2744
|
+
cards:
|
|
2745
|
+
filters:
|
|
2746
|
+
gitRepos: Show Git Repos
|
|
2747
|
+
helmOps: Show Helm Ops
|
|
2748
|
+
resourceSummary:
|
|
2749
|
+
part1: in
|
|
2750
|
+
part2: |-
|
|
2751
|
+
{count, plural,
|
|
2752
|
+
=1 { cluster }
|
|
2753
|
+
other { clusters }
|
|
2754
|
+
}
|
|
2755
|
+
noClusters: Not targeting any clusters
|
|
2756
|
+
resources: Resources
|
|
2757
|
+
source: Source
|
|
2494
2758
|
cluster:
|
|
2759
|
+
label: Cluster
|
|
2495
2760
|
summary: Resource Summary
|
|
2496
2761
|
nonReady: Non-Ready Bundles
|
|
2497
2762
|
labels: Labels
|
|
@@ -2517,7 +2782,9 @@ fleet:
|
|
|
2517
2782
|
other {# bundles are hidden as they belong to Harvester clusters that can not be used with Continuous Delivery}
|
|
2518
2783
|
}
|
|
2519
2784
|
fleetSummary:
|
|
2520
|
-
|
|
2785
|
+
noClusters:
|
|
2786
|
+
gitRepo: This GitRepo is not targeting any clusters
|
|
2787
|
+
helmOp: This HelmOp is not targeting any clusters
|
|
2521
2788
|
state:
|
|
2522
2789
|
ready: 'Ready'
|
|
2523
2790
|
info: 'Transitioning'
|
|
@@ -2526,8 +2793,49 @@ fleet:
|
|
|
2526
2793
|
unknown: 'Unknown'
|
|
2527
2794
|
notReady: Not Ready
|
|
2528
2795
|
waitApplied: Wait Applied
|
|
2796
|
+
clusterTargets:
|
|
2797
|
+
title: Select by name
|
|
2798
|
+
label: Clusters
|
|
2799
|
+
advancedConfigs: Advanced target configurations are defined, check the YAML file for further details.
|
|
2800
|
+
placeholders:
|
|
2801
|
+
selectMultiple: Select Multiple Clusters
|
|
2802
|
+
rules:
|
|
2803
|
+
title: Select by labels
|
|
2804
|
+
addSelector: Add cluster selector
|
|
2805
|
+
labelKey: Label
|
|
2806
|
+
matching:
|
|
2807
|
+
title: Selected clusters
|
|
2808
|
+
placeholder: Select clusters by name or labels
|
|
2809
|
+
empty: No clusters in the workspace
|
|
2810
|
+
plusMore: |-
|
|
2811
|
+
{n, plural,
|
|
2812
|
+
=1 {+ 1 more cluster}
|
|
2813
|
+
other {+ {n, number} more clusters}
|
|
2814
|
+
}
|
|
2815
|
+
application:
|
|
2816
|
+
pageTitle: App Bundles
|
|
2817
|
+
menuLabel: App Bundles
|
|
2818
|
+
intro:
|
|
2819
|
+
add: Create App Bundle
|
|
2820
|
+
empty: No App Bundles have been created
|
|
2821
|
+
actions:
|
|
2822
|
+
create: Create App Bundle
|
|
2823
|
+
groupBy: Group By Type
|
|
2824
|
+
subTypes:
|
|
2825
|
+
fleet.cattle.io.gitrepo:
|
|
2826
|
+
description: GitRepo describes a git repository that is watched by Fleet. The resource contains the necessary information to deploy the repo, or parts of it, to target clusters.
|
|
2827
|
+
fleet.cattle.io.helmop:
|
|
2828
|
+
description: HelmOp is a simplified way of creating bundles by directly pointing to a Helm repository or to an OCI registry, without needing to set up a git repository.
|
|
2829
|
+
warningTooltip:
|
|
2830
|
+
clusterGroup: There are no clusters in this Cluster Group
|
|
2831
|
+
cluster: There are no clusters available
|
|
2832
|
+
noPermissions: You have no permissions to create {label}
|
|
2529
2833
|
gitRepo:
|
|
2834
|
+
intro:
|
|
2835
|
+
add: Create Git Repo
|
|
2836
|
+
empty: No Git Repos have been added
|
|
2530
2837
|
actions:
|
|
2838
|
+
add: Create Git Repo
|
|
2531
2839
|
forceUpdate:
|
|
2532
2840
|
label: Force Update
|
|
2533
2841
|
promptTitle: Force Update
|
|
@@ -2558,18 +2866,31 @@ fleet:
|
|
|
2558
2866
|
label: Certificates
|
|
2559
2867
|
placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
|
|
2560
2868
|
paths:
|
|
2561
|
-
|
|
2562
|
-
|
|
2869
|
+
title: Custom paths
|
|
2870
|
+
description: Root directory
|
|
2871
|
+
index: Path {index}
|
|
2872
|
+
description1: The root folder is used by default. Fleet will scan recursively all folders and subfolders to find fleet.yaml files.
|
|
2873
|
+
description2: You can provide multiple different directories. You can also add subpaths to specify different YAML config file paths.
|
|
2874
|
+
ariaLabel: Enter paths for Git Repo
|
|
2563
2875
|
placeholder: e.g. /directory/in/your/repo
|
|
2564
2876
|
addLabel: Add Path
|
|
2565
|
-
|
|
2877
|
+
enableBundles: Manually specify config files subpaths (Fleet won't scan subfolders recursively to find fleet.yaml files)
|
|
2878
|
+
subpaths:
|
|
2879
|
+
addLabel: Add Subpath
|
|
2880
|
+
protipValue: 'Only necessary if the filename differs from "fleet.yaml"'
|
|
2881
|
+
props:
|
|
2882
|
+
base: Subpath
|
|
2883
|
+
options: Fleet YAML file (optional)
|
|
2884
|
+
placeholders:
|
|
2885
|
+
key: e.g. dev
|
|
2886
|
+
value: e.g. kustomize.yaml
|
|
2566
2887
|
repo:
|
|
2567
2888
|
title: Source
|
|
2568
2889
|
label: Repository URL
|
|
2569
2890
|
placeholder: e.g. https://github.com/rancher/fleet-examples.git or git@github.com:rancher/fleet-examples.git
|
|
2570
2891
|
addRepo: Add Repository
|
|
2571
2892
|
noRepos: No repositories have been added
|
|
2572
|
-
noWorkspaces: There are no workspaces.
|
|
2893
|
+
noWorkspaces: There are no workspaces.
|
|
2573
2894
|
resources:
|
|
2574
2895
|
label: 'Resource Handling'
|
|
2575
2896
|
keepResources: Always keep resources
|
|
@@ -2584,6 +2905,13 @@ fleet:
|
|
|
2584
2905
|
tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
|
|
2585
2906
|
webhookWarning: A webhook is configured in Rancher to reconcile Git updates and GitRepo resources. The Polling Interval will automatically be adjusted to 1 hour.
|
|
2586
2907
|
minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with GitRepos that contain a large amount of resources please consider increasing this value.
|
|
2908
|
+
ociStorageSecret:
|
|
2909
|
+
title: OCI Registry
|
|
2910
|
+
label: OCI Storage Secret
|
|
2911
|
+
tooltip: If 'None' is selected, Fleet will use the 'ocistorage' fallback secret when existing in current workspace.<br>Every changes of the selected OCI storage secret will not be applied until next Git Repo update.
|
|
2912
|
+
options:
|
|
2913
|
+
chooseExisting: "Choose a secret:"
|
|
2914
|
+
chooseCustom: "Choose a custom secret:"
|
|
2587
2915
|
add:
|
|
2588
2916
|
steps:
|
|
2589
2917
|
metadata:
|
|
@@ -2628,10 +2956,10 @@ fleet:
|
|
|
2628
2956
|
clusterGroup: Cluster Group
|
|
2629
2957
|
label: Deploy To
|
|
2630
2958
|
labelLocal: Deploy With
|
|
2959
|
+
additionalOptions: Additional settings
|
|
2631
2960
|
targetDisplay:
|
|
2632
2961
|
advanced: Advanced
|
|
2633
|
-
|
|
2634
|
-
clusterGroup: "Group"
|
|
2962
|
+
clusters: Clusters
|
|
2635
2963
|
all: All
|
|
2636
2964
|
none: None
|
|
2637
2965
|
local: Local
|
|
@@ -2640,13 +2968,159 @@ fleet:
|
|
|
2640
2968
|
verify: Require a valid certificate
|
|
2641
2969
|
specify: Specify additional certificates to be accepted
|
|
2642
2970
|
skip: Accept any certificate (insecure)
|
|
2643
|
-
warningTooltip:
|
|
2644
|
-
clusterGroup: There are no clusters in this Cluster Group
|
|
2645
|
-
cluster: There are no clusters available
|
|
2646
2971
|
workspace:
|
|
2647
2972
|
label: Workspace
|
|
2648
2973
|
addWorkspace: Create a workspace
|
|
2649
2974
|
helmRepoURLRegex: Helm Repos (URL Regex)
|
|
2975
|
+
helmOp:
|
|
2976
|
+
intro:
|
|
2977
|
+
add: Create Helm Op
|
|
2978
|
+
empty: No Helm Ops have been added
|
|
2979
|
+
actions:
|
|
2980
|
+
add: Create Helm Op
|
|
2981
|
+
enablePolling:
|
|
2982
|
+
label: Enable Polling
|
|
2983
|
+
disablePolling:
|
|
2984
|
+
label: Disable Polling
|
|
2985
|
+
forceUpdate:
|
|
2986
|
+
label: Force Update
|
|
2987
|
+
promptTitle: Force Update
|
|
2988
|
+
promptNames: 'You are attempting to update: '
|
|
2989
|
+
promptWarning: |-
|
|
2990
|
+
{
|
|
2991
|
+
count, plural,
|
|
2992
|
+
=1 {Force update could be a long running process.}
|
|
2993
|
+
other {Force update could be a long running process.}
|
|
2994
|
+
}
|
|
2995
|
+
unpause:
|
|
2996
|
+
label: Unpause
|
|
2997
|
+
pause:
|
|
2998
|
+
label: Pause
|
|
2999
|
+
add:
|
|
3000
|
+
steps:
|
|
3001
|
+
metadata:
|
|
3002
|
+
label: Metadata
|
|
3003
|
+
title: Specify the Helm Op name and labels/annotations
|
|
3004
|
+
subtext: 'Define metadata details'
|
|
3005
|
+
description: Helm Op basic info
|
|
3006
|
+
chart:
|
|
3007
|
+
label: Chart
|
|
3008
|
+
title: chart
|
|
3009
|
+
subtext: 'Define Helm Chart source details'
|
|
3010
|
+
description: chart
|
|
3011
|
+
values:
|
|
3012
|
+
label: Values
|
|
3013
|
+
title: values
|
|
3014
|
+
subtext: 'Define Helm Values for the chart'
|
|
3015
|
+
description: values
|
|
3016
|
+
targetInfo:
|
|
3017
|
+
label: Target details
|
|
3018
|
+
title: Specify which target to synchronise this repository to
|
|
3019
|
+
subtext: 'Define target details'
|
|
3020
|
+
description: You can configure which clusters will be used as the target of synchronisation with the resources in the repository.
|
|
3021
|
+
advanced:
|
|
3022
|
+
label: Advanced
|
|
3023
|
+
title: Specify advanced settings like authenticaion credentials and polling
|
|
3024
|
+
subtext: 'Define advanced settings'
|
|
3025
|
+
description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
|
|
3026
|
+
info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
|
|
3027
|
+
source:
|
|
3028
|
+
title: Source
|
|
3029
|
+
selectLabel: Type
|
|
3030
|
+
types:
|
|
3031
|
+
tarball: Tarball
|
|
3032
|
+
repo: Repository
|
|
3033
|
+
oci: OCI Registry
|
|
3034
|
+
tarball:
|
|
3035
|
+
label: Absolute URL
|
|
3036
|
+
placeholder: e.g. https://github.com/rancher/fleet/helm-chart/helm-chart-0.0.1.tgz
|
|
3037
|
+
repo:
|
|
3038
|
+
repo:
|
|
3039
|
+
label: URL
|
|
3040
|
+
placeholder: e.g. https://github.com/rancher/fleet/helm-chart
|
|
3041
|
+
chart:
|
|
3042
|
+
label: Chart
|
|
3043
|
+
placeholder: The path to the chart name in the repository
|
|
3044
|
+
oci:
|
|
3045
|
+
chart:
|
|
3046
|
+
label: OCI Registry URL
|
|
3047
|
+
placeholder: e.g. oci://ghcr.io/rancher/fleet/helm-chart or oci://ghcr.io/rancher/fleet/helm-chart:0.0.1
|
|
3048
|
+
version:
|
|
3049
|
+
label: Version
|
|
3050
|
+
placeholder: The Chart version
|
|
3051
|
+
release:
|
|
3052
|
+
title: Release
|
|
3053
|
+
label: Name
|
|
3054
|
+
placeholder: The Helm release name
|
|
3055
|
+
values:
|
|
3056
|
+
title: Values
|
|
3057
|
+
selectLabel: Values
|
|
3058
|
+
description: Configure Values used by Helm that help define the App.
|
|
3059
|
+
types:
|
|
3060
|
+
values: Values
|
|
3061
|
+
valuesFiles: Values Files
|
|
3062
|
+
valuesFrom: Values From
|
|
3063
|
+
yaml:
|
|
3064
|
+
options:
|
|
3065
|
+
edit: Edit YAML
|
|
3066
|
+
diff: Compare Changes
|
|
3067
|
+
values:
|
|
3068
|
+
selectLabel: YAML
|
|
3069
|
+
loading: Loading from chart
|
|
3070
|
+
valuesFiles:
|
|
3071
|
+
selectLabel: Files
|
|
3072
|
+
ariaLabel: Enter path for value File
|
|
3073
|
+
placeholder: ''
|
|
3074
|
+
addLabel: Add File path
|
|
3075
|
+
empty: empty
|
|
3076
|
+
valuesFrom:
|
|
3077
|
+
selectLabel: Values From
|
|
3078
|
+
options:
|
|
3079
|
+
configMapKeyRef: ConfigMap Key
|
|
3080
|
+
secretKeyRef: Secret Key
|
|
3081
|
+
loading: Loading ConfigMaps and Secrets
|
|
3082
|
+
serviceAccount:
|
|
3083
|
+
label: Service Account Name
|
|
3084
|
+
placeholder: "Optional: Use a service account in the target clusters"
|
|
3085
|
+
targetNamespace:
|
|
3086
|
+
label: Target Namespace
|
|
3087
|
+
placeholder: "Optional: Require all resources to be in this namespace"
|
|
3088
|
+
target:
|
|
3089
|
+
selectLabel: Target
|
|
3090
|
+
advanced: Advanced
|
|
3091
|
+
cluster: Cluster
|
|
3092
|
+
clusterGroup: Cluster Group
|
|
3093
|
+
label: Deploy To
|
|
3094
|
+
labelLocal: Deploy With
|
|
3095
|
+
additionalOptions: Additional Options
|
|
3096
|
+
targetDisplay:
|
|
3097
|
+
advanced: Advanced
|
|
3098
|
+
clusters: Clusters
|
|
3099
|
+
all: All
|
|
3100
|
+
none: None
|
|
3101
|
+
local: Local
|
|
3102
|
+
resources:
|
|
3103
|
+
label: 'Resource Handling'
|
|
3104
|
+
keepResources: Always keep resources
|
|
3105
|
+
keepResourcesTooltip: When enabled, resources will be kept when deleting a HelmOp or Bundle - only Helm release secrets will be deleted.
|
|
3106
|
+
correctDrift: Enable self-healing
|
|
3107
|
+
correctDriftTooltip: When enabled, Fleet will ensure that the cluster resources are kept in sync with the HelmOp. All resource changes made on the cluster will be lost.
|
|
3108
|
+
polling:
|
|
3109
|
+
label: Polling
|
|
3110
|
+
enable: Enable Polling
|
|
3111
|
+
pollingInterval:
|
|
3112
|
+
label: Polling Interval
|
|
3113
|
+
tooltip: Polling Interval is the time between a push to the Repository and Fleet's reaction to it.
|
|
3114
|
+
minimumValuewarning: The recommended minimum Polling Interval is 15 seconds. To avoid performance issues with HelmOps that contain a large amount of resources please consider increasing this value.
|
|
3115
|
+
tls:
|
|
3116
|
+
insecure: Accept any certificate (insecure)
|
|
3117
|
+
auth:
|
|
3118
|
+
title: Authentication
|
|
3119
|
+
label: Authentication
|
|
3120
|
+
helm: Helm Authentication
|
|
3121
|
+
caBundle:
|
|
3122
|
+
label: Certificates
|
|
3123
|
+
placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
|
|
2650
3124
|
clusterGroup:
|
|
2651
3125
|
selector:
|
|
2652
3126
|
label: Cluster Selectors
|
|
@@ -2658,8 +3132,6 @@ fleet:
|
|
|
2658
3132
|
other {Matches {matched, number} of {total, number} existing clusters, including "{sample}"}
|
|
2659
3133
|
}
|
|
2660
3134
|
fdc:
|
|
2661
|
-
loadingChart: Loading chart data...
|
|
2662
|
-
renderingChart: Rendering chart...
|
|
2663
3135
|
id: ID
|
|
2664
3136
|
type: Type
|
|
2665
3137
|
state: State
|
|
@@ -2670,6 +3142,7 @@ fleet:
|
|
|
2670
3142
|
workspaces:
|
|
2671
3143
|
tabs:
|
|
2672
3144
|
restrictions: Allowed Target Namespaces
|
|
3145
|
+
ociRegistry: Default OCI Registry
|
|
2673
3146
|
timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
|
|
2674
3147
|
remove:
|
|
2675
3148
|
warning: "Deleting a Workspace also deletes all resources in the Workspace. This includes GitRepos but also Clusters.<br><br>Deleted Clusters will be removed from {vendor}, and if {vendor} manages the life-cycle of the Cluster it's underlying infrastructure will also be deleted."
|
|
@@ -3149,6 +3622,9 @@ istio:
|
|
|
3149
3622
|
tracing: Enable Jaeger Tracing (limited)
|
|
3150
3623
|
v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
|
|
3151
3624
|
|
|
3625
|
+
itemCard:
|
|
3626
|
+
ariaLabel:
|
|
3627
|
+
clickable: Click on card for {cardTitle}
|
|
3152
3628
|
jwt:
|
|
3153
3629
|
title: JWT Authentication
|
|
3154
3630
|
actions:
|
|
@@ -3170,6 +3646,7 @@ labels:
|
|
|
3170
3646
|
addTag: Add Tag
|
|
3171
3647
|
addTaint: Add Taint
|
|
3172
3648
|
addAnnotation: Add Annotation
|
|
3649
|
+
protectedWarning: This key is protected and will be discarded
|
|
3173
3650
|
labels:
|
|
3174
3651
|
title: Labels
|
|
3175
3652
|
description: Key/value pairs that are attached to objects which specify identifying attributes.
|
|
@@ -3208,8 +3685,10 @@ landing:
|
|
|
3208
3685
|
other {cores}}
|
|
3209
3686
|
cpuUsed: CPU Used
|
|
3210
3687
|
memoryUsed: Memory Used
|
|
3211
|
-
|
|
3212
|
-
|
|
3688
|
+
whatsNew:
|
|
3689
|
+
title: Welcome to Rancher {version}
|
|
3690
|
+
message: Learn more about the improvements and new capabilities in this version
|
|
3691
|
+
link: Release Notes
|
|
3213
3692
|
learnMore: Learn More
|
|
3214
3693
|
support: Support
|
|
3215
3694
|
community:
|
|
@@ -3959,7 +4438,7 @@ namespaceFilter:
|
|
|
3959
4438
|
input: Filter namespace options
|
|
3960
4439
|
button:
|
|
3961
4440
|
clear: Remove applied namespace filters
|
|
3962
|
-
clearFilter: Clear namespace options filter
|
|
4441
|
+
clearFilter: Clear namespace options filter
|
|
3963
4442
|
|
|
3964
4443
|
namespaceList:
|
|
3965
4444
|
selectLabel: Namespace
|
|
@@ -4058,11 +4537,11 @@ networkpolicy:
|
|
|
4058
4537
|
invalidCidr: "Invalid CIDR"
|
|
4059
4538
|
invalidExceptionCidrs: "Invalid Exceptions: "
|
|
4060
4539
|
podSelector:
|
|
4061
|
-
label: Pod Selector
|
|
4540
|
+
label: Pod Label Selector
|
|
4062
4541
|
namespaceSelector:
|
|
4063
|
-
label: Namespace Selector
|
|
4542
|
+
label: Namespace Label Selector
|
|
4064
4543
|
namespaceAndPodSelector:
|
|
4065
|
-
label: Namespace/Pod Selector
|
|
4544
|
+
label: Namespace/Pod Label Selector
|
|
4066
4545
|
config:
|
|
4067
4546
|
label: Configuration
|
|
4068
4547
|
selectors:
|
|
@@ -4094,6 +4573,7 @@ networkpolicy:
|
|
|
4094
4573
|
=1 {1 of {totalNamespaces, number} namespaces: "{sampleNamespaces}"}
|
|
4095
4574
|
other {{matchedNamespaces, number} of {totalNamespaces, number} existing namespaces, including "{sampleNamespaces}"}
|
|
4096
4575
|
}
|
|
4576
|
+
|
|
4097
4577
|
node:
|
|
4098
4578
|
list:
|
|
4099
4579
|
pool: Pool
|
|
@@ -4150,6 +4630,17 @@ node:
|
|
|
4150
4630
|
scaleDown: Scale Down
|
|
4151
4631
|
forceDelete: Force Delete
|
|
4152
4632
|
|
|
4633
|
+
notificationCenter:
|
|
4634
|
+
caughtUp: "You're all caught up!"
|
|
4635
|
+
dates:
|
|
4636
|
+
today: Today
|
|
4637
|
+
yesterday: Yesterday
|
|
4638
|
+
markAllRead: Mark all as read
|
|
4639
|
+
markRead: Mark as read
|
|
4640
|
+
markUnread: Mark as unread
|
|
4641
|
+
title: Notifications
|
|
4642
|
+
ariaLabel: 'Notification {title}: Press enter to interact'
|
|
4643
|
+
|
|
4153
4644
|
persistentVolume:
|
|
4154
4645
|
pluginConfiguration:
|
|
4155
4646
|
label: Plugin configuration
|
|
@@ -4991,6 +5482,10 @@ promptRollback:
|
|
|
4991
5482
|
multipleWorkloadError: "Only one workload can be rolled back at a time."
|
|
4992
5483
|
singleRevisionBanner: There are no revisions to roll back to.
|
|
4993
5484
|
|
|
5485
|
+
promptRedeploy:
|
|
5486
|
+
title: Redeploy {type}?
|
|
5487
|
+
attemptingToRedeploy: "You are attempting to redeploy the {type} {names}<br><br>Redeploying will restart the selected workloads and may cause temporary downtime."
|
|
5488
|
+
|
|
4994
5489
|
promptRotateEncryptionKey:
|
|
4995
5490
|
title: Rotate Encryption Keys
|
|
4996
5491
|
description: The last backup {name} was performed on {date}
|
|
@@ -5039,6 +5534,7 @@ rbac:
|
|
|
5039
5534
|
resources: Resource
|
|
5040
5535
|
nonResourceUrls: Non-Resource URLs
|
|
5041
5536
|
apiGroups: API Groups
|
|
5537
|
+
psaWarning: Granting Project Roles the ability to amend PSA labels could lead to a weaker security posture and allow for privilege escalation. This is only recommended for advanced users who understand the risks involved.
|
|
5042
5538
|
subtypes:
|
|
5043
5539
|
GLOBAL:
|
|
5044
5540
|
createButton: Create Global Role
|
|
@@ -5116,8 +5612,8 @@ rbac:
|
|
|
5116
5612
|
label: Manage all Clusters
|
|
5117
5613
|
description: Allows the user to manage all clusters, including ones they are not a member of.
|
|
5118
5614
|
clusterscans-manage:
|
|
5119
|
-
label: Manage
|
|
5120
|
-
description: Allows the user to launch new and manage
|
|
5615
|
+
label: Manage Compliance Cluster Scans
|
|
5616
|
+
description: Allows the user to launch new and manage compliance cluster scans.
|
|
5121
5617
|
kontainerdrivers-manage:
|
|
5122
5618
|
label: Create new Cluster Drivers
|
|
5123
5619
|
description: Allows the user to create new cluster drivers and become the owner of them.
|
|
@@ -5245,6 +5741,8 @@ resourceTable:
|
|
|
5245
5741
|
notInANodePool: "Not in a Pool"
|
|
5246
5742
|
nodePool: "<span>Pool:</span> {name}"
|
|
5247
5743
|
node: "<span>Node:</span> {name}"
|
|
5744
|
+
autoRefresh:
|
|
5745
|
+
label: Auto Refresh
|
|
5248
5746
|
|
|
5249
5747
|
resourceTabs:
|
|
5250
5748
|
conditions:
|
|
@@ -5951,14 +6449,15 @@ tableHeaders:
|
|
|
5951
6449
|
endpoints: Endpoints
|
|
5952
6450
|
expires: Expires
|
|
5953
6451
|
firstSeen: First Seen
|
|
5954
|
-
fleetBundleType: Type
|
|
5955
6452
|
flow: Flow
|
|
5956
6453
|
fingerprint: Fingerprint
|
|
5957
6454
|
gitRepos: Git Repos
|
|
6455
|
+
helmOps: Helm Ops
|
|
5958
6456
|
groups: Groups
|
|
5959
6457
|
groupName: Group Name
|
|
5960
6458
|
groupRoleNames: Group Role Names
|
|
5961
6459
|
global-Default: Global-Default
|
|
6460
|
+
helmOpsReady: Helm Ops Ready
|
|
5962
6461
|
host: Host
|
|
5963
6462
|
hostIp: Host IP
|
|
5964
6463
|
holder: Holder
|
|
@@ -6052,7 +6551,7 @@ tableHeaders:
|
|
|
6052
6551
|
repo: Repo
|
|
6053
6552
|
repositories: Repositories
|
|
6054
6553
|
repoName: Repository Name
|
|
6055
|
-
reposReady: Repos Ready
|
|
6554
|
+
reposReady: Git Repos Ready
|
|
6056
6555
|
replicas: Replicas
|
|
6057
6556
|
reqRate: Req Rate
|
|
6058
6557
|
resource: Resource
|
|
@@ -6251,7 +6750,9 @@ validation:
|
|
|
6251
6750
|
both: Requires "Output" or "Cluster Output" to be selected.
|
|
6252
6751
|
global: Requires "Cluster Output" to be selected.
|
|
6253
6752
|
git:
|
|
6254
|
-
|
|
6753
|
+
url: URL must be a HTTP(s) or SSH url with no trailing spaces
|
|
6754
|
+
oci:
|
|
6755
|
+
url: URL must be an OCI url with no trailing spaces
|
|
6255
6756
|
output:
|
|
6256
6757
|
logdna:
|
|
6257
6758
|
apiKey: Required an "Api Key" to be set.
|
|
@@ -6342,6 +6843,7 @@ validation:
|
|
|
6342
6843
|
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.
|
|
6343
6844
|
trailingForwardSlash: Server URL should not have a trailing forward slash.
|
|
6344
6845
|
url: Server URL must be an URL.
|
|
6846
|
+
genericUrl: Field must be a valid URL
|
|
6345
6847
|
stringLength:
|
|
6346
6848
|
between: '"{key}" should be between {min} and {max} {max, plural, =1 {character} other {characters}}'
|
|
6347
6849
|
exactly: '"{key}" should be {count, plural, =1 {# character} other {# characters}}'
|
|
@@ -6632,6 +7134,9 @@ workload:
|
|
|
6632
7134
|
workload: Workload
|
|
6633
7135
|
pods: Pods by State
|
|
6634
7136
|
runs: Runs
|
|
7137
|
+
started: Started
|
|
7138
|
+
duration: Last Scheduled Time
|
|
7139
|
+
image: Image
|
|
6635
7140
|
error: Pod { name } Security Policy Violation { policy }
|
|
6636
7141
|
gaugeStates:
|
|
6637
7142
|
succeeded: Successful
|
|
@@ -6945,6 +7450,7 @@ model:
|
|
|
6945
7450
|
saml: SAML
|
|
6946
7451
|
oauth: OAuth
|
|
6947
7452
|
oidc: OIDC
|
|
7453
|
+
cognito: Amazon Cognito
|
|
6948
7454
|
name:
|
|
6949
7455
|
keycloak: Keycloak (SAML)
|
|
6950
7456
|
keycloakoidc: Keycloak (OIDC)
|
|
@@ -6966,6 +7472,8 @@ model:
|
|
|
6966
7472
|
googleoauth: Google
|
|
6967
7473
|
genericoidc: Generic OIDC
|
|
6968
7474
|
keycloakoidc: Keycloak
|
|
7475
|
+
cognito: Amazon Cognito
|
|
7476
|
+
|
|
6969
7477
|
|
|
6970
7478
|
cluster:
|
|
6971
7479
|
name: Cluster Name
|
|
@@ -7007,10 +7515,10 @@ typeDescription:
|
|
|
7007
7515
|
jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
|
|
7008
7516
|
branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
|
|
7009
7517
|
chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
|
|
7518
|
+
compliance.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.
|
|
7519
|
+
compliance.cattle.io.clusterscanprofile: A profile is the configuration for the compliance scan, which is the benchmark versions to use and any specific tests to skip in that benchmark.
|
|
7520
|
+
compliance.cattle.io.clusterscan: A scan is created to trigger a compliance scan on the cluster based on the defined profile. A report is created after the scan is completed.
|
|
7521
|
+
compliance.cattle.io.clusterscanreport: A report is the result of a compliance scan of the cluster.
|
|
7014
7522
|
management.cattle.io.feature: Feature Flags allow certain {vendor} features to be toggled on and off. Features that are off by default should be considered experimental functionality.
|
|
7015
7523
|
cluster.x-k8s.io.machine: A Machine encapsulates the configuration of a Kubernetes Node. Use this view to see what happens after updating a cluster.
|
|
7016
7524
|
cluster.x-k8s.io.machinedeployment: A Machine Deployment orchestrates deployments via templates over a collection of Machine Sets (similar to a Deployment). Use this view to see what happens after updating a cluster.
|
|
@@ -7033,24 +7541,30 @@ typeDescription:
|
|
|
7033
7541
|
logging.banzaicloud.io.flow: A flow defines which logs to collect and filter as well as which output to send the logs. The flow is a namespaced resource, which means logs will only be collected from the namespace that the flow is deployed in.
|
|
7034
7542
|
logging.banzaicloud.io.output: An output defines which logging providers that logs can be sent to. The output needs to be in the same namespace as the flow that is using it.
|
|
7035
7543
|
group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
|
|
7544
|
+
management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
|
|
7036
7545
|
|
|
7037
7546
|
typeLabel:
|
|
7547
|
+
management.cattle.io.oidcclient: |-
|
|
7548
|
+
{count, plural,
|
|
7549
|
+
one { OIDC App }
|
|
7550
|
+
other { OIDC Apps }
|
|
7551
|
+
}
|
|
7038
7552
|
management.cattle.io.token: |-
|
|
7039
7553
|
{count, plural,
|
|
7040
7554
|
one { API Key }
|
|
7041
7555
|
other { API Keys }
|
|
7042
7556
|
}
|
|
7043
|
-
|
|
7557
|
+
compliance.cattle.io.clusterscan: |-
|
|
7044
7558
|
{count, plural,
|
|
7045
7559
|
one { Scan }
|
|
7046
7560
|
other { Scans }
|
|
7047
7561
|
}
|
|
7048
|
-
|
|
7562
|
+
compliance.cattle.io.clusterscanprofile: |-
|
|
7049
7563
|
{count, plural,
|
|
7050
7564
|
one { Profile }
|
|
7051
7565
|
other { Profiles }
|
|
7052
7566
|
}
|
|
7053
|
-
|
|
7567
|
+
compliance.cattle.io.clusterscanbenchmark: |-
|
|
7054
7568
|
{count, plural,
|
|
7055
7569
|
one { Benchmark Version }
|
|
7056
7570
|
other { Benchmark Versions }
|
|
@@ -7115,11 +7629,21 @@ typeLabel:
|
|
|
7115
7629
|
one { Cluster Group }
|
|
7116
7630
|
other {Cluster Groups }
|
|
7117
7631
|
}
|
|
7632
|
+
fleet.cattle.io.application: |-
|
|
7633
|
+
{count, plural,
|
|
7634
|
+
one { App Bundle }
|
|
7635
|
+
other { App Bundles }
|
|
7636
|
+
}
|
|
7118
7637
|
fleet.cattle.io.gitrepo: |-
|
|
7119
7638
|
{count, plural,
|
|
7120
7639
|
one { Git Repo }
|
|
7121
7640
|
other {Git Repos }
|
|
7122
7641
|
}
|
|
7642
|
+
fleet.cattle.io.helmop: |-
|
|
7643
|
+
{count, plural,
|
|
7644
|
+
one { Helm Op }
|
|
7645
|
+
other { Helm Ops }
|
|
7646
|
+
}
|
|
7123
7647
|
management.cattle.io.authconfig: |-
|
|
7124
7648
|
{count, plural,
|
|
7125
7649
|
one { Authentication Provider }
|
|
@@ -7587,6 +8111,62 @@ typeLabel:
|
|
|
7587
8111
|
other { Cluster Registration Tokens }
|
|
7588
8112
|
}
|
|
7589
8113
|
|
|
8114
|
+
oidcclient:
|
|
8115
|
+
a11y:
|
|
8116
|
+
copyText:
|
|
8117
|
+
issuerURL: Copy Issuer URL to clipboard
|
|
8118
|
+
discoveryDocument: Copy Discovery Document URL to clipboard
|
|
8119
|
+
jwksUri: Copy JWKS URI to clipboard
|
|
8120
|
+
clientId: Copy client Id to clipboard
|
|
8121
|
+
clientSecret: Copy client secret to clipboard
|
|
8122
|
+
usedNever: Never
|
|
8123
|
+
listViewCreate: Add Application
|
|
8124
|
+
oidcEndpoints: Provider Endpoints
|
|
8125
|
+
createClient: Create a new application
|
|
8126
|
+
clientData: Application
|
|
8127
|
+
clientId: Client ID
|
|
8128
|
+
clientSecrets: Client Secrets
|
|
8129
|
+
issuerURL: Issuer URL
|
|
8130
|
+
discoveryDocument: Discovery Document
|
|
8131
|
+
jwksUri: JWKS URI
|
|
8132
|
+
regenerate: Regenerate
|
|
8133
|
+
addNewSecret: Add new secret
|
|
8134
|
+
copySecretText: <b>Copy your secret now<b>. This is the only time it will be displayed. Be sure to save it in a safe place
|
|
8135
|
+
secretRegenerated: Secret regenerated!
|
|
8136
|
+
secretAdded: Secret Added!
|
|
8137
|
+
noClientId: No Client Id found for this application. If the problem persists please recreate the application
|
|
8138
|
+
errors:
|
|
8139
|
+
performSecretAction: The action on OIDC secrets tried to perform is invalid. Please check the the valid parameters for this function
|
|
8140
|
+
removeOidcClientModal:
|
|
8141
|
+
title: OIDC Application deletion
|
|
8142
|
+
content: Are you sure you want to delete the following OIDC applications?
|
|
8143
|
+
action: Delete Application
|
|
8144
|
+
regenModal:
|
|
8145
|
+
title: OIDC Application Secret regeneration
|
|
8146
|
+
content: Are you sure you want to regenerate this OIDC application secret? The old secret will stop working immediately
|
|
8147
|
+
action: Regenerate Secret
|
|
8148
|
+
deleteModal:
|
|
8149
|
+
title: OIDC Application Secret deletion
|
|
8150
|
+
content: Are you sure you want to delete this OIDC application secret? It will stop working immediately
|
|
8151
|
+
action: Delete Secret
|
|
8152
|
+
appName:
|
|
8153
|
+
placeholder: App name shown during the authorization flow
|
|
8154
|
+
appDescription:
|
|
8155
|
+
placeholder: A brief description of your application
|
|
8156
|
+
redirectURIs:
|
|
8157
|
+
label: Authorization Callback URLs
|
|
8158
|
+
addLabel: Add Callback URL
|
|
8159
|
+
valueLabel: Redirect URIs
|
|
8160
|
+
placeholder: The allowed redirect URL for your application after a user authenticates. HTTPS is required. You may add multiple URLs
|
|
8161
|
+
refreshTokenExpirationSeconds:
|
|
8162
|
+
detailLabel: Refresh Token Expiration (seconds)
|
|
8163
|
+
label: Refresh Token Expiration
|
|
8164
|
+
placeholder: Duration (in seconds) a refresh token can be used to obtain new access/ID tokens without re-login
|
|
8165
|
+
tokenExpirationSeconds:
|
|
8166
|
+
detailLabel: Token Expiration (seconds)
|
|
8167
|
+
label: Token Expiration
|
|
8168
|
+
placeholder: Duration (in seconds) the token containing user authentication information is valid
|
|
8169
|
+
|
|
7590
8170
|
action:
|
|
7591
8171
|
ariaLabel:
|
|
7592
8172
|
hidePass: Hide {area}
|
|
@@ -7722,7 +8302,8 @@ advancedSettings:
|
|
|
7722
8302
|
'brand': Folder name for an alternative theme defined in '/assets/brand'
|
|
7723
8303
|
'hide-local-cluster': Hide the local cluster
|
|
7724
8304
|
'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."
|
|
7725
|
-
'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported K3s or RKE2 clusters.
|
|
8305
|
+
'k3s-based-upgrader-uninstall-concurrency': Defines the maximum number of clusters in which Rancher can concurrently uninstall the legacy `rancher-k3s-upgrader` or `rancher-rke2-upgrader` app from imported or node-driver K3s or RKE2 clusters.
|
|
8306
|
+
'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
|
|
7726
8307
|
'imported-cluster-version-management': Enables version management for imported RKE2/K3s clusters, and the local cluster if it is an RKE2/K3s cluster. The per-cluster version management setting overrides this global setting at the cluster level. For existing clusters where the cluster-level version management is set to 'system-default', changing this flag will trigger a redeployment of the cluster agent during the next reconciliation (by default every 5 minutes, or as soon as the cluster is edited, whichever comes first).
|
|
7727
8308
|
warnings:
|
|
7728
8309
|
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
@@ -7748,7 +8329,7 @@ advancedSettings:
|
|
|
7748
8329
|
strict: 'Strict'
|
|
7749
8330
|
system-store: 'System Store'
|
|
7750
8331
|
provisioning:
|
|
7751
|
-
header: Cluster
|
|
8332
|
+
header: Cluster Provisioning
|
|
7752
8333
|
|
|
7753
8334
|
featureFlags:
|
|
7754
8335
|
label: Feature Flags
|
|
@@ -8046,20 +8627,6 @@ embedding:
|
|
|
8046
8627
|
retry: Retry
|
|
8047
8628
|
unavailable: Cluster Manager UI is not available
|
|
8048
8629
|
|
|
8049
|
-
legacy:
|
|
8050
|
-
alerts: Alerts
|
|
8051
|
-
apps: Apps
|
|
8052
|
-
catalogs: Catalogs
|
|
8053
|
-
configMaps: Config Maps
|
|
8054
|
-
configuration: Configuration
|
|
8055
|
-
notifiers: Notifiers
|
|
8056
|
-
monitoring: Monitoring
|
|
8057
|
-
secrets: Secrets
|
|
8058
|
-
|
|
8059
|
-
project:
|
|
8060
|
-
label: Project
|
|
8061
|
-
select: "Use the Project/Namespace filter at the top of the page to select a Project in order to see legacy Project features."
|
|
8062
|
-
|
|
8063
8630
|
serverUpgrade:
|
|
8064
8631
|
title: "{vendor} Server Changed"
|
|
8065
8632
|
message: "The page reloaded because the version of {vendor} running on your server changed."
|
|
@@ -8188,7 +8755,7 @@ errors:
|
|
|
8188
8755
|
maxLimitExceded: is too big
|
|
8189
8756
|
messageAndDetail: '{message} ({detail})'
|
|
8190
8757
|
messageOrDetail: '{val}'
|
|
8191
|
-
failedInApi:
|
|
8758
|
+
failedInApi:
|
|
8192
8759
|
withName:
|
|
8193
8760
|
withCodeExplanation:
|
|
8194
8761
|
withMessageDetail: 'Validation failed in API: {name} {codeExplanation}: {messageDetail}'
|
|
@@ -8196,7 +8763,7 @@ errors:
|
|
|
8196
8763
|
withMessageDetail: 'Validation failed in API: {name} {messageDetail}'
|
|
8197
8764
|
withoutAnythingElse: 'Validation failed in API: {name} '
|
|
8198
8765
|
withoutName:
|
|
8199
|
-
withMessageDetail:
|
|
8766
|
+
withMessageDetail:
|
|
8200
8767
|
withCodeExplanation: 'Validation failed in API: {codeExplanation}: {messageDetail}'
|
|
8201
8768
|
withoutCodeExplanation: 'Validation failed in API: {messageDetail}'
|
|
8202
8769
|
withCode:
|
|
@@ -8206,6 +8773,77 @@ errors:
|
|
|
8206
8773
|
notFound:
|
|
8207
8774
|
withUrl: '{msg}: {url}'
|
|
8208
8775
|
withoutUrl: '{msg}'
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8776
|
+
component:
|
|
8777
|
+
drawer:
|
|
8778
|
+
chrome:
|
|
8779
|
+
ariaLabel:
|
|
8780
|
+
close: Close {target} drawer
|
|
8781
|
+
close: Close
|
|
8782
|
+
resourceDetailDrawer:
|
|
8783
|
+
title: "{resourceName} ({resourceType}) - Configuration"
|
|
8784
|
+
editConfig: Edit Config
|
|
8785
|
+
editYaml: Edit YAML
|
|
8786
|
+
ariaLabel:
|
|
8787
|
+
editConfig: Edit Config
|
|
8788
|
+
editYaml: Edit YAML
|
|
8789
|
+
yamlTab:
|
|
8790
|
+
title: YAML
|
|
8791
|
+
configTab:
|
|
8792
|
+
title: Config
|
|
8793
|
+
resource:
|
|
8794
|
+
detail:
|
|
8795
|
+
card:
|
|
8796
|
+
resourceUsage:
|
|
8797
|
+
used: Used
|
|
8798
|
+
amount: '{used} of {available}'
|
|
8799
|
+
cpu: CPU
|
|
8800
|
+
memory: Memory
|
|
8801
|
+
pods: Pods
|
|
8802
|
+
resourcesCard:
|
|
8803
|
+
title: Resources
|
|
8804
|
+
rows:
|
|
8805
|
+
services: Services
|
|
8806
|
+
ingresses: Ingresses
|
|
8807
|
+
referredToBy: Referred to by
|
|
8808
|
+
refersTo: Refers to
|
|
8809
|
+
podsCard:
|
|
8810
|
+
title: Pods
|
|
8811
|
+
ariaResourceName: pods
|
|
8812
|
+
insightsCard:
|
|
8813
|
+
title: Insights
|
|
8814
|
+
rows:
|
|
8815
|
+
conditions: Conditions
|
|
8816
|
+
events: Events
|
|
8817
|
+
scaler:
|
|
8818
|
+
ariaLabel:
|
|
8819
|
+
increase: Increase {resourceName}
|
|
8820
|
+
decrease: Decrease {resourceName}
|
|
8821
|
+
titleBar:
|
|
8822
|
+
showConfiguration: Show Configuration
|
|
8823
|
+
ariaLabel:
|
|
8824
|
+
actionMenu: More actions - { resource }
|
|
8825
|
+
showConfiguration: Show the entire configuration of { resource }
|
|
8826
|
+
metadata:
|
|
8827
|
+
labelsAndAnnotations: Labels and Annotations
|
|
8828
|
+
identifyingInformation:
|
|
8829
|
+
createdBy: Created by
|
|
8830
|
+
namespace: Namespace
|
|
8831
|
+
project: Project
|
|
8832
|
+
age: Age
|
|
8833
|
+
image: Image
|
|
8834
|
+
ready: Ready
|
|
8835
|
+
up-to-date: Up-to-date
|
|
8836
|
+
available: Available
|
|
8837
|
+
serviceAccount: Service Account
|
|
8838
|
+
type: Type
|
|
8839
|
+
certificate: Certificate
|
|
8840
|
+
issuer: Issuer
|
|
8841
|
+
expires: Expires
|
|
8842
|
+
workspace: Workspace
|
|
8843
|
+
annotations:
|
|
8844
|
+
title: Annotations
|
|
8845
|
+
labels:
|
|
8846
|
+
title: Labels
|
|
8847
|
+
keyValue:
|
|
8848
|
+
noRows: There are no {propertyName} configured on this resource.
|
|
8849
|
+
showConfiguration: Show Configuration
|