@rancher/shell 3.0.9-rc.4 → 3.0.9-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/brand/suse/metadata.json +2 -1
- package/assets/images/providers/oci-open-containers.svg +22 -0
- package/assets/images/providers/traefik.png +0 -0
- package/assets/styles/themes/_dark.scss +2 -0
- package/assets/styles/themes/_light.scss +2 -0
- package/assets/styles/themes/_modern.scss +6 -0
- package/assets/translations/en-us.yaml +218 -26
- package/components/ActionMenuShell.vue +1 -1
- package/components/CruResource.vue +3 -1
- package/components/ExplorerProjectsNamespaces.vue +12 -12
- package/components/Inactivity.vue +2 -2
- package/components/Resource/Detail/Card/ExtrasCard.vue +49 -15
- package/components/Resource/Detail/Card/StatusCard/__tests__/StatusCard.test.ts +109 -0
- package/components/Resource/Detail/Card/StatusCard/index.vue +21 -4
- package/components/Resource/Detail/Card/__tests__/ExtrasCard.test.ts +111 -0
- package/components/Resource/Detail/Masthead/__tests__/index.test.ts +0 -17
- package/components/Resource/Detail/Masthead/index.vue +11 -4
- package/components/Resource/Detail/Metadata/IdentifyingInformation/__tests__/identifying-fields.test.ts +19 -2
- package/components/Resource/Detail/Metadata/IdentifyingInformation/identifying-fields.ts +19 -11
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +3 -1
- package/components/Resource/Detail/Metadata/index.vue +1 -1
- package/components/Resource/Detail/ResourcePopover/__tests__/index.test.ts +12 -0
- package/components/Resource/Detail/ResourcePopover/index.vue +2 -0
- package/components/Resource/Detail/ResourceRow.vue +3 -3
- package/components/ResourceDetail/Masthead/latest.vue +12 -2
- package/components/ResourceList/index.vue +12 -0
- package/components/ResourceTable.vue +38 -4
- package/components/Tabbed/Tab.vue +4 -0
- package/components/Tabbed/index.vue +4 -1
- package/components/Window/ContainerLogs.vue +48 -37
- package/components/fleet/FleetClusterTargets/TargetsList.vue +2 -2
- package/components/fleet/FleetClusterTargets/index.vue +6 -1
- package/components/fleet/GitRepoAdvancedTab.vue +333 -0
- package/components/fleet/GitRepoMetadataTab.vue +43 -0
- package/components/fleet/GitRepoRepositoryTab.vue +101 -0
- package/components/fleet/GitRepoTargetTab.vue +77 -0
- package/components/fleet/HelmOpAdvancedTab.vue +247 -0
- package/components/fleet/HelmOpChartTab.vue +158 -0
- package/components/fleet/HelmOpMetadataTab.vue +46 -0
- package/components/fleet/HelmOpTargetTab.vue +84 -0
- package/components/fleet/HelmOpValuesTab.vue +147 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +119 -70
- package/components/form/ChangePassword.vue +41 -35
- package/components/form/NodeScheduling.vue +81 -7
- package/components/form/PodAffinity.vue +1 -36
- package/components/form/ResourceLabeledSelect.vue +8 -4
- package/components/form/ResourceQuota/Namespace.vue +30 -9
- package/components/form/ResourceQuota/NamespaceRow.vue +25 -7
- package/components/form/ResourceQuota/Project.vue +150 -51
- package/components/form/ResourceQuota/ResourceQuotaEntry.vue +145 -0
- package/components/form/ResourceQuota/__tests__/Namespace.test.ts +307 -0
- package/components/form/ResourceQuota/__tests__/NamespaceRow.test.ts +281 -0
- package/components/form/ResourceQuota/__tests__/Project.test.ts +310 -0
- package/components/form/ResourceQuota/__tests__/ResourceQuotaEntry.test.ts +215 -0
- package/components/form/SchedulingCustomization.vue +14 -6
- package/components/form/SelectOrCreateAuthSecret.vue +113 -19
- package/components/form/__tests__/NodeScheduling.test.ts +12 -9
- package/components/form/__tests__/PodAffinity.test.ts +21 -2
- package/components/form/__tests__/SchedulingCustomization.test.ts +240 -0
- package/components/form/__tests__/SelectOrCreateAuthSecret.test.ts +35 -0
- package/components/formatter/ClusterLink.vue +8 -0
- package/components/formatter/MachineSummaryGraph.vue +10 -2
- package/components/formatter/SecretOrigin.vue +79 -0
- package/components/nav/TopLevelMenu.helper.ts +50 -2
- package/components/nav/TopLevelMenu.vue +14 -0
- package/components/nav/Type.vue +5 -0
- package/components/nav/__tests__/TopLevelMenu.test.ts +3 -3
- package/components/nav/__tests__/Type.test.ts +6 -4
- package/config/labels-annotations.js +7 -6
- package/config/pagination-table-headers.js +6 -4
- package/config/product/explorer.js +5 -14
- package/config/product/manager.js +18 -1
- package/config/query-params.js +3 -0
- package/config/router/navigation-guards/authentication.js +8 -9
- package/config/settings.ts +15 -2
- package/config/table-headers.js +21 -17
- package/config/types.js +33 -10
- package/detail/auditlog.cattle.io.auditpolicy.vue +19 -0
- package/detail/management.cattle.io.user.vue +1 -2
- package/detail/node.vue +0 -1
- package/detail/provisioning.cattle.io.cluster.vue +2 -1
- package/detail/workload/index.vue +11 -16
- package/dialog/ChangePasswordDialog.vue +8 -0
- package/dialog/DeactivateDriverDialog.vue +1 -1
- package/dialog/GenericPrompt.vue +20 -3
- package/dialog/Ipv6NetworkingDialog.vue +156 -0
- package/dialog/ScaleMachineDownDialog.vue +65 -15
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/dialog/SearchDialog.vue +10 -2
- package/dialog/__tests__/ScaleMachineDownDialog.test.ts +184 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +89 -0
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +1 -0
- package/edit/__tests__/management.cattle.io.project.test.js +81 -98
- package/edit/auditlog.cattle.io.auditpolicy/AdditionalRedactions.vue +114 -0
- package/edit/auditlog.cattle.io.auditpolicy/Filters.vue +119 -0
- package/edit/auditlog.cattle.io.auditpolicy/General.vue +180 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/AdditionalRedactions.test.ts +327 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/Filters.test.ts +449 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/General.test.ts +472 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/AdditionalRedactions.test.ts.snap +27 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/Filters.test.ts.snap +39 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/General.test.ts.snap +174 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/index.test.ts.snap +29 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/index.test.ts +215 -0
- package/edit/auditlog.cattle.io.auditpolicy/index.vue +104 -0
- package/edit/auditlog.cattle.io.auditpolicy/types.ts +28 -0
- package/edit/auth/oidc.vue +1 -1
- package/edit/catalog.cattle.io.clusterrepo.vue +155 -25
- package/edit/fleet.cattle.io.gitrepo.vue +161 -276
- package/edit/fleet.cattle.io.helmop.vue +190 -332
- package/edit/management.cattle.io.project.vue +11 -42
- package/edit/management.cattle.io.setting.vue +6 -0
- package/edit/management.cattle.io.user.vue +29 -34
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +55 -24
- package/edit/provisioning.cattle.io.cluster/__tests__/Networking.test.ts +1 -103
- package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +13 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2-fleet-cluster-agent.test.ts +283 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +196 -2
- package/edit/provisioning.cattle.io.cluster/ingress/IngressCards.vue +112 -0
- package/edit/provisioning.cattle.io.cluster/ingress/IngressConfiguration.vue +158 -0
- package/edit/provisioning.cattle.io.cluster/rke2.vue +184 -66
- package/edit/provisioning.cattle.io.cluster/shared.ts +39 -0
- package/edit/provisioning.cattle.io.cluster/tabs/AgentConfiguration.vue +2 -1
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +56 -7
- package/edit/provisioning.cattle.io.cluster/tabs/Ingress.vue +319 -0
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +2 -1
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/S3Config.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/__tests__/S3Config.test.ts +13 -1
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +10 -44
- package/edit/secret/index.vue +1 -1
- package/edit/token.vue +68 -29
- package/edit/workload/__tests__/index.test.ts +2 -37
- package/edit/workload/index.vue +6 -2
- package/edit/workload/mixins/workload.js +0 -32
- package/list/__tests__/management.cattle.io.setting.test.ts +198 -0
- package/list/auditlog.cattle.io.auditpolicy.vue +63 -0
- package/list/group.principal.vue +11 -15
- package/list/management.cattle.io.setting.vue +13 -0
- package/list/management.cattle.io.user.vue +11 -21
- package/list/provisioning.cattle.io.cluster.vue +50 -1
- package/list/secret.vue +4 -9
- package/list/service.vue +6 -8
- package/machine-config/amazonec2.vue +11 -4
- package/machine-config/azure.vue +14 -0
- package/machine-config/components/EC2Networking.vue +46 -30
- package/machine-config/components/__tests__/EC2Networking.test.ts +7 -7
- package/machine-config/components/__tests__/utils/vpcSubnetMockData.js +0 -9
- package/machine-config/digitalocean.vue +3 -3
- package/mixins/browser-tab-visibility.js +5 -4
- package/mixins/fetch.client.js +6 -0
- package/models/__tests__/auditlog.cattle.io.auditpolicy.test.ts +117 -0
- package/models/__tests__/namespace.test.ts +11 -0
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +96 -0
- package/models/__tests__/workload.test.ts +90 -6
- package/models/auditlog.cattle.io.auditpolicy.js +46 -0
- package/models/catalog.cattle.io.clusterrepo.js +30 -4
- package/models/cluster.x-k8s.io.machine.js +1 -1
- package/models/cluster.x-k8s.io.machinedeployment.js +5 -5
- package/models/event.js +5 -0
- package/models/ext.cattle.io.groupmembershiprefreshrequest.js +15 -0
- package/models/ext.cattle.io.passwordchangerequest.js +15 -0
- package/models/ext.cattle.io.selfuser.js +15 -0
- package/models/ext.cattle.io.token.js +48 -0
- package/models/fleet-application.js +17 -7
- package/models/kontainerdriver.js +2 -2
- package/models/management.cattle.io.user.js +28 -31
- package/models/namespace.js +7 -1
- package/models/nodedriver.js +2 -2
- package/models/provisioning.cattle.io.cluster.js +28 -7
- package/models/schema.js +18 -0
- package/models/secret.js +27 -41
- package/models/service.js +44 -1
- package/models/steve-schema.ts +39 -2
- package/models/token.js +4 -0
- package/models/workload.js +13 -6
- package/package.json +1 -1
- package/pages/account/index.vue +108 -72
- package/pages/auth/login.vue +15 -8
- package/pages/auth/setup.vue +55 -27
- package/pages/c/_cluster/apps/charts/__tests__/install.test.ts +4 -1
- package/pages/c/_cluster/apps/charts/index.vue +93 -4
- package/pages/c/_cluster/apps/charts/install.vue +317 -42
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +5 -4
- package/pages/c/_cluster/settings/index.vue +3 -1
- package/pages/home.vue +9 -3
- package/plugins/dashboard-store/__tests__/getters.test.ts +108 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +28 -3
- package/plugins/dashboard-store/actions.js +10 -8
- package/plugins/dashboard-store/getters.js +30 -6
- package/plugins/dashboard-store/index.js +3 -2
- package/plugins/dashboard-store/mutations.js +8 -1
- package/plugins/dashboard-store/resource-class.js +15 -8
- package/plugins/steve/__tests__/steve-class.test.ts +128 -0
- package/plugins/steve/schema.d.ts +5 -0
- package/plugins/steve/steve-class.js +28 -0
- package/plugins/steve/steve-pagination-utils.ts +7 -2
- package/rancher-components/RcIcon/types.ts +2 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +64 -19
- package/store/auth.js +57 -19
- package/store/notifications.ts +1 -1
- package/store/prefs.js +3 -0
- package/store/type-map.js +12 -1
- package/types/aws-sdk.d.ts +121 -0
- package/types/resources/node.ts +15 -0
- package/types/shell/index.d.ts +542 -516
- package/types/store/dashboard-store.types.ts +7 -0
- package/types/store/pagination.types.ts +5 -5
- package/utils/__tests__/array.test.ts +1 -29
- package/utils/__tests__/cluster-agent-configuration.test.ts +203 -0
- package/utils/array.ts +0 -11
- package/utils/aws.ts +21 -0
- package/utils/cluster.js +22 -2
- package/utils/pagination-wrapper.ts +11 -3
- package/utils/selector-typed.ts +1 -1
- package/vue.config.js +26 -13
- package/components/__tests__/ProjectRow.test.ts +0 -146
- package/components/form/ResourceQuota/ProjectRow.vue +0 -210
- package/edit/provisioning.cattle.io.cluster/defaults.ts +0 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 576 576" style="enable-background:new 0 0 576 576;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#808184;}
|
|
7
|
+
.st1{fill:#262261;}
|
|
8
|
+
</style>
|
|
9
|
+
<g>
|
|
10
|
+
<g>
|
|
11
|
+
<g>
|
|
12
|
+
<polygon class="st0" points="326.6,212.6 326.6,132.6 128.6,132.6 128.6,444.6 326.6,444.6 326.6,364.6 208.6,364.6 208.6,212.6
|
|
13
|
+
"/>
|
|
14
|
+
<g>
|
|
15
|
+
<rect x="366.5" y="132.6" class="st1" width="79.9" height="79.9"/>
|
|
16
|
+
<rect x="366.5" y="252.6" class="st1" width="79.9" height="192"/>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
<path class="st1" d="M8.5,9.5v558.2h558.2V9.5H8.5z M486.4,484.7H88.7V92.6h397.8V484.7z"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
Binary file
|
|
@@ -724,6 +724,9 @@ BODY, .theme-light {
|
|
|
724
724
|
--rc-disabled-background: #{$gray001};
|
|
725
725
|
--rc-disabled-text-color: #{$gray004};
|
|
726
726
|
|
|
727
|
+
--rc-image-bg: #{$lightest};
|
|
728
|
+
--rc-image-color: #{$darkest};
|
|
729
|
+
|
|
727
730
|
--warning-badge : #{$warning};
|
|
728
731
|
--on-warning-banner : #{darken($warning, 60%)};
|
|
729
732
|
|
|
@@ -1065,6 +1068,9 @@ BODY, .theme-dark {
|
|
|
1065
1068
|
--rc-disabled-background: #{$gray005};
|
|
1066
1069
|
--rc-disabled-text-color: #{$gray004};
|
|
1067
1070
|
|
|
1071
|
+
--rc-image-bg: #{$lightest};
|
|
1072
|
+
--rc-image-color: #{$darkest};
|
|
1073
|
+
|
|
1068
1074
|
--error-text : #FFAC99;
|
|
1069
1075
|
--warning-text : #{contrast-color($warning)};
|
|
1070
1076
|
|
|
@@ -163,6 +163,9 @@ generic:
|
|
|
163
163
|
externalIps: External IPs
|
|
164
164
|
internalIps: Internal IPs
|
|
165
165
|
opensInNewTab: Opens in a new tab
|
|
166
|
+
autogeneratedCreated:
|
|
167
|
+
title: "Created {resource}"
|
|
168
|
+
message: "{resource} {id} has been created."
|
|
166
169
|
|
|
167
170
|
tabs:
|
|
168
171
|
addItem: Add a new tab item
|
|
@@ -307,6 +310,7 @@ nav:
|
|
|
307
310
|
clusterNotFound: Cluster { clusterId } not found
|
|
308
311
|
productNotFound: Product { productNotFound } not found
|
|
309
312
|
resourceNotFound: Resource type { resource } not found
|
|
313
|
+
resourceListNotListable: Resource type { resource } cannot be listed
|
|
310
314
|
resourceListNotFound: Resource type { resource } not found, unable to display list
|
|
311
315
|
resourceIdNotFound: Resource { resource } with id { fqid } not found, unable to display resource details
|
|
312
316
|
reload: Reload
|
|
@@ -434,6 +438,7 @@ accountAndKeys:
|
|
|
434
438
|
notAllowed: You do not have permission to manage API Keys
|
|
435
439
|
apiEndpoint: "API Endpoint:"
|
|
436
440
|
copyApiEnpoint: Copy API Endpoint to clipboard
|
|
441
|
+
normanTokenDeprecation: The API Keys feature is being migrated to a new API. Any existing API Keys from the legacy API will continue to work, but new API Keys will be created using the new API.
|
|
437
442
|
add:
|
|
438
443
|
description:
|
|
439
444
|
label: Description
|
|
@@ -459,7 +464,9 @@ accountAndKeys:
|
|
|
459
464
|
month: Months
|
|
460
465
|
year: Years
|
|
461
466
|
scope: Scope
|
|
467
|
+
userPrincipal: User Principal
|
|
462
468
|
noScope: No Scope
|
|
469
|
+
enabled: Token enabled
|
|
463
470
|
info:
|
|
464
471
|
accessKey: Access Key
|
|
465
472
|
secretKey: Secret Key
|
|
@@ -468,7 +475,7 @@ accountAndKeys:
|
|
|
468
475
|
keyCreated: A new API Key has been created
|
|
469
476
|
bearerTokenTip: "Access Key and Secret Key can be sent as the username and password for HTTP Basic auth to authorize requests. You can also combine them to use as a Bearer token:"
|
|
470
477
|
ttlLimitedWarning: The Expiry time for this API Key was reduced due to system configuration
|
|
471
|
-
|
|
478
|
+
expiryOptionsWithNever: Since "auth-token-max-ttl-minutes" is set to <= 0, the API Key will not expire unless the "Automatically expire" option is set to "Custom" and a custom expiry time is set.
|
|
472
479
|
addClusterMemberDialog:
|
|
473
480
|
title: Add Cluster Member
|
|
474
481
|
|
|
@@ -1187,6 +1194,7 @@ catalog:
|
|
|
1187
1194
|
statusFilterCautions:
|
|
1188
1195
|
installation: Installation status cannot be determined with 100% accuracy
|
|
1189
1196
|
upgradeable: Upgradeable status cannot be determined with 100% accuracy
|
|
1197
|
+
appCollectionRepoMissing: The SUSE Application Collection repository is not currently configured. You can add it on the <repoCreate>Repository Create</repoCreate> page.
|
|
1190
1198
|
totalChartsMessage: |-
|
|
1191
1199
|
{count , plural,
|
|
1192
1200
|
=1 { {count} chart in total }
|
|
@@ -1214,6 +1222,7 @@ catalog:
|
|
|
1214
1222
|
repo: repository
|
|
1215
1223
|
category: category
|
|
1216
1224
|
tag: tag
|
|
1225
|
+
isFromSuseAppCoRepository: From SUSE App Collection.
|
|
1217
1226
|
install:
|
|
1218
1227
|
action:
|
|
1219
1228
|
goToUpgrade: Edit / Change Version
|
|
@@ -1328,6 +1337,11 @@ catalog:
|
|
|
1328
1337
|
}. Start by setting some basic information used by {vendor} to manage the App.
|
|
1329
1338
|
nsCreationDescription: "To install the app into a new namespace enter it's name in the Namespace field and select it."
|
|
1330
1339
|
createNamespace: "Namespace <code>{namespace}</code> will be created."
|
|
1340
|
+
requiresImagePullSecret: "This Chart requires an Image Pull Secret in order for images to be succesfully pulled."
|
|
1341
|
+
dontUseDefaultImagePullSecret: "Manually select an Image Pull Secret or create a new one with Username/Password"
|
|
1342
|
+
generatedNewImagePullSecret: "A new Image Pull Secret <b>{ imagePullSecretName }</b> will be generated"
|
|
1343
|
+
generatedImagePullSecretBannerFromPreviousAuth: "A new Image Pull Secret <b>{ imagePullSecretName }</b> will be generated from the Repository secret <b>{ repoAuthenticationName }</b>."
|
|
1344
|
+
usePreviouslyGeneratedImagePullSecretBanner: "Image Pull Secret <b>{ imagePullSecretName }</b> was already created previously from the Repository secret <b>{ repoAuthenticationName }</b> and will be used."
|
|
1331
1345
|
clusterTplVersion:
|
|
1332
1346
|
label: Version
|
|
1333
1347
|
subtext: Select a version of the template
|
|
@@ -1377,11 +1391,21 @@ catalog:
|
|
|
1377
1391
|
rancher-partner-charts: Partners
|
|
1378
1392
|
rancher-rke2-charts: RKE2
|
|
1379
1393
|
rancher-ui-plugins: Rancher Extensions
|
|
1394
|
+
suse-application-collection: SUSE App Collection
|
|
1380
1395
|
|
|
1381
1396
|
target:
|
|
1382
|
-
git:
|
|
1383
|
-
|
|
1384
|
-
|
|
1397
|
+
git:
|
|
1398
|
+
title: Git Repository
|
|
1399
|
+
description: Git repository containing Helm charts or cluster templates
|
|
1400
|
+
http:
|
|
1401
|
+
title: Helm Repository
|
|
1402
|
+
description: HTTP(S) URL pointing to a Helm chart repository index
|
|
1403
|
+
oci:
|
|
1404
|
+
title: OCI Repository
|
|
1405
|
+
description: OCI-compliant registry hosting Helm charts as artifacts
|
|
1406
|
+
suseAppCollection:
|
|
1407
|
+
title: SUSE App Collection
|
|
1408
|
+
description: Curated, enterprise-ready applications from SUSE Application Collection
|
|
1385
1409
|
label: Target
|
|
1386
1410
|
url:
|
|
1387
1411
|
label: Index URL
|
|
@@ -1447,6 +1471,8 @@ changePassword:
|
|
|
1447
1471
|
failedToChange: Failed to change password
|
|
1448
1472
|
failedDeleteKey: Failed to delete key
|
|
1449
1473
|
failedDeleteKeys: Failed to delete keys
|
|
1474
|
+
cannotChange: This user does not have permissions to change their password
|
|
1475
|
+
cannotFetchSelf: This user does not have permissions to get their user information
|
|
1450
1476
|
|
|
1451
1477
|
chartHeading:
|
|
1452
1478
|
overview: Overview
|
|
@@ -1586,7 +1612,7 @@ cluster:
|
|
|
1586
1612
|
nodeLabel:
|
|
1587
1613
|
title: Node Labels
|
|
1588
1614
|
label: Add Label
|
|
1589
|
-
ipv6: "It looks like this cluster uses IPv6 networking: <code>Node Private IP</code> should be set to the cluster's
|
|
1615
|
+
ipv6: "It looks like this cluster uses IPv6 networking: <code>Node Private IP</code> should be set to the cluster's IPv6 address."
|
|
1590
1616
|
registrationCommand:
|
|
1591
1617
|
label: Registration Command
|
|
1592
1618
|
linuxDetail: Run this command on each of the existing Linux machines you want to register.
|
|
@@ -1859,7 +1885,7 @@ cluster:
|
|
|
1859
1885
|
acceleratedNetworking:
|
|
1860
1886
|
label: Accelerated Networking
|
|
1861
1887
|
availabilitySet:
|
|
1862
|
-
label: Availability Set
|
|
1888
|
+
label: Availability Set
|
|
1863
1889
|
description: Availability sets are used to protect applications from hardware failures within an Azure data center.
|
|
1864
1890
|
availabilityZone:
|
|
1865
1891
|
label: Availability Zone
|
|
@@ -1884,6 +1910,7 @@ cluster:
|
|
|
1884
1910
|
label: Location
|
|
1885
1911
|
managedDisks:
|
|
1886
1912
|
label: Use Managed Disks
|
|
1913
|
+
deprecationWarning: 'Azure is retiring unmanaged disk support on March 31, 2026. After this date, VMs using unmanaged disks will be stopped and deallocated. Enable "Use Managed Disks" to avoid service disruption.'
|
|
1887
1914
|
managedDisksSize:
|
|
1888
1915
|
label: Managed Disk Size
|
|
1889
1916
|
nsg:
|
|
@@ -2094,19 +2121,19 @@ cluster:
|
|
|
2094
2121
|
httpTokens: Use tokens for metadata
|
|
2095
2122
|
tagTitle: EC2 Tags
|
|
2096
2123
|
enableIpv6:
|
|
2097
|
-
label: Enable
|
|
2098
|
-
description: "
|
|
2124
|
+
label: Enable Dual-Stack
|
|
2125
|
+
description: "To use dual-stack networking, you will need to update the <a aria-label='scroll to the networking section in cluster configuration' href=\"#networking\">Network Stack Preference Order</a> to <b>DUAL</b> stack. For an IPv6-only cluster, check \"Enable IPv6\" and update the stack preference to <b>IPv6</b>."
|
|
2099
2126
|
ipv6AddressCount:
|
|
2100
2127
|
label: IPv6 Address Count
|
|
2101
2128
|
tooltip: Specifies the number of IPv6 addresses to assign to the network interface
|
|
2102
2129
|
error: IPv6 Address Count must be greater than 0 when using an IPv6 vpc or subnet.
|
|
2103
2130
|
enablePrimaryIpv6:
|
|
2104
|
-
label: Enable Static Primary
|
|
2105
|
-
description: This
|
|
2131
|
+
label: Enable Static Primary IPv6
|
|
2132
|
+
description: This designates the first assigned IPv6 address as the primary address, ensuring a consistent, non-changing IPv6 address for the instance. This option does not control whether IPv6 addresses are assigned.
|
|
2106
2133
|
ipv6AddressOnly:
|
|
2107
|
-
label:
|
|
2134
|
+
label: Enable IPv6
|
|
2108
2135
|
httpProtocolIpv6:
|
|
2109
|
-
label:
|
|
2136
|
+
label: Enable IPv6 endpoint for instance metadata service
|
|
2110
2137
|
ipv6ValidationWarning: When one pool uses an IPv6 or dual-stack subnet/vpc, all pools must use an IPv6 or dual-stack subnet/vpc.
|
|
2111
2138
|
pnap:
|
|
2112
2139
|
serverLocation:
|
|
@@ -2196,6 +2223,7 @@ cluster:
|
|
|
2196
2223
|
tooltip: 'Additional Kubernetes Manifest YAML to be applied to the cluster on startup.'
|
|
2197
2224
|
agentConfig:
|
|
2198
2225
|
tabs:
|
|
2226
|
+
agentsScheduling: Agents Scheduling
|
|
2199
2227
|
cluster: Cluster Agent
|
|
2200
2228
|
fleet: Fleet Agent
|
|
2201
2229
|
groups:
|
|
@@ -2205,13 +2233,19 @@ cluster:
|
|
|
2205
2233
|
podTolerations: Tolerations
|
|
2206
2234
|
podRequestsAndLimits: Requests and Limits
|
|
2207
2235
|
schedulingCustomization: Scheduling Customization
|
|
2236
|
+
agentsScheduling:
|
|
2237
|
+
text: Ensure that cluster- and/or fleet-agent pods are not evicted due to node pressure, resource constraints or scheduler policies When enabled, these settings may be configured in the
|
|
2238
|
+
textLink: Global Settings
|
|
2239
|
+
label: 'Prevent agent pod eviction for:'
|
|
2208
2240
|
subGroups:
|
|
2209
2241
|
podAffinityAnti: Pod Affinity/Anti-Affinity
|
|
2210
2242
|
nodeAffinity: Node Affinity
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2243
|
+
agentsScheduling:
|
|
2244
|
+
cluster: Cluster Agent
|
|
2245
|
+
fleet: Fleet Agent
|
|
2246
|
+
label: Prevent Rancher {agent} pod eviction
|
|
2247
|
+
description: This ensures that the {agent} pod is not evicted due to node pressure, resource constraints or scheduler policies.
|
|
2248
|
+
banner: This feature is currently configured with settings which differ to the default Global Settings. Enable the checkbox below to overwrite the current settings with the default Global Settings.
|
|
2215
2249
|
innerCheckbox: Apply global settings for Priority Class and Pod Disruption Budget
|
|
2216
2250
|
banners:
|
|
2217
2251
|
advanced: These are advanced configuration options. Generally, they should be left as-is.
|
|
@@ -2260,6 +2294,7 @@ cluster:
|
|
|
2260
2294
|
other { {pool_name}: The provided values for {fields} were not found in the list of expected values. This can happen with clusters provisioned outside of Rancher or when options for the provider have changed. }
|
|
2261
2295
|
}
|
|
2262
2296
|
rke1DeprecationMessage: 'Rancher Kubernetes Engine (RKE / RKE1) has reached end of life and these clusters are no longer supported. We recommend replatforming RKE1 clusters to RKE2 to ensure continued support and security updates. Learn more about the transition <a href="https://www.suse.com/support/kb/doc/?id=000021518" target="_blank" rel="noopener noreferrer nofollow">here</a>.'
|
|
2297
|
+
nginxDeprecated: The NGINX controller is deprecated and will be removed in upcoming versions
|
|
2263
2298
|
rke1Unsupported: RKE1 Clusters are no longer supported
|
|
2264
2299
|
|
|
2265
2300
|
architecture:
|
|
@@ -2447,6 +2482,16 @@ cluster:
|
|
|
2447
2482
|
editYamlMachinePool:
|
|
2448
2483
|
title: Save Machine Configurations
|
|
2449
2484
|
body: Machine Configurations define how machines in Pools are deployed.<br><br> They will be saved upfront to ensure valid Cluster YAML can be saved.
|
|
2485
|
+
ipv6Warning:
|
|
2486
|
+
title: Verify IPv6 Settings
|
|
2487
|
+
body: The machine pools in this cluster are configured to use IPv6 networks, but the cluster's networking settings may not support it.
|
|
2488
|
+
stackPrefInvalid: The <a href="{docsBase}/reference-guides/cluster-configuration/rancher-server-configuration/rke2-cluster-configuration#stack-preference" target="_blank" rel="noopener noreferrer nofollow" aria-label="rke2 documentation for the stack preference setting">Stack Preference</a> should be set to "Dual" or "IPv6" to use dual-stack or IPv6-only networking, respectively.
|
|
2489
|
+
flannelMasqInvalid: K3s uses the Flannel cni plugin by default. Enabling Flannel Masq is generally advised when using IPv6 networking.
|
|
2490
|
+
cidrInvalidRke2: To enable dual-stack networking in RKE2 clusters, you must define valid dual-stack cluster and service CIDR ranges.
|
|
2491
|
+
cidrInvalidK3s: To enable dual-stack or IPv6-only networking in K3s clusters, you must define valid dual-stack or IPv6 cluster and service CIDR ranges.
|
|
2492
|
+
readMoreK3s: <a href="https://docs.k3s.io/networking/basic-network-options#dual-stack-ipv4--ipv6-networking" target="_blank" rel="noopener noreferrer nofollow" aria-label="k3s dual-stack networking documentation">Learn more about K3s networking</a>
|
|
2493
|
+
readMoreRke2: <a href="https://docs.rke2.io/networking/basic_network_options#ipv6-setup" target="_blank" rel="noopener noreferrer nofollow" aria-label="rke2 ipv6 networking documentation">Learn more about RKE2 networking</a>
|
|
2494
|
+
verifySettings: 'Before continuing, please verify the following settings:'
|
|
2450
2495
|
snapshots:
|
|
2451
2496
|
suffix: Snapshots per node
|
|
2452
2497
|
s3Suffix: Snapshots
|
|
@@ -2573,12 +2618,11 @@ cluster:
|
|
|
2573
2618
|
label: Endpoint CA Cert
|
|
2574
2619
|
stackPreference:
|
|
2575
2620
|
label: Stack Preference
|
|
2576
|
-
description:
|
|
2621
|
+
description: Stack preference determines the networking stack used by the cluster. IPv4 uses <code>127.0.0.1</code>, Dual-Stack uses <code>localhost</code> and IPv6 uses <code>[::1]</code>. Read more about <a href="https://ranchermanager.docs.rancher.com/reference-guides/cluster-configuration/rancher-server-configuration/rke2-cluster-configuration#stack-preference" target="_blank" rel="noopener noreferrer nofollow" >RKE2</a> and <a href="https://ranchermanager.docs.rancher.com/reference-guides/cluster-configuration/rancher-server-configuration/k3s-cluster-configuration#stack-preference" target="_blank" rel="noopener noreferrer nofollow" >K3s</a> networking in the Rancher documentation.
|
|
2577
2622
|
options:
|
|
2578
2623
|
ipv4: IPv4
|
|
2579
2624
|
ipv6: IPv6
|
|
2580
|
-
dual: Dual
|
|
2581
|
-
errorNeedsIpv6: Stack preference must be set to dual-stack or ipv6 if using ipv6 networking in nodepools.
|
|
2625
|
+
dual: Dual
|
|
2582
2626
|
k3s:
|
|
2583
2627
|
flannelMasq:
|
|
2584
2628
|
title: IPv6 NAT
|
|
@@ -2607,6 +2651,48 @@ cluster:
|
|
|
2607
2651
|
rke1:
|
|
2608
2652
|
local: local
|
|
2609
2653
|
s3: s3
|
|
2654
|
+
ingress:
|
|
2655
|
+
title: Ingress
|
|
2656
|
+
enableIngress: Install Ingress controller to enable external routing
|
|
2657
|
+
nginx:
|
|
2658
|
+
header: Ingress-NGINX
|
|
2659
|
+
content: Choose this only if your workloads are not yet ready for Traefik.
|
|
2660
|
+
dual:
|
|
2661
|
+
header: Dual Mode
|
|
2662
|
+
content: Use this to safely test and migrate traffic from Ingress-NGINX to Traefik.
|
|
2663
|
+
traefik:
|
|
2664
|
+
header: Traefik
|
|
2665
|
+
content: The new default provider for high-performance routing and modern feature support.
|
|
2666
|
+
recommended: Recommended
|
|
2667
|
+
legacy: Legacy
|
|
2668
|
+
migration: Migration
|
|
2669
|
+
learnMore:
|
|
2670
|
+
label: Learn more
|
|
2671
|
+
showAdvanced: Show advanced configuration
|
|
2672
|
+
hideAdvanced: Hide advanced configuration
|
|
2673
|
+
configurationOptions:
|
|
2674
|
+
title: Configuration Options
|
|
2675
|
+
compatibilityMode: Enable Traefik Ingress NGINX compatibility mode for annotations
|
|
2676
|
+
traefik:
|
|
2677
|
+
http: Traefik HTTP
|
|
2678
|
+
https: Traefik HTTPS
|
|
2679
|
+
nginx:
|
|
2680
|
+
http: Ingress-NGINX HTTP
|
|
2681
|
+
https: Ingress-NGINX HTTPS
|
|
2682
|
+
banners:
|
|
2683
|
+
transitioning:
|
|
2684
|
+
label: Rancher is transitioning to Traefik as the default provider. While Ingress-NGINX remains available for migration purposes, we recommend moving workloads to Traefik to ensure long-term compatibility and support.
|
|
2685
|
+
disabled:
|
|
2686
|
+
label: Without an Ingress controller, services in this cluster will not be reachable via external URLs or hostnames. You will need to manually configure an alternative routing solution to expose your workloads.
|
|
2687
|
+
selected:
|
|
2688
|
+
ingress-nginx:
|
|
2689
|
+
label: Ingress-NGINX is now deprecated and will be removed in a future release. To avoid service interruptions, please begin migrating your Ingress resources to Traefik. Please review our <docsUrl>migration documentation</docsUrl>.
|
|
2690
|
+
traefik:
|
|
2691
|
+
label: Before switching to Traefik, please review our <docsUrl>migration documentation</docsUrl> to ensure your Ingress resources are updated to support Traefik’s configuration requirements.
|
|
2692
|
+
dual:
|
|
2693
|
+
label: Please review our <docsUrl>migration documentation</docsUrl> to ensure your current workloads and annotations are compatible. Taking this step now helps prevent unexpected routing issues during the transition.
|
|
2694
|
+
validation:
|
|
2695
|
+
portsMatch: Traefik and Ingress-NGINX ports cannot match
|
|
2610
2696
|
tabs:
|
|
2611
2697
|
ace: Authorized Endpoint
|
|
2612
2698
|
addOnAdditionalManifest: Additional Manifest
|
|
@@ -2635,6 +2721,8 @@ cluster:
|
|
|
2635
2721
|
v2: RKE2/K3s
|
|
2636
2722
|
validation:
|
|
2637
2723
|
iamInstanceProfileName: If the Amazon cloud provider is selected the "IAM Instance Profile Name" must be defined for each Machine Pool
|
|
2724
|
+
capi:
|
|
2725
|
+
notSupported: Managing clusters provisioned using CAPI infrastructure providers via the UI is currently limited to Rancher Turtles provisioned clusters.
|
|
2638
2726
|
|
|
2639
2727
|
clusterIndexPage:
|
|
2640
2728
|
hardwareResourceGauge:
|
|
@@ -2747,7 +2835,7 @@ drivers:
|
|
|
2747
2835
|
kontainer:
|
|
2748
2836
|
title: Cluster Drivers
|
|
2749
2837
|
emberDeprecationMessage: 'Support for UI Plugins (based on Ember) for cluster and node drivers was deprecated in Rancher 2.11.0 and will be removed in a future release. These need to be migrated to the new <a href="https://extensions.rancher.io" target="_blank" rel="noopener noreferrer nofollow">UI Extensions framework</a>.'
|
|
2750
|
-
|
|
2838
|
+
refreshError: 'Error refreshing cluster drivers: {error}'
|
|
2751
2839
|
node:
|
|
2752
2840
|
title: Node Drivers
|
|
2753
2841
|
add:
|
|
@@ -3112,6 +3200,7 @@ fleet:
|
|
|
3112
3200
|
label: Authentication
|
|
3113
3201
|
git: Git Authentication
|
|
3114
3202
|
helm: Helm Authentication
|
|
3203
|
+
githubdotcomPasswordBanner: 'GitHub no longer supports password authentication for repositories. Please enter a personal access token with the required permissions instead of your GitHub password.'
|
|
3115
3204
|
caBundle:
|
|
3116
3205
|
label: Certificates
|
|
3117
3206
|
placeholder: "Paste in one or more certificates, starting with -----BEGIN CERTIFICATE----"
|
|
@@ -3636,6 +3725,71 @@ import:
|
|
|
3636
3725
|
other {# Resources}
|
|
3637
3726
|
}
|
|
3638
3727
|
|
|
3728
|
+
auditPolicy:
|
|
3729
|
+
active: Active
|
|
3730
|
+
inactive: Inactive
|
|
3731
|
+
reasons:
|
|
3732
|
+
PolicyNotYetActivated: Not yet activated
|
|
3733
|
+
PolicyIsActive: Active
|
|
3734
|
+
PolicyIsInvalid: Invalid
|
|
3735
|
+
PolicyWasDisabled: Disabled
|
|
3736
|
+
general:
|
|
3737
|
+
title: General
|
|
3738
|
+
enabled:
|
|
3739
|
+
label: Enabled
|
|
3740
|
+
title: Enabled
|
|
3741
|
+
checkbox: Enables this audit policy
|
|
3742
|
+
verbosity:
|
|
3743
|
+
label: Log Verbosity
|
|
3744
|
+
title: Log Verbosity
|
|
3745
|
+
banner: Audit Log Verbosity and install time Audit Log settings are additive.
|
|
3746
|
+
level:
|
|
3747
|
+
0: 0 - Log request and response metadata
|
|
3748
|
+
1: 1 - Log request and response headers
|
|
3749
|
+
2: 2 - Log request body
|
|
3750
|
+
3: 3 - Log response body
|
|
3751
|
+
title: Log Levels
|
|
3752
|
+
label: Level
|
|
3753
|
+
tooltip: Each log level is cumulative, higher log levels include the data from lower levels. Each log entry contains both request and response information.
|
|
3754
|
+
requestResponse:
|
|
3755
|
+
tooltip: Override the Log Level and explicitly include Headers / Body
|
|
3756
|
+
request:
|
|
3757
|
+
title: Request
|
|
3758
|
+
requestHeaders: Request Headers
|
|
3759
|
+
requestBody: Request Body
|
|
3760
|
+
response:
|
|
3761
|
+
title: Response
|
|
3762
|
+
responseHeaders: Response Headers
|
|
3763
|
+
responseBody: Response Body
|
|
3764
|
+
filters:
|
|
3765
|
+
add: Add Filter
|
|
3766
|
+
title: Filters
|
|
3767
|
+
action:
|
|
3768
|
+
title: Action
|
|
3769
|
+
label: Action
|
|
3770
|
+
allow: Allow
|
|
3771
|
+
deny: Deny
|
|
3772
|
+
placeholder: Allow/Deny
|
|
3773
|
+
requestURI:
|
|
3774
|
+
title: Request URI
|
|
3775
|
+
label: Request URI
|
|
3776
|
+
placeholder: e.g. /foo/.*
|
|
3777
|
+
additionalRedactions:
|
|
3778
|
+
title: Additional Redactions
|
|
3779
|
+
headers:
|
|
3780
|
+
title: Headers
|
|
3781
|
+
label: Headers
|
|
3782
|
+
placeholder: e.g. Cache.*
|
|
3783
|
+
add: Add Header
|
|
3784
|
+
paths:
|
|
3785
|
+
title: Paths
|
|
3786
|
+
label: Paths
|
|
3787
|
+
tooltip: Paths redacts information from request and response bodies based on json path expressions
|
|
3788
|
+
placeholder: e.g. $.gitCommit
|
|
3789
|
+
add: Add Path
|
|
3790
|
+
error:
|
|
3791
|
+
enableOrDisable: "{flag, select, enable {Error when enabling - {id}} disable {Error when disabling - {id}} other {Error - {id}}}"
|
|
3792
|
+
|
|
3639
3793
|
ingress:
|
|
3640
3794
|
description: Ingresses route incoming traffic from the internet to Services within the cluster based on the hostname and path specified in the request. You can expose multiple Services on the same external IP address and port.
|
|
3641
3795
|
certificates:
|
|
@@ -5712,9 +5866,14 @@ promptForceRemove:
|
|
|
5712
5866
|
|
|
5713
5867
|
promptScaleMachineDown:
|
|
5714
5868
|
attemptingToRemove: "You are attempting to delete {count} {type}"
|
|
5869
|
+
attemptingToScaleDown: "You are attempting to scale down {type}"
|
|
5715
5870
|
retainedMachine1: At least one Machine must exist for roles Control Plane and Etcd.
|
|
5716
5871
|
retainedMachine2: <b>{ name }</b> will remain
|
|
5717
|
-
|
|
5872
|
+
scaling: |-
|
|
5873
|
+
{count, plural,
|
|
5874
|
+
=1 {This machine pool is still reconciling. A different node may be deleted instead of the one you selected. It’s best to wait until reconciliation finishes.<br> Do you still want to mark this node for deletion?}
|
|
5875
|
+
other {At least one of these machine pools is still reconciling. Different nodes may be deleted instead of the ones you selected. It’s best to wait until reconciliation finishes.<br> Do you still want to mark these nodes for deletion?}
|
|
5876
|
+
}
|
|
5718
5877
|
promptSlo:
|
|
5719
5878
|
title: "Log out"
|
|
5720
5879
|
text: "Log out of only Rancher, or all {name} applications."
|
|
@@ -5932,6 +6091,9 @@ rbac:
|
|
|
5932
6091
|
label: Login Access
|
|
5933
6092
|
clustertemplaterevisions-create:
|
|
5934
6093
|
label: Create RKE Template Revisions
|
|
6094
|
+
proxy-endpoints-manage:
|
|
6095
|
+
label: Manage Rancher Proxy
|
|
6096
|
+
description: Allows the user to manage settings for proxying HTTP requests via Rancher
|
|
5935
6097
|
errors:
|
|
5936
6098
|
escalation: You cannot assign Global Permissions that are higher than your own. Please verify the permissions you are attempting to assign.
|
|
5937
6099
|
|
|
@@ -6074,6 +6236,13 @@ secret:
|
|
|
6074
6236
|
warnings:
|
|
6075
6237
|
expiring: "{count} {count, plural, =1 {Certificate expires soon} other {Certificates expire soon}}"
|
|
6076
6238
|
expired: "{count} {count, plural, =1 {Certificate has expired} other {Certificates have expired}}"
|
|
6239
|
+
projectScoped:
|
|
6240
|
+
tooltip:
|
|
6241
|
+
source: "Project Scoped Secret (for Project \"{project}\" in cluster \"{cluster}\")"
|
|
6242
|
+
copy: "Managed via Project Scoped Secret (\"{secret}\" in Project \"{project}\")"
|
|
6243
|
+
origin:
|
|
6244
|
+
source: "Project Secret"
|
|
6245
|
+
copy: "Via Project Secret"
|
|
6077
6246
|
data: Data
|
|
6078
6247
|
registry:
|
|
6079
6248
|
address: Registry
|
|
@@ -6163,6 +6332,7 @@ secret:
|
|
|
6163
6332
|
|
|
6164
6333
|
selectOrCreateAuthSecret:
|
|
6165
6334
|
label: Authentication
|
|
6335
|
+
imagePullSecret: Image Pull Secret
|
|
6166
6336
|
options:
|
|
6167
6337
|
none: None
|
|
6168
6338
|
basic: HTTP Basic Auth
|
|
@@ -6178,6 +6348,7 @@ selectOrCreateAuthSecret:
|
|
|
6178
6348
|
basic:
|
|
6179
6349
|
username: Username
|
|
6180
6350
|
password: Password
|
|
6351
|
+
passwordPersonalAccessToken: Password/Personal Access Token
|
|
6181
6352
|
rke:
|
|
6182
6353
|
info: "An RKE Auth Config secret contains the username and password concatenated and base64 encoded into the secret's 'auth' key"
|
|
6183
6354
|
namespaceGroup: "Namespace: {name}"
|
|
@@ -6186,6 +6357,8 @@ selectOrCreateAuthSecret:
|
|
|
6186
6357
|
createBasic: Create an HTTP Basic Auth Secret
|
|
6187
6358
|
createS3: Create an S3-Compatible Auth Secret
|
|
6188
6359
|
createRKE: Create an RKE Auth Config Secret
|
|
6360
|
+
createImagePullSecretBasedOnAuth: Create an Image Pull Secret based on Authentication Secret
|
|
6361
|
+
createImagePullSecret: Create a new Image Pull Secret with new Username/Password
|
|
6189
6362
|
|
|
6190
6363
|
serviceAccount:
|
|
6191
6364
|
automount: Automount Service Account Token
|
|
@@ -6332,6 +6505,7 @@ setup:
|
|
|
6332
6505
|
useRandom: Use a randomly generated password
|
|
6333
6506
|
copyRandom: Copy random password to clipboard
|
|
6334
6507
|
welcome: Welcome to {vendor}!
|
|
6508
|
+
setup: Setup
|
|
6335
6509
|
|
|
6336
6510
|
sortableTable:
|
|
6337
6511
|
ariaLabel:
|
|
@@ -6683,6 +6857,7 @@ storageClass:
|
|
|
6683
6857
|
tooltip: By default the default storage class on the host Harvester cluster is used.
|
|
6684
6858
|
|
|
6685
6859
|
tableHeaders:
|
|
6860
|
+
isLegacy: Legacy
|
|
6686
6861
|
assuredConcurrencyShares: Assured Concurrency Shares
|
|
6687
6862
|
autoscaler: Autoscaler
|
|
6688
6863
|
accessKey: Access Key
|
|
@@ -6842,6 +7017,7 @@ tableHeaders:
|
|
|
6842
7017
|
reclaimPolicy: Reclaim Policy
|
|
6843
7018
|
registrationNamespace: Registration Namespace
|
|
6844
7019
|
repo: Repo
|
|
7020
|
+
repoType: Repo Type
|
|
6845
7021
|
repositories: Repositories
|
|
6846
7022
|
repoName: Repository Name
|
|
6847
7023
|
reposReady: Git Repos Ready
|
|
@@ -6864,10 +7040,8 @@ tableHeaders:
|
|
|
6864
7040
|
selector: Selector
|
|
6865
7041
|
secrets: Secrets
|
|
6866
7042
|
secret:
|
|
6867
|
-
|
|
6868
|
-
|
|
6869
|
-
project-scoped: Project Secret
|
|
6870
|
-
project-scoped-tooltip: This Project Scoped Secret will create matching Secrets in the Namespaces it contains
|
|
7043
|
+
origin: Origin
|
|
7044
|
+
originTooltip: "Shows if a secret has been created or managed via another Project Scoped Secret. Read the Project Scoped Secret documentation to learn more about this Rancher concept"
|
|
6871
7045
|
schedule: Schedule
|
|
6872
7046
|
service: Service
|
|
6873
7047
|
serviceAccounts: Service Accounts
|
|
@@ -7881,6 +8055,7 @@ typeDescription:
|
|
|
7881
8055
|
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.
|
|
7882
8056
|
group.principal: Assigning global roles to a group only works with external auth providers that support groups. Local authorization does not support groups.
|
|
7883
8057
|
management.cattle.io.oidcclient: Here you can add applications to Rancher's single sign-on identity provider
|
|
8058
|
+
auditlog.cattle.io.auditpolicy: Define rules that determine which Rancher API events are logged and the level of detail they contain.
|
|
7884
8059
|
|
|
7885
8060
|
typeLabel:
|
|
7886
8061
|
management.cattle.io.oidcclient: |-
|
|
@@ -8033,6 +8208,11 @@ typeLabel:
|
|
|
8033
8208
|
one { Resource Quota }
|
|
8034
8209
|
other { Resource Quotas }
|
|
8035
8210
|
}
|
|
8211
|
+
auditlog.cattle.io.auditpolicy: |-
|
|
8212
|
+
{count, plural,
|
|
8213
|
+
one { Audit Log Policy }
|
|
8214
|
+
other { Audit Log Policies }
|
|
8215
|
+
}
|
|
8036
8216
|
# pruh-mee-thee-eyes https://www.prometheus.io/docs/introduction/faq/#what-is-the-plural-of-prometheus
|
|
8037
8217
|
monitoring.coreos.com.prometheus: |-
|
|
8038
8218
|
{count, plural,
|
|
@@ -8617,6 +8797,10 @@ advancedSettings:
|
|
|
8617
8797
|
moreActions: More actions for setting - { setting }
|
|
8618
8798
|
label: Edit Setting
|
|
8619
8799
|
changeSetting: "Change Setting:"
|
|
8800
|
+
agentConfigBanner:
|
|
8801
|
+
text: Editing this value will not change the value set in running clusters! In order to update a running cluster to use the new values, edit the cluster and click on “Apply global settings for Priority Class and Pod Disruption Budget” in the {agent} Agent configuration tab.
|
|
8802
|
+
cluster: Cluster
|
|
8803
|
+
fleet: Fleet
|
|
8620
8804
|
trueOption: "True"
|
|
8621
8805
|
falseOption: "False"
|
|
8622
8806
|
value: Value
|
|
@@ -8917,6 +9101,13 @@ resourceQuota:
|
|
|
8917
9101
|
namespace: 'This Namespace:'
|
|
8918
9102
|
available: 'Available:'
|
|
8919
9103
|
max: 'Total:'
|
|
9104
|
+
ariaLabel:
|
|
9105
|
+
grid: Resource Quotas
|
|
9106
|
+
resourceType: 'Resource Type, row {row}'
|
|
9107
|
+
resourceIdentifier: 'Resource Identifier, row {row}'
|
|
9108
|
+
projectLimit: 'Project Limit, row {row}'
|
|
9109
|
+
namespaceDefaultLimit: 'Namespace Default Limit, row {row}'
|
|
9110
|
+
remove: 'Remove {identifier}'
|
|
8920
9111
|
customLinks:
|
|
8921
9112
|
displayTitle: Links
|
|
8922
9113
|
label: Home Links
|
|
@@ -9172,6 +9363,7 @@ component:
|
|
|
9172
9363
|
podsCard:
|
|
9173
9364
|
title: Pods
|
|
9174
9365
|
ariaResourceName: pods
|
|
9366
|
+
noPods: There are no pods currently present.
|
|
9175
9367
|
jobsCard:
|
|
9176
9368
|
title: Jobs
|
|
9177
9369
|
ariaResourceName: jobs
|
|
@@ -9182,7 +9374,7 @@ component:
|
|
|
9182
9374
|
events: Events
|
|
9183
9375
|
extrasCard:
|
|
9184
9376
|
title: Extras
|
|
9185
|
-
message: 'Consider installing additional <
|
|
9377
|
+
message: 'Consider installing additional <extensionsLink>extensions</extensionsLink> and / or <clusterToolsLink>cluster tools</clusterToolsLink> to enrich your Rancher experience.'
|
|
9186
9378
|
scaler:
|
|
9187
9379
|
ariaLabel:
|
|
9188
9380
|
increase: Increase {resourceName}
|
|
@@ -97,7 +97,7 @@ const menuOptions = () => {
|
|
|
97
97
|
<template>
|
|
98
98
|
<rc-dropdown-menu
|
|
99
99
|
:button-variant="buttonVariant || 'link'"
|
|
100
|
-
:button-size="buttonSize || '
|
|
100
|
+
:button-size="buttonSize || 'medium'"
|
|
101
101
|
:button-aria-label="buttonAriaLabel"
|
|
102
102
|
:dropdown-aria-label="dropdownAriaLabel"
|
|
103
103
|
:options="menuOptions()"
|
|
@@ -776,7 +776,9 @@ export default {
|
|
|
776
776
|
class="resource-container cru__content"
|
|
777
777
|
:style="[minHeight ? { 'min-height': minHeight } : {}]"
|
|
778
778
|
>
|
|
779
|
-
<slot
|
|
779
|
+
<slot name="single">
|
|
780
|
+
<slot />
|
|
781
|
+
</slot>
|
|
780
782
|
</div>
|
|
781
783
|
<slot name="form-footer">
|
|
782
784
|
<CruResourceFooter
|