@rancher/shell 3.0.12-rc.3 → 3.0.12-rc.5
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/styles/global/_button.scss +1 -1
- package/assets/styles/global/_layout.scss +4 -0
- package/assets/translations/en-us.yaml +183 -51
- package/assets/translations/zh-hans.yaml +1 -7
- package/chart/monitoring/ClusterSelector.vue +0 -21
- package/chart/monitoring/prometheus/index.vue +6 -3
- package/components/ActionDropdownShell.vue +5 -3
- package/components/ButtonGroup.vue +26 -1
- package/components/CruResource.vue +212 -16
- package/components/ExplorerMembers.vue +8 -4
- package/components/ExplorerProjectsNamespaces.vue +10 -6
- package/components/GrowlManager.vue +4 -0
- package/components/MgmtNodeList.vue +184 -0
- package/components/PromptRestore.vue +93 -32
- package/components/Questions/index.vue +1 -0
- package/components/Resource/Detail/Card/StateCard/__tests__/composables.test.ts +90 -1
- package/components/Resource/Detail/Card/StateCard/composables.ts +57 -87
- package/components/Resource/Detail/Card/StatusCard/__tests__/StatusCard.test.ts +61 -0
- package/components/Resource/Detail/Card/StatusCard/index.vue +61 -15
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +2 -0
- package/components/Resource/Detail/Metadata/KeyValue.vue +5 -2
- package/components/Resource/Detail/Metadata/KeyValueRow.vue +2 -6
- package/components/ResourceDetail/index.vue +1 -1
- package/components/ResourceList/Masthead.vue +7 -1
- package/components/ResourceList/index.vue +82 -1
- package/components/ResourceTable.vue +1 -0
- package/components/RichTranslation.vue +5 -2
- package/components/Setting.vue +1 -0
- package/components/SortableTable/index.vue +4 -3
- package/components/SubtleLink.vue +31 -6
- package/components/Tabbed/Tab.vue +29 -3
- package/components/Tabbed/index.vue +25 -3
- package/components/TableOfContents/TableOfContents.vue +109 -0
- package/components/TableOfContents/composables.ts +258 -0
- package/components/Window/ContainerShell.vue +21 -11
- package/components/Window/__tests__/ContainerShell.test.ts +107 -37
- package/components/Wizard.vue +23 -5
- package/components/__tests__/ButtonGroup.test.ts +56 -0
- package/components/__tests__/PromptRestore.test.ts +169 -19
- package/components/fleet/AppCoChartGrid.vue +401 -0
- package/components/fleet/AppCoEmptyState.vue +127 -0
- package/components/fleet/AppCoPageHeader.vue +119 -0
- package/components/fleet/AppCoVersionSelect.vue +70 -0
- package/components/fleet/FleetClusterTargets/ClusterSelectionFields.vue +217 -0
- package/components/fleet/FleetClusterTargets/TargetsList.vue +123 -35
- package/components/fleet/FleetClusterTargets/index.vue +189 -146
- package/components/fleet/FleetIntro.vue +7 -3
- package/components/fleet/FleetNoWorkspaces.vue +7 -3
- package/components/fleet/FleetSecretSelector.vue +5 -3
- package/components/fleet/FleetValuesFrom.vue +8 -2
- package/components/fleet/GitRepoAdvancedTab.vue +1 -0
- package/components/fleet/GitRepoMetadataTab.vue +5 -0
- package/components/fleet/GitRepoTargetTab.vue +0 -2
- package/components/fleet/HelmOpAdvancedTab.vue +19 -53
- package/components/fleet/HelmOpAppCoConfigTab.vue +597 -0
- package/components/fleet/HelmOpAppCoResourcesSection.vue +162 -0
- package/components/fleet/HelmOpMetadataTab.vue +5 -0
- package/components/fleet/HelmOpResourcesSection.vue +82 -0
- package/components/fleet/HelmOpTargetOptionsSection.vue +89 -0
- package/components/fleet/HelmOpTargetTab.vue +64 -60
- package/components/fleet/HelmOpValuesTab.vue +129 -105
- package/components/fleet/__tests__/AppCoEmptyState.test.ts +71 -0
- package/components/fleet/__tests__/AppCoVersionSelect.test.ts +36 -0
- package/components/fleet/__tests__/ClusterSelectionFields.test.ts +62 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +253 -0
- package/components/fleet/__tests__/FleetSecretSelector.test.ts +16 -0
- package/components/fleet/__tests__/FleetValuesFrom.test.ts +44 -0
- package/components/fleet/__tests__/HelmOpAppCoConfigTab.test.ts +59 -0
- package/components/fleet/__tests__/HelmOpAppCoResourcesSection.test.ts +62 -0
- package/components/fleet/__tests__/HelmOpResourcesSection.test.ts +43 -0
- package/components/fleet/__tests__/HelmOpTargetOptionsSection.test.ts +34 -0
- package/components/fleet/__tests__/HelmOpValuesTab.test.ts +39 -0
- package/components/fleet/__tests__/__snapshots__/AppCoEmptyState.test.ts.snap +97 -0
- package/components/fleet/__tests__/__snapshots__/AppCoVersionSelect.test.ts.snap +30 -0
- package/components/fleet/__tests__/__snapshots__/ClusterSelectionFields.test.ts.snap +209 -0
- package/components/fleet/__tests__/__snapshots__/HelmOpTargetOptionsSection.test.ts.snap +140 -0
- package/components/fleet/dashboard/Empty.vue +8 -4
- package/components/fleet/dashboard/ResourceCard.vue +28 -0
- package/components/fleet/dashboard/ResourceDetails.vue +28 -0
- package/components/fleet/dashboard/__tests__/ResourceCard.test.ts +87 -0
- package/components/form/ArrayList.vue +61 -4
- package/components/form/FileSelector.vue +39 -1
- package/components/form/KeyValue.vue +23 -2
- package/components/form/LabeledSelect.vue +39 -1
- package/components/form/Labels.vue +22 -3
- package/components/form/NameNsDescription.vue +13 -5
- package/components/form/PrivateRegistry.constants.ts +7 -0
- package/components/form/PrivateRegistry.vue +253 -18
- package/components/form/ResourceTabs/index.vue +1 -0
- package/components/form/SelectOrCreateAuthSecret.vue +140 -17
- package/components/form/__tests__/FileSelector.test.ts +23 -0
- package/components/form/__tests__/NameNsDescription.test.ts +75 -0
- package/components/form/__tests__/PrivateRegistry.test.ts +463 -73
- package/components/form/__tests__/SelectOrCreateAuthSecret.test.ts +122 -0
- package/components/formatter/EtcdSnapshotName.vue +73 -0
- package/components/formatter/InternalExternalIP.vue +10 -4
- package/components/formatter/ServiceTargets.vue +26 -7
- package/components/formatter/__tests__/InternalExternalIP.test.ts +132 -0
- package/components/formatter/__tests__/ServiceTargets.test.ts +412 -0
- package/components/nav/Header.vue +12 -1
- package/components/nav/TopLevelMenu.vue +7 -2
- package/components/nav/__tests__/Header.test.ts +15 -0
- package/components/nav/__tests__/TopLevelMenu.test.ts +120 -2
- package/components/templates/default.vue +16 -4
- package/components/templates/home.vue +9 -4
- package/components/templates/plain.vue +9 -4
- package/composables/useHelmOpResources.test.ts +56 -0
- package/composables/useHelmOpResources.ts +32 -0
- package/composables/useStateColor.test.ts +325 -0
- package/composables/useStateColor.ts +128 -0
- package/config/features.js +1 -0
- package/config/home-links.js +1 -1
- package/config/labels-annotations.js +3 -0
- package/config/product/explorer.js +17 -4
- package/config/product/manager.js +8 -0
- package/config/router/index.js +16 -0
- package/config/router/navigation-guards/__tests__/authentication.test.ts +130 -0
- package/config/router/navigation-guards/authentication.js +10 -4
- package/config/router/routes.js +20 -6
- package/config/secret.ts +10 -0
- package/config/settings.ts +6 -4
- package/config/table-headers.js +3 -4
- package/config/types.js +16 -0
- package/core/plugin-products-base.ts +3 -3
- package/core/plugin-types.ts +83 -30
- package/core/plugin.ts +3 -0
- package/core/types-provisioning.ts +34 -1
- package/core/types.ts +15 -2
- package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +114 -0
- package/detail/__tests__/workload.test.ts +3 -152
- package/detail/catalog.cattle.io.clusterrepo.vue +1 -1
- package/detail/provisioning.cattle.io.cluster.vue +109 -7
- package/detail/workload/index.vue +12 -55
- package/dialog/RotateEncryptionKeyDialog.vue +33 -9
- package/dialog/__tests__/RotateEncryptionKeyDialog.test.ts +78 -0
- package/edit/__tests__/catalog.cattle.io.clusterrepo.test.ts +248 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +92 -0
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +206 -0
- package/edit/__tests__/management.cattle.io.setting.test.ts +2 -1
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/General.test.ts.snap +6 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/index.test.ts.snap +1 -0
- package/edit/auth/__tests__/azuread.test.ts +34 -9
- package/edit/auth/__tests__/github.test.ts +234 -0
- package/edit/auth/__tests__/oidc.test.ts +26 -6
- package/edit/auth/__tests__/saml.test.ts +196 -0
- package/edit/auth/azuread.vue +128 -95
- package/edit/auth/github.vue +72 -13
- package/edit/auth/ldap/__tests__/index.test.ts +206 -0
- package/edit/auth/ldap/config.vue +8 -0
- package/edit/auth/ldap/index.vue +75 -1
- package/edit/auth/oidc.vue +119 -73
- package/edit/auth/saml.vue +76 -12
- package/edit/catalog.cattle.io.clusterrepo.vue +140 -32
- package/edit/compliance.cattle.io.clusterscanprofile.vue +39 -41
- package/edit/fleet.cattle.io.gitrepo.vue +70 -16
- package/edit/fleet.cattle.io.helmop.vue +542 -141
- package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
- package/edit/{management.cattle.io.setting.vue → management.cattle.io.setting/index.vue} +32 -9
- package/edit/management.cattle.io.setting/system-default-registry-pull-secrets.vue +81 -0
- package/edit/management.cattle.io.user.vue +5 -2
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -12
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +18 -0
- package/edit/provisioning.cattle.io.cluster/rke2.vue +89 -11
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +11 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +0 -1
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +14 -55
- package/list/group.principal.vue +5 -4
- package/list/harvesterhci.io.management.cluster.vue +8 -9
- package/list/management.cattle.io.user.vue +12 -9
- package/list/provisioning.cattle.io.cluster.vue +16 -10
- package/mixins/__tests__/auth-config.test.ts +90 -0
- package/mixins/__tests__/chart.test.ts +94 -0
- package/mixins/__tests__/resource-fetch-api-pagination.test.ts +48 -0
- package/mixins/auth-config.js +7 -0
- package/mixins/chart.js +11 -2
- package/mixins/child-hook.js +12 -6
- package/mixins/create-edit-view/impl.js +5 -3
- package/mixins/resource-fetch-api-pagination.js +21 -1
- package/models/__tests__/catalog.cattle.io.clusterrepo.test.ts +57 -0
- package/models/__tests__/compliance.cattle.io.clusterscan.test.ts +144 -0
- package/models/__tests__/fleet-application.test.ts +175 -0
- package/models/__tests__/fleet.cattle.io.bundle.test.ts +169 -0
- package/models/__tests__/fleet.cattle.io.helmop.test.ts +84 -0
- package/models/__tests__/management.cattle.io.node.ts +22 -0
- package/models/__tests__/namespace.test.ts +36 -0
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +205 -0
- package/models/__tests__/secret.test.ts +68 -1
- package/models/__tests__/workload.test.ts +401 -26
- package/models/catalog.cattle.io.clusterrepo.js +28 -4
- package/models/compliance.cattle.io.clusterscan.js +39 -4
- package/models/fleet-application.js +4 -0
- package/models/fleet.cattle.io.helmop.js +20 -1
- package/models/management.cattle.io.cluster.js +39 -5
- package/models/management.cattle.io.node.js +44 -3
- package/models/namespace.js +1 -1
- package/models/pod.js +46 -3
- package/models/provisioning.cattle.io.cluster.js +64 -14
- package/models/rke.cattle.io.etcdsnapshot.js +17 -9
- package/models/secret.js +19 -0
- package/models/workload.js +120 -20
- package/models/workload.service.js +5 -0
- package/package.json +14 -13
- package/pages/about.vue +5 -6
- package/pages/auth/login.vue +0 -35
- package/pages/auth/setup.vue +11 -0
- package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +2 -2
- package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +10 -1
- package/pages/c/_cluster/apps/charts/__tests__/index.test.ts +93 -0
- package/pages/c/_cluster/apps/charts/__tests__/install.test.ts +485 -107
- package/pages/c/_cluster/apps/charts/chart.vue +2 -1
- package/pages/c/_cluster/apps/charts/index.vue +48 -10
- package/pages/c/_cluster/apps/charts/install.vue +236 -144
- package/pages/c/_cluster/auth/roles/index.vue +5 -4
- package/pages/c/_cluster/explorer/workload-dashboard/ByNamespaceSection.vue +31 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByStateSection.vue +138 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByTypeSection.vue +30 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadCard.vue +155 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadNamespaceCard.vue +142 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadTypeCard.vue +159 -0
- package/pages/c/_cluster/explorer/workload-dashboard/__tests__/composable.test.ts +561 -0
- package/pages/c/_cluster/explorer/workload-dashboard/composable.ts +440 -0
- package/pages/c/_cluster/explorer/workload-dashboard/index.vue +187 -0
- package/pages/c/_cluster/explorer/workload-dashboard/types.ts +80 -0
- package/pages/c/_cluster/fleet/application/create.vue +187 -136
- package/pages/c/_cluster/fleet/application/index.vue +5 -3
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailBody.vue +338 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailHeader.vue +121 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/chart.vue +369 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/charts.vue +248 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/credentials.vue +310 -0
- package/pages/c/_cluster/fleet/index.vue +2 -2
- package/pages/c/_cluster/uiplugins/__tests__/index.test.ts +96 -0
- package/pages/c/_cluster/uiplugins/index.vue +15 -0
- package/pages/fail-whale.vue +16 -11
- package/pages/home.vue +16 -46
- package/pkg/require-asset.lib.js +25 -0
- package/pkg/vue.config.js +7 -0
- package/plugins/clean-html.d.ts +9 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +177 -0
- package/plugins/dashboard-store/getters.js +0 -1
- package/plugins/dashboard-store/resource-class.js +114 -19
- package/plugins/steve/__tests__/actions.test.ts +212 -0
- package/plugins/steve/actions.js +96 -0
- package/plugins/steve/steve-pagination-utils.ts +1 -1
- package/rancher-components/Accordion/Accordion.vue +53 -9
- package/rancher-components/Form/Checkbox/Checkbox.vue +14 -0
- package/rancher-components/Form/Radio/RadioButton.vue +17 -1
- package/rancher-components/Form/Radio/RadioGroup.vue +10 -0
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +30 -0
- package/rancher-components/Form/TextArea/__tests__/TextAreaAutoGrow.test.ts +95 -0
- package/rancher-components/Pill/RcTag/RcTag.vue +3 -2
- package/rancher-components/RcButton/RcButton.test.ts +103 -0
- package/rancher-components/RcButton/RcButton.vue +94 -15
- package/rancher-components/RcButton/index.ts +1 -1
- package/rancher-components/RcButton/types.ts +3 -0
- package/rancher-components/RcDropdown/RcDropdownTrigger.vue +6 -1
- package/rancher-components/RcItemCard/RcItemCard.test.ts +18 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +2 -2
- package/rancher-components/RcSection/RcSection.vue +28 -3
- package/scripts/extension/helm/package/Dockerfile +1 -1
- package/scripts/test-plugins-build.sh +2 -1
- package/store/__tests__/features.test.ts +131 -0
- package/store/__tests__/growl.test.ts +374 -0
- package/store/__tests__/modal.test.ts +131 -0
- package/store/__tests__/notifications.test.ts +434 -0
- package/store/__tests__/slideInPanel.test.ts +88 -0
- package/store/__tests__/type-map.utils.test.ts +433 -0
- package/store/catalog.js +57 -0
- package/store/features.js +4 -0
- package/store/plugins.js +7 -4
- package/types/components/buttonGroup.ts +5 -0
- package/types/shell/index.d.ts +166 -70
- package/utils/__tests__/auth.test.ts +273 -0
- package/utils/__tests__/computed.test.ts +193 -0
- package/utils/__tests__/cspAdaptor.test.ts +163 -0
- package/utils/__tests__/dom.test.ts +81 -0
- package/utils/__tests__/duration.test.ts +37 -1
- package/utils/__tests__/dynamic-importer.test.ts +102 -0
- package/utils/__tests__/fleet-appco.test.ts +312 -0
- package/utils/__tests__/monitoring.test.ts +130 -0
- package/utils/__tests__/object.test.ts +22 -0
- package/utils/__tests__/operation-cr.test.ts +34 -0
- package/utils/__tests__/platform.test.ts +91 -0
- package/utils/__tests__/position.test.ts +237 -0
- package/utils/__tests__/provider.test.ts +51 -1
- package/utils/__tests__/queue.test.ts +232 -0
- package/utils/__tests__/release-notes.test.ts +221 -0
- package/utils/__tests__/router.test.js +254 -1
- package/utils/__tests__/select.test.ts +208 -0
- package/utils/__tests__/time.test.ts +265 -1
- package/utils/__tests__/title.test.ts +47 -0
- package/utils/__tests__/width.test.ts +53 -0
- package/utils/__tests__/window.test.ts +158 -0
- package/utils/__tests__/xccdf.test.ts +126 -6
- package/utils/crypto/__tests__/browserHashUtils.test.ts +98 -0
- package/utils/crypto/__tests__/index.test.ts +144 -0
- package/utils/duration.ts +104 -0
- package/utils/dynamic-content/__tests__/notification-handler.test.ts +196 -0
- package/utils/dynamic-content/info.ts +2 -1
- package/utils/error.js +13 -0
- package/utils/fleet-appco.ts +323 -0
- package/utils/object.js +22 -2
- package/utils/operation-cr.js +19 -0
- package/utils/provider.ts +12 -0
- package/utils/require-asset.ts +7 -0
- package/utils/validators/__tests__/container-images.test.ts +104 -0
- package/utils/validators/__tests__/flow-output.test.ts +91 -0
- package/utils/validators/__tests__/logging-outputs.test.ts +58 -0
- package/utils/validators/__tests__/monitoring-route.test.ts +119 -0
- package/utils/validators/__tests__/private-registry.test.ts +27 -15
- package/utils/validators/private-registry.ts +15 -4
- package/utils/xccdf.ts +39 -42
- package/vue.config.js +1 -1
- package/pages/support/index.vue +0 -264
- package/utils/duration.js +0 -43
|
@@ -40,6 +40,7 @@ generic:
|
|
|
40
40
|
descending: descending
|
|
41
41
|
disabled: Disabled
|
|
42
42
|
done: Done
|
|
43
|
+
download: Download
|
|
43
44
|
enabled: Enabled
|
|
44
45
|
error: Error
|
|
45
46
|
here: here
|
|
@@ -54,6 +55,7 @@ generic:
|
|
|
54
55
|
labels: Labels
|
|
55
56
|
labelsAndAnnotations: Labels & Annotations
|
|
56
57
|
podSecurityAdmission: Pod Security Admission
|
|
58
|
+
learnMoreAbout: 'Learn more about '
|
|
57
59
|
links: Links
|
|
58
60
|
loading: Loading…
|
|
59
61
|
members: Members
|
|
@@ -70,6 +72,7 @@ generic:
|
|
|
70
72
|
warning: Warning
|
|
71
73
|
error: Error
|
|
72
74
|
ok: OK
|
|
75
|
+
or: or
|
|
73
76
|
other: |-
|
|
74
77
|
{count, plural,
|
|
75
78
|
one {other}
|
|
@@ -736,7 +739,7 @@ authConfig:
|
|
|
736
739
|
label: Auth Endpoint
|
|
737
740
|
endSessionEndpoint:
|
|
738
741
|
title: End Session Endpoint
|
|
739
|
-
tooltip:
|
|
742
|
+
tooltip: "{name} URL used for logging a user out of their session (e.g. https://login.microsoftonline.com/{tenantId}/oauth2/v2.0/logout)"
|
|
740
743
|
groupMembershipFilter:
|
|
741
744
|
label: Group Membership Filter
|
|
742
745
|
enable: Limit users by group membership
|
|
@@ -797,6 +800,7 @@ authConfig:
|
|
|
797
800
|
label: Scopes
|
|
798
801
|
placeholder: openid
|
|
799
802
|
protip: The <code>openid</code>, <code>profile</code>, and <code>email</code> scopes are required and cannot be removed.
|
|
803
|
+
missingRequired: "The required {count, plural, =1 {scope is} other {scopes are}} missing: {scopes}"
|
|
800
804
|
pkce:
|
|
801
805
|
label: Enable PKCE (S256)
|
|
802
806
|
tooltip: Enable Proof Key for Code Exchange (PKCE) using the S256 code challenge method. When enabled, this client must use PKCE with S256 for authorization requests.
|
|
@@ -1004,6 +1008,7 @@ asyncButton:
|
|
|
1004
1008
|
action: Snapshot Now
|
|
1005
1009
|
waiting: Snapshot Initiated…
|
|
1006
1010
|
success: Snapshot Creating
|
|
1011
|
+
day2OpsNotEnabled: Day 2 Operations are not enabled for this cluster
|
|
1007
1012
|
timing:
|
|
1008
1013
|
action: Generate Response Times
|
|
1009
1014
|
waiting: Generating…
|
|
@@ -1135,9 +1140,15 @@ catalog:
|
|
|
1135
1140
|
label: Container Registry
|
|
1136
1141
|
tooltip: Container images are pulled from the Cluster Container Registry or, failing that, the System Container Registry Setting. To change this default behavior enter or update the registry here
|
|
1137
1142
|
custom:
|
|
1138
|
-
checkBoxLabel:
|
|
1143
|
+
checkBoxLabel: Override the Default Container Registry
|
|
1139
1144
|
inputLabel: Container Registry
|
|
1140
1145
|
placeholder: Registry domain and ports, ex. registry.io:5000
|
|
1146
|
+
pullSecret:
|
|
1147
|
+
skipOption: Do not use image pull secrets
|
|
1148
|
+
defaultLabel: 'Use default pull secret ({name})'
|
|
1149
|
+
defaultLabelGeneric: Use default pull secrets
|
|
1150
|
+
existingValuesBanner: '{secrets} are configured as image pull secrets in the chart values. To modify them, edit the values YAML directly.'
|
|
1151
|
+
defaultSecretsBanner: '{secrets} are configured as default pull secrets. Select or create an image pull secret here to override the default.'
|
|
1141
1152
|
header:
|
|
1142
1153
|
charts: Charts
|
|
1143
1154
|
info:
|
|
@@ -1225,6 +1236,7 @@ catalog:
|
|
|
1225
1236
|
lastUpdatedDesc: Last updated
|
|
1226
1237
|
alphaAscending: Chart name, A → Z
|
|
1227
1238
|
alphaDescending: Chart name, Z → A
|
|
1239
|
+
loadingMore: Loading more…
|
|
1228
1240
|
refreshButton:
|
|
1229
1241
|
label: Refresh all repositories
|
|
1230
1242
|
findSimilar:
|
|
@@ -1377,6 +1389,8 @@ catalog:
|
|
|
1377
1389
|
version: Version
|
|
1378
1390
|
versions:
|
|
1379
1391
|
current: '{ver} (Current)'
|
|
1392
|
+
current_linux: '{ver} (Current, Linux-only)'
|
|
1393
|
+
current_windows: '{ver} (Current, Windows-only)'
|
|
1380
1394
|
linux: '{ver} (Linux-only)'
|
|
1381
1395
|
windows: '{ver} (Windows-only)'
|
|
1382
1396
|
delete:
|
|
@@ -1426,7 +1440,7 @@ catalog:
|
|
|
1426
1440
|
oci:
|
|
1427
1441
|
urlLabel: OCI Repository Host URL
|
|
1428
1442
|
placeholder: 'e.g. oci://<registry-host>/<namespace>/<chart-name>:<tag>'
|
|
1429
|
-
warning: OCI URLs must ONLY target helm
|
|
1443
|
+
warning: OCI URLs must ONLY target helm charts.
|
|
1430
1444
|
info: For large repositories containing many charts consider targeting a specific namespace or chart to improve performance, for example with oci://<registry-host>/<namespace> or oci://<registry-host>/<namespace>/<chart-name>.
|
|
1431
1445
|
skipTlsVerifications: Skip TLS Verifications
|
|
1432
1446
|
insecurePlainHttp: Insecure Plain Http
|
|
@@ -1443,7 +1457,11 @@ catalog:
|
|
|
1443
1457
|
placeholder: 'default: 5'
|
|
1444
1458
|
refreshInterval:
|
|
1445
1459
|
label: Refresh Interval
|
|
1446
|
-
placeholder: 'default: {
|
|
1460
|
+
placeholder: 'default: {value}{unit}'
|
|
1461
|
+
unitLabel: Unit
|
|
1462
|
+
enableLabel: Enable Refresh Interval
|
|
1463
|
+
downloaded:
|
|
1464
|
+
label: Downloaded
|
|
1447
1465
|
error:
|
|
1448
1466
|
refresh: Error refreshing repository
|
|
1449
1467
|
tools:
|
|
@@ -2495,6 +2513,7 @@ cluster:
|
|
|
2495
2513
|
create-rke2: Provision new nodes and create a cluster using RKE2/K3s
|
|
2496
2514
|
create-template: Use a Catalog Template to create a cluster
|
|
2497
2515
|
register-custom: Import any Kubernetes cluster
|
|
2516
|
+
create-capi: Create a cluster using Cluster API
|
|
2498
2517
|
rke2:
|
|
2499
2518
|
banner:
|
|
2500
2519
|
psaChange: PSACT is now set to Rancher default automatically
|
|
@@ -2669,6 +2688,7 @@ cluster:
|
|
|
2669
2688
|
other {A snapshot has been requested for {count} clusters}
|
|
2670
2689
|
}
|
|
2671
2690
|
groupLabel: Location
|
|
2691
|
+
predatesImportTooltip: The restore action is not currently supported for this snapshot as it predates the import into Rancher.
|
|
2672
2692
|
failed: "Snapshot from {time} failed"
|
|
2673
2693
|
rke1:
|
|
2674
2694
|
local: local
|
|
@@ -2732,6 +2752,8 @@ cluster:
|
|
|
2732
2752
|
registry: Registries
|
|
2733
2753
|
upgrade: Upgrade Strategy
|
|
2734
2754
|
registration: Registration
|
|
2755
|
+
nodePools: Node Pools
|
|
2756
|
+
operations: Operations
|
|
2735
2757
|
rotateCertificates:
|
|
2736
2758
|
label: Rotate Certificates
|
|
2737
2759
|
modalTitle: Rotate Cluster Certificates
|
|
@@ -2846,6 +2868,8 @@ cruResource:
|
|
|
2846
2868
|
reviewYaml: "Keep editing YAML"
|
|
2847
2869
|
previewYaml: Edit as YAML
|
|
2848
2870
|
showYaml: View as YAML
|
|
2871
|
+
tableOfContents:
|
|
2872
|
+
jumpTo: Jump to...
|
|
2849
2873
|
|
|
2850
2874
|
providers:
|
|
2851
2875
|
hosted:
|
|
@@ -2970,10 +2994,10 @@ fleet:
|
|
|
2970
2994
|
title: Continuous Delivery Settings
|
|
2971
2995
|
info: Rancher will reboot Fleet agent and controller on settings change.
|
|
2972
2996
|
apply: Apply changes
|
|
2973
|
-
noPermissions: You have no permissions to modify
|
|
2997
|
+
noPermissions: You have no permissions to modify Continuous Delivery Settings
|
|
2974
2998
|
parseError: 'Cannot parse values from "{ path }" in "{ id }" ConfigMap'
|
|
2975
2999
|
fields:
|
|
2976
|
-
ariaLabel:
|
|
3000
|
+
ariaLabel: Continuous Delivery {name} setting
|
|
2977
3001
|
agentTLSMode:
|
|
2978
3002
|
label: TLS Mode
|
|
2979
3003
|
description: "Determines whether the agent should trust CA bundles from the operating system's trust store when connecting to a management cluster."
|
|
@@ -3050,13 +3074,13 @@ fleet:
|
|
|
3050
3074
|
description: 'Agent deployment settings.'
|
|
3051
3075
|
replicas:
|
|
3052
3076
|
label: Replicas
|
|
3053
|
-
description: 'Number of replicas of
|
|
3077
|
+
description: 'Number of replicas of pods.'
|
|
3054
3078
|
annotations:
|
|
3055
3079
|
label: Extra Annotations
|
|
3056
|
-
description: 'Extra annotations passed to the
|
|
3080
|
+
description: 'Extra annotations passed to the pods.'
|
|
3057
3081
|
developer:
|
|
3058
3082
|
label: Developer
|
|
3059
|
-
description: 'Enable debug info
|
|
3083
|
+
description: 'Enable debug info.'
|
|
3060
3084
|
|
|
3061
3085
|
tableHeaders:
|
|
3062
3086
|
applicationType: Type
|
|
@@ -3067,7 +3091,7 @@ fleet:
|
|
|
3067
3091
|
dashboard:
|
|
3068
3092
|
pageTitle: Continuous Delivery Dashboard
|
|
3069
3093
|
menuLabel: Dashboard
|
|
3070
|
-
welcome: Welcome to
|
|
3094
|
+
welcome: Welcome to Continuous Delivery
|
|
3071
3095
|
gitOpsScale: GitOps at scale.
|
|
3072
3096
|
learnMore: Learn More.
|
|
3073
3097
|
learnMoreLink: https://fleet.rancher.io
|
|
@@ -3141,19 +3165,27 @@ fleet:
|
|
|
3141
3165
|
waitApplied: Wait Applied
|
|
3142
3166
|
clusterTargets:
|
|
3143
3167
|
advancedConfigs: Advanced target configurations are defined, check the YAML file for further details.
|
|
3168
|
+
targetMode:
|
|
3169
|
+
local: local cluster
|
|
3170
|
+
all: All Clusters in the workspace
|
|
3171
|
+
allCompact: 'All Clusters in the <b>{namespace}</b> workspace ({count})'
|
|
3172
|
+
none: No clusters
|
|
3173
|
+
clusters: Manually selected clusters
|
|
3144
3174
|
clusters:
|
|
3145
|
-
title:
|
|
3175
|
+
title: Cluster selection
|
|
3146
3176
|
byName:
|
|
3177
|
+
title: Select by cluster name
|
|
3147
3178
|
placeholder: Select Multiple Clusters
|
|
3148
|
-
label:
|
|
3179
|
+
label: Cluster names
|
|
3149
3180
|
byLabel:
|
|
3150
3181
|
title: Select by labels
|
|
3151
3182
|
addSelector: Add cluster selector
|
|
3183
|
+
removeSelector: Remove cluster selector
|
|
3152
3184
|
labelKey: Label
|
|
3153
3185
|
clusterGroups:
|
|
3154
|
-
title:
|
|
3186
|
+
title: Select by cluster groups
|
|
3155
3187
|
byName:
|
|
3156
|
-
label:
|
|
3188
|
+
label: Cluster groups
|
|
3157
3189
|
placeholder: Select Multiple Cluster Groups
|
|
3158
3190
|
rules:
|
|
3159
3191
|
matching:
|
|
@@ -3163,6 +3195,7 @@ fleet:
|
|
|
3163
3195
|
=1 {1 cluster selected}
|
|
3164
3196
|
other {{n, number} clusters selected}
|
|
3165
3197
|
}
|
|
3198
|
+
selectedClusters: Selected clusters
|
|
3166
3199
|
placeholder: Select clusters by name, labels or groups
|
|
3167
3200
|
empty: No clusters in the workspace
|
|
3168
3201
|
plusMore: |-
|
|
@@ -3181,9 +3214,12 @@ fleet:
|
|
|
3181
3214
|
groupBy: Group By Type
|
|
3182
3215
|
subTypes:
|
|
3183
3216
|
fleet.cattle.io.gitrepo:
|
|
3184
|
-
description: GitRepo describes a git repository that is watched
|
|
3217
|
+
description: GitRepo describes a git repository that is watched. The resource contains the necessary information to deploy the repo, or parts of it, to target clusters.
|
|
3185
3218
|
fleet.cattle.io.helmop:
|
|
3186
3219
|
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.
|
|
3220
|
+
suse-application-collection:
|
|
3221
|
+
label: SUSE Application Collection
|
|
3222
|
+
description: Explore our maintained and secure Application Collection, select a Helm chart and deploy it to your clusters.
|
|
3187
3223
|
warningTooltip:
|
|
3188
3224
|
clusterGroup: There are no clusters in this Cluster Group
|
|
3189
3225
|
cluster: There are no clusters available
|
|
@@ -3331,6 +3367,24 @@ fleet:
|
|
|
3331
3367
|
label: Workspace
|
|
3332
3368
|
addWorkspace: Create a workspace
|
|
3333
3369
|
helmRepoURLRegex: Helm Repos (URL Regex)
|
|
3370
|
+
appCo:
|
|
3371
|
+
credentials:
|
|
3372
|
+
title: Create an App Bundle from SUSE Application Collection
|
|
3373
|
+
subtitle: Set up your credentials
|
|
3374
|
+
infoText: An Application Collection access token is required to connect to the Helm Charts catalog.
|
|
3375
|
+
accessTokensLink: SUSE Application Collection access tokens
|
|
3376
|
+
accessTokenLabel: Access token
|
|
3377
|
+
editCredentials: Edit credentials
|
|
3378
|
+
addNewToken: Add a new access token...
|
|
3379
|
+
noTokensYet: "You haven't added an access token yet."
|
|
3380
|
+
chooseExisting: 'Choose an existing token:'
|
|
3381
|
+
username: Username
|
|
3382
|
+
usernamePlaceholder: user@domain.org
|
|
3383
|
+
accessTokenField: Access Token
|
|
3384
|
+
accessTokenPlaceholder: Your SUSE Application Collection access token
|
|
3385
|
+
chart:
|
|
3386
|
+
title: Charts
|
|
3387
|
+
loadError: Chart not found or has no available versions.
|
|
3334
3388
|
helmOp:
|
|
3335
3389
|
intro:
|
|
3336
3390
|
add: Create Helm Op
|
|
@@ -3383,6 +3437,35 @@ fleet:
|
|
|
3383
3437
|
subtext: 'Define advanced settings'
|
|
3384
3438
|
description: Fleet will use the authentication settings and polling to synchronise the resources contained in it.
|
|
3385
3439
|
info: These settings are for advanced usage and optional. You can skip them and finish the creation process.
|
|
3440
|
+
selection:
|
|
3441
|
+
searchPlaceholder: Search the catalog...
|
|
3442
|
+
authBanner: 'Two different resources will be created: a Continuous Delivery secret, and an imagePullSecret that will be copied into every downstream cluster selected in the next step.'
|
|
3443
|
+
emptyState:
|
|
3444
|
+
connectionError:
|
|
3445
|
+
title: Connection error
|
|
3446
|
+
descriptionPre: 'There was an error fetching SUSE Application Collection catalog.'
|
|
3447
|
+
please: 'Please, '
|
|
3448
|
+
tryAgain: try again
|
|
3449
|
+
descriptionPost: ' or contact your system administrator.'
|
|
3450
|
+
noMatch:
|
|
3451
|
+
title: No charts to show
|
|
3452
|
+
descriptionPre: 'Tips: use a different search criteria or '
|
|
3453
|
+
clearSearch: clear the search bar
|
|
3454
|
+
descriptionPost: ' and explore the catalog.'
|
|
3455
|
+
repoLoading:
|
|
3456
|
+
title: Creating SUSE Application Collection repository...
|
|
3457
|
+
description: Please, wait while the repository is created
|
|
3458
|
+
repoError:
|
|
3459
|
+
description: 'Please, check your credentials or the repository in the upstream cluster:'
|
|
3460
|
+
link: SUSE App Collection
|
|
3461
|
+
appCoConfig:
|
|
3462
|
+
chartVersion: Chart version
|
|
3463
|
+
name: App Bundle name
|
|
3464
|
+
advanced: Advanced
|
|
3465
|
+
appCoView:
|
|
3466
|
+
chartConfig: Chart config
|
|
3467
|
+
targetDetails: Target details
|
|
3468
|
+
advanced: Advanced
|
|
3386
3469
|
source:
|
|
3387
3470
|
title: Source
|
|
3388
3471
|
selectLabel: Type
|
|
@@ -3411,10 +3494,13 @@ fleet:
|
|
|
3411
3494
|
title: Release
|
|
3412
3495
|
label: Name
|
|
3413
3496
|
placeholder: The Helm release name
|
|
3497
|
+
fullLabel: Release Name
|
|
3414
3498
|
values:
|
|
3415
3499
|
title: Values
|
|
3416
3500
|
selectLabel: Values
|
|
3417
3501
|
description: Configure Values used by Helm that help define the App.
|
|
3502
|
+
descriptionCompact: Values defined in this section will be applied to the chart in every selected cluster.
|
|
3503
|
+
appCoDescription: The predefined global imagePullSecret should not be modified, otherwise the connection with SUSE Application Collection will fail.
|
|
3418
3504
|
types:
|
|
3419
3505
|
values: Values
|
|
3420
3506
|
valuesFiles: Values Files
|
|
@@ -3441,17 +3527,25 @@ fleet:
|
|
|
3441
3527
|
serviceAccount:
|
|
3442
3528
|
label: Service Account Name
|
|
3443
3529
|
placeholder: "Optional: Use a service account in the target clusters"
|
|
3530
|
+
compactPlaceholder: "Use a service account in the selected clusters"
|
|
3531
|
+
compactDescription: "When provided, this ServiceAccount will be used to perform the deployment."
|
|
3444
3532
|
targetNamespace:
|
|
3445
3533
|
label: Target Namespace
|
|
3446
3534
|
placeholder: "Optional: Require all resources to be in this namespace"
|
|
3535
|
+
compactPlaceholder: "Require all resources to be in this namespace"
|
|
3536
|
+
compactDescription: "This will assign all resources to the specified namespace. If any cluster scoped resource exists, the deployment will fail."
|
|
3447
3537
|
target:
|
|
3448
3538
|
selectLabel: Target
|
|
3449
3539
|
advanced: Advanced
|
|
3450
3540
|
cluster: Cluster
|
|
3451
3541
|
clusterGroup: Cluster Group
|
|
3452
3542
|
label: Deploy To
|
|
3543
|
+
title: Deploy chart to
|
|
3453
3544
|
labelLocal: Deploy With
|
|
3454
3545
|
additionalOptions: Additional Options
|
|
3546
|
+
clusterDeploymentSettings: Cluster deployment settings
|
|
3547
|
+
clusterDeploymentDescription: "Here you can set a ServiceAccount or force a target Namespace for the deployments."
|
|
3548
|
+
clusterDeploymentLink: Bundle Deployment Options
|
|
3455
3549
|
targetDisplay:
|
|
3456
3550
|
advanced: Advanced
|
|
3457
3551
|
clusters: Clusters
|
|
@@ -3460,10 +3554,17 @@ fleet:
|
|
|
3460
3554
|
local: Local
|
|
3461
3555
|
resources:
|
|
3462
3556
|
label: 'Resources'
|
|
3557
|
+
lockedSecretBanner: The previously selected Image Pull Secret is required to connect with SUSE Application Collection.
|
|
3463
3558
|
keepResources: Always keep resources
|
|
3464
3559
|
keepResourcesTooltip: When enabled, resources will be kept when deleting a HelmOp or Bundle - only Helm release secrets will be deleted.
|
|
3465
3560
|
correctDrift: Enable self-healing
|
|
3466
3561
|
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.
|
|
3562
|
+
appCoResources:
|
|
3563
|
+
helmChartSettings: Helm chart resources settings
|
|
3564
|
+
additionalResources: Additional resources to sync
|
|
3565
|
+
additionalResourcesDescription: You can add Secrets and ConfigMaps to copy those resources to each targeted downstream cluster before deploying the Helm chart.
|
|
3566
|
+
additionalResourcesLinkDescription: Learn more about
|
|
3567
|
+
additionalResourcesLink: Automated propagation of resources to downstream clusters
|
|
3467
3568
|
polling:
|
|
3468
3569
|
label: Polling
|
|
3469
3570
|
enable: Enable Polling
|
|
@@ -3478,6 +3579,7 @@ fleet:
|
|
|
3478
3579
|
title: Authentication
|
|
3479
3580
|
label: Authentication
|
|
3480
3581
|
helm: Helm Authentication
|
|
3582
|
+
appco: SUSE App Collection Authentication
|
|
3481
3583
|
caBundle:
|
|
3482
3584
|
label: Certificates
|
|
3483
3585
|
placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
|
|
@@ -4138,8 +4240,8 @@ landing:
|
|
|
4138
4240
|
docs: Docs
|
|
4139
4241
|
forums: Forums
|
|
4140
4242
|
commercial:
|
|
4141
|
-
title:
|
|
4142
|
-
body: Learn about
|
|
4243
|
+
title: Rancher Prime
|
|
4244
|
+
body: Learn about Rancher Prime
|
|
4143
4245
|
landingPrefs:
|
|
4144
4246
|
body: "You can change where you land when you login"
|
|
4145
4247
|
ariaLabelTakeMeToCluster: Select which cluster to take me to after login
|
|
@@ -5622,7 +5724,7 @@ plugins:
|
|
|
5622
5724
|
banner: There are new extensions repositories available. To enable these repositories, click the button on the right.
|
|
5623
5725
|
bannerBtn: Add repositories
|
|
5624
5726
|
title: Add Extensions repositories
|
|
5625
|
-
prompt:
|
|
5727
|
+
prompt: Enable additional repositories to access more extensions
|
|
5626
5728
|
setup:
|
|
5627
5729
|
installed: Already installed
|
|
5628
5730
|
uninstalled: Already uninstalled
|
|
@@ -5638,7 +5740,7 @@ plugins:
|
|
|
5638
5740
|
prompt: This will lead you to the page where you can enable the Feature Flag needed to enable Extension support.
|
|
5639
5741
|
featuresButton: Go to Feature Flags
|
|
5640
5742
|
airgap: Air-gapped installations should NOT enable this feature
|
|
5641
|
-
addRancherRepo: Add
|
|
5743
|
+
addRancherRepo: Add Rancher Prime Extensions Repository
|
|
5642
5744
|
addPartnersRancherRepo: Add Partners Extensions Repository
|
|
5643
5745
|
remove:
|
|
5644
5746
|
label: Disable Extension Support
|
|
@@ -5933,6 +6035,13 @@ promptRestore:
|
|
|
5933
6035
|
fromS3: Restore from S3
|
|
5934
6036
|
label: Snapshot
|
|
5935
6037
|
placeholder: Select a snapshot to restore
|
|
6038
|
+
error:
|
|
6039
|
+
unableToResolveTargetCluster: Unable to resolve target cluster for snapshot restore
|
|
6040
|
+
restoreMode:
|
|
6041
|
+
label: Restore Type
|
|
6042
|
+
onlyEtcd: Only etcd
|
|
6043
|
+
kubernetesVersionAndEtcd: Kubernetes version and etcd
|
|
6044
|
+
clusterConfigKubernetesVersionAndEtcd: Cluster config, Kubernetes version and etcd
|
|
5936
6045
|
notification:
|
|
5937
6046
|
title: Restore Snapshot
|
|
5938
6047
|
message: Restoring snapshot { selectedSnapshot } has started...
|
|
@@ -5956,7 +6065,9 @@ promptRotateEncryptionKey:
|
|
|
5956
6065
|
title: Rotate Encryption Keys
|
|
5957
6066
|
description: The last backup {name} was performed on {date}
|
|
5958
6067
|
warning: Before proceeding, ensure a successful ETCD backup of the cluster has been completed.
|
|
5959
|
-
error:
|
|
6068
|
+
error:
|
|
6069
|
+
noBackup: No backup found
|
|
6070
|
+
unableToResolveTargetCluster: Unable to resolve target cluster for encryption key rotation
|
|
5960
6071
|
|
|
5961
6072
|
rancherAlertingDrivers:
|
|
5962
6073
|
msTeams: Enable Microsoft Teams
|
|
@@ -6182,6 +6293,8 @@ resourceList:
|
|
|
6182
6293
|
nsFiltering: "Please select one or more namespaces or projects using the filter above."
|
|
6183
6294
|
nsFilteringGeneric: "Please select a valid namespace or project option using the filter above."
|
|
6184
6295
|
nsFilterToolTip: "Filtering is restricted to projects and namespaces"
|
|
6296
|
+
stateFilterApplied: "State filter applied:"
|
|
6297
|
+
clearStateFilter: "Clear filter"
|
|
6185
6298
|
resourceLoadingIndicator:
|
|
6186
6299
|
loading: Loading
|
|
6187
6300
|
|
|
@@ -6239,6 +6352,8 @@ resourceYaml:
|
|
|
6239
6352
|
|
|
6240
6353
|
secret:
|
|
6241
6354
|
authentication: Authentication
|
|
6355
|
+
githubApp:
|
|
6356
|
+
label: GitHub App
|
|
6242
6357
|
certificate:
|
|
6243
6358
|
certificate: Certificate
|
|
6244
6359
|
certificates: Certificates
|
|
@@ -6375,14 +6490,19 @@ selectOrCreateAuthSecret:
|
|
|
6375
6490
|
passwordPersonalAccessToken: Password/Personal Access Token
|
|
6376
6491
|
rke:
|
|
6377
6492
|
info: "An RKE Auth Config secret contains the username and password concatenated and base64 encoded into the secret's 'auth' key"
|
|
6493
|
+
githubApp:
|
|
6494
|
+
appId: GitHub App ID
|
|
6495
|
+
installationId: GitHub App Installation ID
|
|
6496
|
+
privateKey: GitHub App Private Key
|
|
6378
6497
|
namespaceGroup: "Namespace: {name}"
|
|
6379
6498
|
chooseExisting: "Choose an existing secret:"
|
|
6380
6499
|
createSsh: Create an SSH Key Secret
|
|
6381
6500
|
createBasic: Create an HTTP Basic Auth Secret
|
|
6382
6501
|
createS3: Create an S3-Compatible Auth Secret
|
|
6383
6502
|
createRKE: Create an RKE Auth Config Secret
|
|
6503
|
+
createGithubApp: Create a GitHub App Auth Secret
|
|
6384
6504
|
createImagePullSecretBasedOnAuth: Create an Image Pull Secret based on Authentication Secret
|
|
6385
|
-
createImagePullSecret: Create
|
|
6505
|
+
createImagePullSecret: Create an Image Pull Secret with a Username and Password
|
|
6386
6506
|
|
|
6387
6507
|
serviceAccount:
|
|
6388
6508
|
automount: Automount Service Account Token
|
|
@@ -6511,11 +6631,7 @@ setup:
|
|
|
6511
6631
|
currentPassword: Bootstrap Password
|
|
6512
6632
|
confirmPassword: Confirm New Password
|
|
6513
6633
|
defaultPassword:
|
|
6514
|
-
intro: It looks like this is your first time visiting {vendor}; if you pre-set your own bootstrap password, enter it here. Otherwise a random one has been generated for you. To find it:<br/><br/>
|
|
6515
|
-
dockerPrefix: 'For a "docker run" installation:'
|
|
6516
|
-
dockerPs: 'Find your container ID with <code>docker ps</code>, then run:'
|
|
6517
|
-
dockerSuffix: ""
|
|
6518
|
-
helmPrefix: 'For a Helm installation, run:'
|
|
6634
|
+
intro: It looks like this is your first time visiting {vendor}; if you pre-set your own bootstrap password, enter it here. Otherwise a random one has been generated for you. To find it, run:<br/><br/>
|
|
6519
6635
|
helmSuffix: ""
|
|
6520
6636
|
eula: By checking the box, you accept the <a href="https://www.suse.com/licensing/eula/download/suse_end_user_license_agreement_june_2024.pdf" target="_blank" rel="noopener noreferrer nofollow">End User License Agreement & Terms & Conditions</a>
|
|
6521
6637
|
newPassword: New Password
|
|
@@ -7273,6 +7389,7 @@ validation:
|
|
|
7273
7389
|
betweenValues: '"{key}" must be between {min} and {max}'
|
|
7274
7390
|
noSchema: No schema found to validate
|
|
7275
7391
|
noType: No type to validate
|
|
7392
|
+
createResourceFailed: 'Failed to create resource: insufficient permissions or resource type not found'
|
|
7276
7393
|
number:
|
|
7277
7394
|
requiredInt: '"{key}" must be integer'
|
|
7278
7395
|
isPositive: '"{key}" must be positive'
|
|
@@ -7433,6 +7550,36 @@ wm:
|
|
|
7433
7550
|
kubectlShell:
|
|
7434
7551
|
title: "Kubectl: {name}"
|
|
7435
7552
|
|
|
7553
|
+
workloadDashboard:
|
|
7554
|
+
title: Workloads Overview
|
|
7555
|
+
subtitle:
|
|
7556
|
+
allNamespaces: "For all namespaces"
|
|
7557
|
+
userNamespaces: "Only for user namespaces"
|
|
7558
|
+
systemNamespaces: "Only for system namespaces"
|
|
7559
|
+
namespacedOnly: "Only for namespaced resources"
|
|
7560
|
+
clusterOnly: "Only for cluster resources"
|
|
7561
|
+
project: "For the namespaces of Project {name}"
|
|
7562
|
+
namespace: "For the namespace {name}"
|
|
7563
|
+
multipleSelected: "For {selected} items selected"
|
|
7564
|
+
workloadCount: |-
|
|
7565
|
+
({count, plural,
|
|
7566
|
+
=0 {No workload}
|
|
7567
|
+
=1 {{count} workload}
|
|
7568
|
+
other {{count} workloads}
|
|
7569
|
+
})
|
|
7570
|
+
sections:
|
|
7571
|
+
byState: By State
|
|
7572
|
+
byType: By Type
|
|
7573
|
+
byNamespace: By Namespace
|
|
7574
|
+
errors:
|
|
7575
|
+
noAccess: "No access to {type}"
|
|
7576
|
+
fetchType: "Failed to fetch {type}"
|
|
7577
|
+
fetchAll: Failed to fetch workload summaries
|
|
7578
|
+
empty:
|
|
7579
|
+
title: No workloads to show
|
|
7580
|
+
message: "Tips: Update the namespace filter above or <resetLink>reset the namespaces filter</resetLink>."
|
|
7581
|
+
docsMessage: "Want to learn more about Workloads? Read our <docsLink>documentation</docsLink>."
|
|
7582
|
+
|
|
7436
7583
|
workload:
|
|
7437
7584
|
scaleWorkloads: Scale workloads
|
|
7438
7585
|
healthWorkloads: Jobs/Pods health status
|
|
@@ -7988,6 +8135,7 @@ model:
|
|
|
7988
8135
|
genericoidc: OIDC provider
|
|
7989
8136
|
cognito: Amazon Cognito
|
|
7990
8137
|
name:
|
|
8138
|
+
azuread: Microsoft Entra ID
|
|
7991
8139
|
keycloak: Keycloak (SAML)
|
|
7992
8140
|
keycloakoidc: Keycloak (OIDC)
|
|
7993
8141
|
provider:
|
|
@@ -8051,7 +8199,6 @@ typeDescription:
|
|
|
8051
8199
|
# target="_blank" rel="noopener noreferrer nofollow"
|
|
8052
8200
|
jwt.authentication: Enable this feature on a cluster to add support for JWT authenticating downstream service accounts.
|
|
8053
8201
|
branding: "Branding allows administrators to globally re-brand the UI by customizing the Rancher product name, logos and color scheme."
|
|
8054
|
-
chart: "All charts have at least one version that is installable on clusters with Linux and Windows nodes unless otherwise indicated."
|
|
8055
8202
|
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.
|
|
8056
8203
|
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.
|
|
8057
8204
|
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.
|
|
@@ -8660,6 +8807,11 @@ typeLabel:
|
|
|
8660
8807
|
one { Cluster Registration Token }
|
|
8661
8808
|
other { Cluster Registration Tokens }
|
|
8662
8809
|
}
|
|
8810
|
+
turtles-capi.cattle.io.capiprovider: |-
|
|
8811
|
+
{count, plural,
|
|
8812
|
+
one { Cluster API Provider }
|
|
8813
|
+
other { Cluster API Providers }
|
|
8814
|
+
}
|
|
8663
8815
|
|
|
8664
8816
|
oidcclient:
|
|
8665
8817
|
a11y:
|
|
@@ -8841,9 +8993,9 @@ advancedSettings:
|
|
|
8841
8993
|
'ingress-ip-domain': 'Wildcard DNS domain to use for automatically generated Ingress hostnames. <ingress-name>.<namespace-name>.<ip address of ingress controller> will be added to the domain.'
|
|
8842
8994
|
'server-url': 'Default {appName} install url. Must be HTTPS. All nodes in your cluster must be able to reach this.'
|
|
8843
8995
|
'system-default-registry': 'Private registry to be used for all Rancher System Container Images. If no value is specified, the default registry for the container runtime is used. For Docker and containerd, the default is `docker.io`.'
|
|
8844
|
-
'
|
|
8996
|
+
'system-default-registry-pull-secrets': 'List of image pull secrets to authenticate into registry from which Rancher System Container Images are pulled. By default, these secrets will be copied into each Rancher chart namespace. Secrets must be in the `cattle-system` namespace. The first valid secret listed here will be used.'
|
|
8845
8997
|
'ui-dashboard-index': 'HTML index location for the {appName} UI.'
|
|
8846
|
-
'ui-offline-preferred': 'Controls whether UI assets are served locally by the server container or from the remote URL defined in the ui-
|
|
8998
|
+
'ui-offline-preferred': 'Controls whether UI assets are served locally by the server container or from the remote URL defined in the ui-dashboard-index setting. The `Dynamic` option will use local assets in production builds of {appName}.'
|
|
8847
8999
|
'ui-pl': 'Private-Label company name.'
|
|
8848
9000
|
'auth-user-info-max-age-seconds': 'The maximum age of a users auth tokens before an auth provider group membership sync will be performed.'
|
|
8849
9001
|
'auth-user-info-resync-cron': 'Default cron schedule for resyncing auth provider group memberships.'
|
|
@@ -8864,6 +9016,7 @@ advancedSettings:
|
|
|
8864
9016
|
'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.
|
|
8865
9017
|
'system-agent-upgrader-install-concurrency': Defines the maximum number of clusters in which Rancher can concurrently install the resources required for upgrading system-agent.
|
|
8866
9018
|
'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).
|
|
9019
|
+
'imported-cluster-day2-ops-enabled': Controls whether newly imported RKE2/K3s clusters will have day 2 operations (etcd snapshots, restores, encryption key rotations) enabled by default. This does not affect previously imported clusters.
|
|
8867
9020
|
warnings:
|
|
8868
9021
|
'agent-tls-mode': 'Changing this setting will cause all agents to be redeployed.'
|
|
8869
9022
|
editHelp:
|
|
@@ -9150,31 +9303,10 @@ customLinks:
|
|
|
9150
9303
|
slack: Slack
|
|
9151
9304
|
issues: File an Issue
|
|
9152
9305
|
getStarted: Get Started
|
|
9153
|
-
commercialSupport:
|
|
9306
|
+
commercialSupport: Rancher Prime
|
|
9154
9307
|
appCo: SUSE Application Collection
|
|
9155
9308
|
|
|
9156
|
-
##############################
|
|
9157
|
-
### Support Page
|
|
9158
|
-
##############################
|
|
9159
|
-
|
|
9160
|
-
support:
|
|
9161
|
-
bannerImage: Support page banner image
|
|
9162
|
-
community:
|
|
9163
|
-
title: SUSE Rancher provides world-class support
|
|
9164
|
-
linksTitle: Community Support
|
|
9165
|
-
learnMore: Find out more about SUSE Rancher Support
|
|
9166
|
-
pricing: Contact us for pricing
|
|
9167
|
-
subscription:
|
|
9168
|
-
haveSupport: Already have support?
|
|
9169
|
-
addSubscription: Add a Subscription ID
|
|
9170
|
-
removeSubscription: Remove your Subscription ID
|
|
9171
|
-
addTitle: Add your SUSE Subscription ID
|
|
9172
|
-
addLabel: "Please enter a valid Subscription ID:"
|
|
9173
|
-
removeTitle: Remove your ID?
|
|
9174
|
-
removeBody: "Note: This will not affect your subscription."
|
|
9175
|
-
|
|
9176
9309
|
suse:
|
|
9177
|
-
title: "Great News - You're covered"
|
|
9178
9310
|
editBrand: Customize UI Theme
|
|
9179
9311
|
access:
|
|
9180
9312
|
title: Get Support
|
|
@@ -4947,10 +4947,6 @@ setup:
|
|
|
4947
4947
|
confirmPassword: 确认新密码
|
|
4948
4948
|
defaultPassword:
|
|
4949
4949
|
intro: 这是你第一次访问 {vendor}。如果你预先设置了 Bootstrap 密码,请在此处输入。否则我们会为你生成一个随机密码。找到它:<br/><br/>
|
|
4950
|
-
dockerPrefix: '"docker run" 安装:'
|
|
4951
|
-
dockerPs: '运行<code>docker ps</code>找到你的容器 ID,然后运行:'
|
|
4952
|
-
dockerSuffix: ""
|
|
4953
|
-
helmPrefix: 'Helm 安装,运行:'
|
|
4954
4950
|
helmSuffix: ""
|
|
4955
4951
|
eula: 选中此框,即表示你接受<a href="https://www.suse.com/licensing/eula/download/suse_end_user_license_agreement_june_2024.pdf" target="_blank" rel="noopener noreferrer nofollow">最终用户许可协议及条款和条件</a>
|
|
4956
4952
|
newPassword: 新密码
|
|
@@ -6321,7 +6317,6 @@ typeDescription:
|
|
|
6321
6317
|
# If you link to anything external, it MUST have
|
|
6322
6318
|
# target="_blank" rel="noopener noreferrer nofollow"
|
|
6323
6319
|
branding: "管理员可以修改 Rancher 产品名称、Logo 和配色方案来全局自定义 UI 界面。"
|
|
6324
|
-
chart: "除非另有说明,否则所有 Chart 都至少有一个可以安装在具有 Linux 和 Windows 节点的集群上的版本。"
|
|
6325
6320
|
cis.cattle.io.clusterscanbenchmark: Benchmark 版本是指使用 kube-bench 运行的 Benchmark 名称,以及该 Benchmark 的有效配置参数。
|
|
6326
6321
|
cis.cattle.io.clusterscanprofile: 配置文件指定 CIS 扫描的配置,也就是要使用的 Benchmark 版本和该 Benchmark 中要跳过的特定测试。
|
|
6327
6322
|
cis.cattle.io.clusterscan: 扫描是用来根据定义的配置文件,在集群上触发 CIS 扫描的。扫描完成后会创建一份报告。
|
|
@@ -6998,9 +6993,8 @@ advancedSettings:
|
|
|
6998
6993
|
'ingress-ip-domain': '用于自动生成 Ingress 主机名的通配符 DNS 域。<ingress-name>.<namespace-name>.<ip address of ingress controller> 会被添加到该域。'
|
|
6999
6994
|
'server-url': '默认 {appName} 安装地址。必须使用 HTTPS。你集群中的所有节点都必须能够访问此地址。'
|
|
7000
6995
|
'system-default-registry': '用于所有 Rancher System 容器镜像的私有镜像仓库。如果未指定任何值,则使用容器运行时的默认镜像仓库。对于 Docker 和 containerd,默认为 `docker.io`。'
|
|
7001
|
-
'ui-index': 'Cluster Manager UI 的 HTML 索引位置。'
|
|
7002
6996
|
'ui-dashboard-index': '{appName} UI 的 HTML 索引位置。'
|
|
7003
|
-
'ui-offline-preferred': '控制 UI 资产是由服务器容器在本地提供,还是从 ui-
|
|
6997
|
+
'ui-offline-preferred': '控制 UI 资产是由服务器容器在本地提供,还是从 ui-dashboard-index 设置中定义的远程 URL 提供。`动态` 选项将在 {appName} 的生产版本中使用本地资产。'
|
|
7004
6998
|
'ui-pl': '自有品牌公司名称。'
|
|
7005
6999
|
'auth-user-info-max-age-seconds': '在同步验证提供程序组成员之前,用户验证 Token 的最长存活时间。'
|
|
7006
7000
|
'auth-user-info-resync-cron': '重新同步验证提供程序组成员的默认 cron 调度。'
|
|
@@ -61,12 +61,6 @@ const CLUSTER_TYPES = [
|
|
|
61
61
|
label: 'cluster.provider.other',
|
|
62
62
|
configKeys: OTHER_CONFIG_KEYS,
|
|
63
63
|
},
|
|
64
|
-
{
|
|
65
|
-
group: 'rke',
|
|
66
|
-
id: 'rke',
|
|
67
|
-
label: 'cluster.provider.rke',
|
|
68
|
-
configKeys: ['rkeControllerManager', 'rkeScheduler', 'rkeProxy', 'rkeEtcd'],
|
|
69
|
-
},
|
|
70
64
|
{
|
|
71
65
|
group: 'rke',
|
|
72
66
|
id: 'rke2', // rke federal
|
|
@@ -78,12 +72,6 @@ const CLUSTER_TYPES = [
|
|
|
78
72
|
'rke2Etcd',
|
|
79
73
|
],
|
|
80
74
|
},
|
|
81
|
-
{
|
|
82
|
-
group: 'rke',
|
|
83
|
-
id: 'rke.windows',
|
|
84
|
-
label: 'cluster.provider.rkeWindows',
|
|
85
|
-
configKeys: ['rkeControllerManager', 'rkeScheduler', 'rkeProxy', 'rkeEtcd'],
|
|
86
|
-
},
|
|
87
75
|
];
|
|
88
76
|
|
|
89
77
|
export default {
|
|
@@ -165,15 +153,6 @@ export default {
|
|
|
165
153
|
this.value.prometheus.prometheusSpec.resources.requests['memory'] = '1750Mi';
|
|
166
154
|
}
|
|
167
155
|
|
|
168
|
-
if (clusterType.id === 'rke.windows') {
|
|
169
|
-
if (!this.value.global.cattle.windows) {
|
|
170
|
-
this.value.global.cattle['windows'] = { enabled: true };
|
|
171
|
-
} else {
|
|
172
|
-
this.value.global.cattle.windows.enabled = true;
|
|
173
|
-
}
|
|
174
|
-
} else if (oldClusterType && oldClusterType.id === 'rke.windows') {
|
|
175
|
-
delete this.value.global.cattle.windows;
|
|
176
|
-
}
|
|
177
156
|
this.$emit('onClusterTypeChanged', clusterType);
|
|
178
157
|
},
|
|
179
158
|
},
|