@rancher/shell 0.3.4 → 0.3.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/app.scss +1 -1
- package/assets/styles/fonts/_fontstack.scss +11 -11
- package/assets/styles/vendor/vue-js-modal.scss +3 -3
- package/assets/translations/en-us.yaml +92 -22
- package/assets/translations/zh-hans.yaml +84 -15
- package/babel.config.js +13 -0
- package/chart/gatekeeper.vue +77 -0
- package/chart/istio.vue +108 -111
- package/chart/logging/index.vue +13 -4
- package/chart/monitoring/index.vue +15 -5
- package/chart/monitoring/steps/uninstall-v1.vue +2 -2
- package/chart/rancher-backup/index.vue +10 -3
- package/cloud-credential/aws.vue +1 -1
- package/cloud-credential/digitalocean.vue +1 -1
- package/cloud-credential/gcp.vue +1 -1
- package/cloud-credential/generic.vue +2 -2
- package/cloud-credential/linode.vue +1 -1
- package/cloud-credential/pnap.vue +1 -1
- package/components/ActionMenu.vue +3 -4
- package/components/AssignTo.vue +1 -1
- package/components/AsyncButton.vue +1 -1
- package/components/BannerGraphic.vue +1 -1
- package/components/ButtonDropdown.vue +2 -3
- package/components/ChartPsp.vue +76 -0
- package/components/CruResource.vue +6 -2
- package/components/DashboardMetrics.vue +12 -10
- package/components/DetailText.vue +1 -1
- package/components/DisableAuthProviderModal.vue +1 -1
- package/components/EmberPage.vue +1 -1
- package/components/EtcdInfoBanner.vue +5 -4
- package/components/ExplorerMembers.vue +1 -1
- package/components/ExplorerProjectsNamespaces.vue +14 -1
- package/components/FileDiff.vue +6 -7
- package/components/GrafanaDashboard.vue +18 -21
- package/components/LazyImage.vue +10 -12
- package/components/LogItem.vue +1 -1
- package/components/Markdown.vue +1 -1
- package/components/PromptRemove.vue +2 -2
- package/components/PromptRestore.vue +1 -1
- package/components/ResourceDetail/Masthead.vue +16 -0
- package/components/ResourceDetail/index.vue +21 -4
- package/components/ResourceList/index.vue +1 -1
- package/components/ResourceTable.vue +4 -1
- package/components/SingleClusterInfo.vue +2 -2
- package/components/SortableTable/THead.vue +1 -1
- package/components/SortableTable/index.vue +5 -2
- package/components/__tests__/AsyncButton.test.ts +3 -1
- package/components/__tests__/ChartPsp.test.ts +75 -0
- package/components/__tests__/CruResource.test.ts +3 -1
- package/components/auth/Principal.vue +1 -1
- package/components/fleet/FleetBundles.vue +3 -1
- package/components/fleet/FleetClusters.vue +1 -2
- package/components/fleet/FleetIntro.vue +9 -1
- package/components/fleet/FleetNoWorkspaces.vue +62 -0
- package/components/fleet/FleetSummary.vue +7 -1
- package/components/form/LabeledSelect.vue +14 -11
- package/components/form/MatchExpressions.vue +17 -2
- package/components/form/NameNsDescription.vue +31 -45
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +5 -1
- package/components/form/ServiceNameSelect.vue +1 -1
- package/components/form/SimpleSecretSelector.vue +9 -9
- package/components/form/__tests__/LabeledSelect.test.ts +138 -0
- package/components/form/__tests__/NameNsDescription.ts +32 -0
- package/components/formatter/InternalExternalIP.vue +6 -0
- package/components/formatter/InvolvedObjectLink.vue +54 -0
- package/components/formatter/Link.vue +20 -4
- package/components/formatter/LinkName.vue +6 -1
- package/components/formatter/ServiceTargets.vue +1 -1
- package/components/nav/Group.vue +2 -2
- package/components/nav/NamespaceFilter.vue +15 -11
- package/components/nav/TopLevelMenu.vue +2 -4
- package/components/nav/Type.vue +1 -1
- package/components/nav/WorkspaceSwitcher.vue +46 -5
- package/config/labels-annotations.js +17 -0
- package/config/product/auth.js +3 -2
- package/config/product/explorer.js +11 -4
- package/config/product/fleet.js +2 -0
- package/config/router.js +414 -0
- package/config/table-headers.js +10 -2
- package/config/types.js +11 -8
- package/config/uiplugins.js +30 -0
- package/content/docs/en-us/whats-new.md +10 -0
- package/content/docs/zh-hans/whats-new.md +11 -1
- package/core/plugin-routes.ts +23 -0
- package/creators/app/app.package.json +2 -1
- package/creators/app/files/.eslintrc.js +1 -1
- package/creators/app/files/babel.config.js +1 -18
- package/creators/app/files/vue.config.js +7 -0
- package/creators/app/init +5 -5
- package/creators/pkg/files/.github/workflows/build-extension.yml +111 -0
- package/creators/pkg/init +35 -4
- package/creators/update/init +1 -1
- package/detail/constraints.gatekeeper.sh.constraint.vue +20 -10
- package/detail/fleet.cattle.io.gitrepo.vue +19 -11
- package/detail/harvesterhci.io.management.cluster.vue +3 -3
- package/detail/provisioning.cattle.io.cluster.vue +54 -12
- package/detail/workload/index.vue +3 -3
- package/dialog/AddClusterMemberDialog.vue +1 -1
- package/dialog/AddProjectMemberDialog.vue +2 -2
- package/dialog/AddonConfigConfirmationDialog.vue +27 -15
- package/dialog/DiagnosticTimingsDialog.vue +1 -1
- package/dialog/ForceMachineRemoveDialog.vue +1 -1
- package/dialog/GenericPrompt.vue +18 -6
- package/dialog/RotateEncryptionKeyDialog.vue +1 -1
- package/dialog/SaveAsRKETemplateDialog.vue +1 -1
- package/dialog/ScaleMachineDownDialog.vue +1 -1
- package/edit/auth/github.vue +8 -8
- package/edit/auth/googleoauth.vue +5 -5
- package/edit/auth/ldap/index.vue +1 -1
- package/edit/auth/oidc.vue +1 -1
- package/edit/auth/saml.vue +1 -1
- package/edit/cis.cattle.io.clusterscan.vue +1 -1
- package/edit/fleet.cattle.io.clustergroup.vue +6 -4
- package/edit/fleet.cattle.io.gitrepo.vue +16 -3
- package/edit/helm.cattle.io.projecthelmchart.vue +5 -1
- package/edit/management.cattle.io.fleetworkspace.vue +141 -6
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +4 -1
- package/edit/management.cattle.io.setting.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +2 -2
- package/edit/monitoring.coreos.com.receiver/tls.vue +18 -18
- package/edit/monitoring.coreos.com.receiver/types/webhook.banner.vue +4 -4
- package/edit/monitoring.coreos.com.receiver/types/webhook.vue +1 -1
- package/edit/namespace.vue +2 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +126 -45
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +10 -0
- package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +202 -2
- package/edit/provisioning.cattle.io.cluster/rke2.vue +248 -84
- package/edit/resources.cattle.io.backup.vue +1 -1
- package/edit/service.vue +1 -1
- package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +2 -2
- package/edit/workload/__tests__/Job.test.ts +3 -1
- package/edit/workload/index.vue +8 -3
- package/edit/workload/mixins/workload.js +16 -0
- package/layouts/default.vue +7 -3
- package/list/fleet.cattle.io.bundle.vue +6 -3
- package/list/fleet.cattle.io.clusterregistrationtoken.vue +3 -1
- package/list/fleet.cattle.io.gitrepo.vue +44 -5
- package/list/management.cattle.io.fleetworkspace.vue +45 -0
- package/list/node.vue +69 -16
- package/list/provisioning.cattle.io.cluster.vue +30 -1
- package/machine-config/azure.vue +97 -38
- package/middleware/authenticated.js +34 -0
- package/mixins/chart.js +73 -2
- package/mixins/resource-fetch.js +2 -2
- package/models/apps.statefulset.js +28 -0
- package/models/cluster/node.js +23 -2
- package/models/cluster.x-k8s.io.machine.js +4 -2
- package/models/clusterroletemplatebinding.js +7 -0
- package/models/constraints.gatekeeper.sh.constraint.js +9 -0
- package/models/fleet.cattle.io.cluster.js +19 -10
- package/models/fleet.cattle.io.gitrepo.js +7 -2
- package/models/management.cattle.io.cluster.js +1 -1
- package/models/management.cattle.io.fleetworkspace.js +12 -0
- package/models/management.cattle.io.gitreporestriction.js +5 -0
- package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.js +3 -0
- package/models/provisioning.cattle.io.cluster.js +7 -5
- package/nuxt/App.js +210 -0
- package/nuxt/axios.js +186 -0
- package/nuxt/client.js +817 -0
- package/nuxt/components/nuxt-build-indicator.vue +143 -0
- package/nuxt/components/nuxt-child.js +122 -0
- package/nuxt/components/nuxt-error.vue +98 -0
- package/nuxt/components/nuxt-link.client.js +98 -0
- package/nuxt/components/nuxt-link.server.js +16 -0
- package/nuxt/components/nuxt-loading.vue +154 -0
- package/nuxt/components/nuxt.js +101 -0
- package/nuxt/cookie-universal-nuxt.js +9 -0
- package/nuxt/empty.js +1 -0
- package/nuxt/index.js +365 -0
- package/nuxt/jsonp.js +82 -0
- package/nuxt/loading.html +39 -0
- package/nuxt/middleware.js +12 -0
- package/nuxt/mixins/fetch.client.js +90 -0
- package/nuxt/mixins/fetch.server.js +69 -0
- package/nuxt/portal-vue.js +4 -0
- package/nuxt/server.js +312 -0
- package/nuxt/store.js +178 -0
- package/nuxt/utils.js +630 -0
- package/nuxt/views/app.template.html +9 -0
- package/nuxt/views/error.html +23 -0
- package/package.json +5 -9
- package/pages/auth/setup.vue +2 -2
- package/pages/c/_cluster/apps/charts/__tests__/install.helper.test.ts +33 -0
- package/pages/c/_cluster/apps/charts/chart.vue +4 -4
- package/pages/c/_cluster/apps/charts/install.helpers.js +26 -0
- package/pages/c/_cluster/apps/charts/install.vue +40 -66
- package/pages/c/_cluster/explorer/EventsTable.vue +5 -19
- package/pages/c/_cluster/explorer/index.vue +29 -25
- package/pages/c/_cluster/explorer/tools/index.vue +8 -8
- package/pages/c/_cluster/fleet/index.vue +95 -34
- package/pages/c/_cluster/gatekeeper/index.vue +1 -1
- package/pages/c/_cluster/istio/index.vue +5 -5
- package/pages/c/_cluster/manager/cloudCredential/index.vue +1 -1
- package/pages/c/_cluster/monitoring/index.vue +7 -0
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +8 -8
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +20 -7
- package/pages/c/_cluster/uiplugins/index.vue +49 -17
- package/pages/home.vue +9 -4
- package/pages/index.vue +10 -1
- package/plugins/clean-html-directive.js +31 -0
- package/plugins/dashboard-store/actions.js +32 -9
- package/plugins/dashboard-store/mutations.js +5 -2
- package/plugins/dashboard-store/resource-class.js +8 -1
- package/plugins/steve/mutations.js +3 -2
- package/plugins/steve/steve-description-class.js +5 -1
- package/plugins/steve/subscribe.js +63 -54
- package/plugins/steve-create-worker.js +14 -0
- package/promptRemove/management.cattle.io.globalrole.vue +2 -2
- package/promptRemove/management.cattle.io.project.vue +2 -2
- package/promptRemove/management.cattle.io.roletemplate.vue +2 -2
- package/promptRemove/pod.vue +1 -1
- package/public/index.html +65 -0
- package/rancher-components/components/Banner/Banner.test.ts +9 -1
- package/rancher-components/components/Banner/Banner.vue +1 -1
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +2 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +1 -1
- package/scripts/build-pkg.sh +1 -0
- package/scripts/clean +6 -0
- package/scripts/extension/bundle +58 -0
- package/scripts/extension/helmpatch +89 -0
- package/scripts/extension/publish +314 -0
- package/scripts/test-plugins-build.sh +4 -0
- package/store/__tests__/index.test.ts +110 -0
- package/store/index.js +145 -58
- package/store/type-map.js +5 -1
- package/tsconfig.default.json +36 -0
- package/tsconfig.json +24 -0
- package/types/shell/index.d.ts +420 -343
- package/utils/__tests__/string.test.ts +12 -0
- package/utils/auth.js +65 -0
- package/utils/monitoring.js +2 -1
- package/utils/position.js +5 -8
- package/utils/router.scrollBehavior.js +80 -0
- package/utils/select.js +1 -3
- package/utils/socket.js +1 -0
- package/utils/string.js +13 -0
- package/utils/time.js +9 -0
- package/vue.config.js +679 -0
- package/chart/rancher-alerting-drivers.vue +0 -53
- package/chart/rancher-gatekeeper.vue +0 -37
- package/creators/app/files/nuxt.config.js +0 -6
- package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +0 -4
- package/nuxt.config.js +0 -798
package/assets/styles/app.scss
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
font-style: normal;
|
|
5
5
|
font-weight: normal;
|
|
6
6
|
src: local(''),
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
url('~@shell/assets/fonts/poppins/poppins-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
|
|
8
|
+
url('~@shell/assets/fonts/poppins/poppins-v15-latin-300.woff') format('woff'), /* Modern Browsers */
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
/* poppins-500 - latin */
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
font-style: normal;
|
|
15
15
|
font-weight: bold;
|
|
16
16
|
src: local(''),
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
url('~@shell/assets/fonts/poppins/poppins-v15-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
|
|
18
|
+
url('~@shell/assets/fonts/poppins/poppins-v15-latin-500.woff') format('woff'), /* Modern Browsers */
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/* lato-regular - latin */
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
font-style: normal;
|
|
25
25
|
font-weight: normal;
|
|
26
26
|
src: local(''),
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
url('~@shell/assets/fonts/lato/lato-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
|
28
|
+
url('~@shell/assets/fonts/lato/lato-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
/* lato-700 - latin */
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
font-style: normal;
|
|
35
35
|
font-weight: bold;
|
|
36
36
|
src: local(''),
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
url('~@shell/assets/fonts/lato/lato-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
|
|
38
|
+
url('~@shell/assets/fonts/lato/lato-v17-latin-700.woff') format('woff'), /* Modern Browsers */
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/* roboto-mono-regular - latin */
|
|
@@ -44,6 +44,6 @@
|
|
|
44
44
|
font-style: normal;
|
|
45
45
|
font-weight: normal;
|
|
46
46
|
src: local(''),
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
47
|
+
url('~@shell/assets/fonts/roboto-mono/roboto-mono-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
|
48
|
+
url('~@shell/assets/fonts/roboto-mono/roboto-mono-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
|
|
49
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'node_modules/vue-js-modal/dist/styles.css';
|
|
2
2
|
|
|
3
3
|
.v--modal-overlay {
|
|
4
4
|
background-color: var(--overlay-bg);
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.v--modal {
|
|
13
|
-
background-color: var(--modal-bg)!important;
|
|
13
|
+
background-color: var(--modal-bg) !important;
|
|
14
14
|
box-shadow: none;
|
|
15
15
|
border: 2px solid var(--modal-border);
|
|
16
|
-
}
|
|
16
|
+
}
|
|
@@ -22,6 +22,7 @@ generic:
|
|
|
22
22
|
disabled: Disabled
|
|
23
23
|
done: Done
|
|
24
24
|
enabled: Enabled
|
|
25
|
+
here: here
|
|
25
26
|
id: ID
|
|
26
27
|
ignored: Ignored
|
|
27
28
|
invalidCron: Invalid cron schedule
|
|
@@ -819,6 +820,8 @@ catalog:
|
|
|
819
820
|
clusterToolExists: This chart has a fixed namespace and name. A matching <a href="{url}">application</a> has been found and any changes will be made to it.
|
|
820
821
|
banner:
|
|
821
822
|
legacy: 'PSP Removal: Before upgrading a cluster to Kubernetes 1.25+, please ensure you review your Helm applications for Pod Security Policies and update them accordingly'
|
|
823
|
+
enablePSP: Enable Pod Security Policies
|
|
824
|
+
global: Global
|
|
822
825
|
charts:
|
|
823
826
|
all: All
|
|
824
827
|
categories:
|
|
@@ -1067,7 +1070,6 @@ cis:
|
|
|
1067
1070
|
testID: Test ID
|
|
1068
1071
|
testsSkipped: Tests Skipped
|
|
1069
1072
|
testsToSkip: Tests to Skip
|
|
1070
|
-
workerProfile: CIS Profile
|
|
1071
1073
|
|
|
1072
1074
|
cluster:
|
|
1073
1075
|
addonChart:
|
|
@@ -1262,6 +1264,7 @@ cluster:
|
|
|
1262
1264
|
affinity:
|
|
1263
1265
|
namespaces:
|
|
1264
1266
|
placeholder: e.g. default,system,base
|
|
1267
|
+
installGuestAgent: Install guest agent
|
|
1265
1268
|
description:
|
|
1266
1269
|
label: Cluster Description
|
|
1267
1270
|
placeholder: Any text you want that better describes this cluster
|
|
@@ -1311,8 +1314,9 @@ cluster:
|
|
|
1311
1314
|
manageAction: Manage
|
|
1312
1315
|
kubernetesVersion:
|
|
1313
1316
|
label: Kubernetes Version
|
|
1314
|
-
|
|
1315
|
-
|
|
1317
|
+
current: (current)
|
|
1318
|
+
experimental: (experimental)
|
|
1319
|
+
deprecated: (deprecated)
|
|
1316
1320
|
deprecatedPatches: Show deprecated Kubernetes patch versions
|
|
1317
1321
|
deprecatedPatchWarning: We recommend using the latest patch version for each minor Kubernetes version. Deprecated patch versions can be useful for migration purposes.
|
|
1318
1322
|
toolsTip: Use the new Cluster Tools to manage and install Monitoring, Logging and other tools
|
|
@@ -1344,6 +1348,10 @@ cluster:
|
|
|
1344
1348
|
availabilityZone:
|
|
1345
1349
|
label: Availability Zone
|
|
1346
1350
|
description: Availability zones protect applications from complete Azure data center failures.
|
|
1351
|
+
publicIpAndSKUWarning: Availability zones require Static Public IP and Use Standard SKU for Public IP to be enabled.
|
|
1352
|
+
publicIpWarning: Availability zones require Static Public IP to be enabled.
|
|
1353
|
+
standardSKUWarning: Availability zones require Use Standard SKU for Public IP to be enabled.
|
|
1354
|
+
managedDisksWarning: Availability zones require Managed Disks to be enabled.
|
|
1347
1355
|
dns:
|
|
1348
1356
|
help: A unique DNS label for the public IP address.
|
|
1349
1357
|
label: DNS Label
|
|
@@ -1379,8 +1387,15 @@ cluster:
|
|
|
1379
1387
|
label: No Public IP
|
|
1380
1388
|
staticPublicIp:
|
|
1381
1389
|
label: Static Public IP
|
|
1390
|
+
standardSKU:
|
|
1391
|
+
label: Use Standard SKU for Public IP
|
|
1382
1392
|
resourceGroup:
|
|
1383
1393
|
label: Resource Group
|
|
1394
|
+
sections:
|
|
1395
|
+
availabilitySetConfiguration: Availability Set Configuration
|
|
1396
|
+
purchasePlan: Purchase Plan
|
|
1397
|
+
network: Network
|
|
1398
|
+
disks: Disks
|
|
1384
1399
|
size:
|
|
1385
1400
|
label: VM Size
|
|
1386
1401
|
tooltip: When accelerated networking is enabled, not all sizes are available.
|
|
@@ -1607,11 +1622,10 @@ cluster:
|
|
|
1607
1622
|
os: 'You are attemping to add a {newOS} worker node to a cluster with one or more {existingOS} worker nodes: some installed apps may need to be upgraded or removed.'
|
|
1608
1623
|
rke2-k3-reprovisioning: 'Making changes to cluster configuration may result in nodes reprovisioning. For more information see the <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">documentation</a>.'
|
|
1609
1624
|
desiredNodeGroupWarning: There are 0 nodes available to run the cluster agent. The cluster will not become active until at least one node is available.
|
|
1610
|
-
invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25.
|
|
1625
|
+
invalidPsps: You have one or more PodSecurityPolicy resource(s) in this cluster. Pod Security Policies are not available in Kubernetes v1.25 and will be automatically removed.
|
|
1611
1626
|
haveArgInfo: Configuration information is not available for the selected Kubernetes version. The options available in this screen will be limited, you may want to use the YAML editor.
|
|
1612
1627
|
deprecatedPsp: Pod Security Policies are deprecated as of Kubernetes v1.21, and have been removed in Kubernetes v1.25.
|
|
1613
|
-
removedPsp: Pod Security Policies have been removed in Kubernetes v1.25, use
|
|
1614
|
-
|
|
1628
|
+
removedPsp: Pod Security Policies have been removed in Kubernetes v1.25, use Pod Security Admission instead.
|
|
1615
1629
|
rkeTemplateUpgrade: Template revision {name} available for upgrade
|
|
1616
1630
|
|
|
1617
1631
|
availabilityWarnings:
|
|
@@ -1760,6 +1774,14 @@ cluster:
|
|
|
1760
1774
|
create-template: Use a Catalog Template to create a cluster
|
|
1761
1775
|
register-custom: Import any Kubernetes cluster
|
|
1762
1776
|
rke2:
|
|
1777
|
+
banner:
|
|
1778
|
+
psaChange: PSACT is now set to Rancher default automatically
|
|
1779
|
+
cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
|
|
1780
|
+
cisUnsupported: The selected Kubernetes Version no longer supports CIS Profile "{cisProfile}". Please select a supported profile. We recommend reviewing the <a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">documentation</a> to evaluate the impact of changing the CIS Profile.
|
|
1781
|
+
modal:
|
|
1782
|
+
pspChange:
|
|
1783
|
+
title: Pod Security Policy deprecation
|
|
1784
|
+
body: Kubernetes has removed support for Pod Security Policies (PSPs) starting with version 1.25. If your cluster has PodSecurityPolicy admission controller enabled via "kube-apiserver-arg.enable-admission-plugins" in Cluster YAML, it has to be <i>manually</i> removed before proceeding with the upgrade. Additionally, any PSPs that may be present in the cluster will no longer be available/enforced. Do you want to proceed?
|
|
1763
1785
|
snapshots:
|
|
1764
1786
|
suffix: Snapshots per node
|
|
1765
1787
|
systemService:
|
|
@@ -1777,12 +1799,18 @@ cluster:
|
|
|
1777
1799
|
label: Default - RKE2 Embedded
|
|
1778
1800
|
security:
|
|
1779
1801
|
header: Security
|
|
1802
|
+
cis:
|
|
1803
|
+
server: Server CIS Profile
|
|
1804
|
+
agent: CIS Profile
|
|
1805
|
+
override: Allow the default Pod Security Admission Configuration Template to be overridden when using a CIS Profile
|
|
1780
1806
|
defaultPodSecurityPolicyTemplateName:
|
|
1781
1807
|
label: Default Pod Security Policy
|
|
1782
|
-
option:
|
|
1808
|
+
option: Default - RKE2 Embedded
|
|
1783
1809
|
defaultPodSecurityAdmissionConfigurationTemplateName:
|
|
1784
|
-
label:
|
|
1785
|
-
option:
|
|
1810
|
+
label: Pod Security Admission Configuration Template
|
|
1811
|
+
option:
|
|
1812
|
+
none: (None)
|
|
1813
|
+
default: Default - RKE2 Embedded
|
|
1786
1814
|
cisProfile:
|
|
1787
1815
|
option: (None)
|
|
1788
1816
|
enableNetworkPolicy:
|
|
@@ -2077,6 +2105,7 @@ fleet:
|
|
|
2077
2105
|
placeholder: e.g. https://github.com/rancher/fleet-examples.git or git@github.com:rancher/fleet-examples.git
|
|
2078
2106
|
addRepo: Add Repository
|
|
2079
2107
|
noRepos: No repositories have been added
|
|
2108
|
+
noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
|
|
2080
2109
|
protocolBanner: Enter a valid HTTPS or SSH URL to a git repository.
|
|
2081
2110
|
add:
|
|
2082
2111
|
steps:
|
|
@@ -2128,6 +2157,7 @@ fleet:
|
|
|
2128
2157
|
cluster: There are no clusters available
|
|
2129
2158
|
workspace:
|
|
2130
2159
|
label: Workspace
|
|
2160
|
+
addWorkspace: Create a workspace
|
|
2131
2161
|
clusterGroup:
|
|
2132
2162
|
selector:
|
|
2133
2163
|
label: Cluster Selectors
|
|
@@ -2148,7 +2178,17 @@ fleet:
|
|
|
2148
2178
|
error: Error
|
|
2149
2179
|
ready: Ready
|
|
2150
2180
|
errors: Errors
|
|
2151
|
-
|
|
2181
|
+
workspaces:
|
|
2182
|
+
tabs:
|
|
2183
|
+
restrictions: Allowed Target Namespaces
|
|
2184
|
+
timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
|
|
2185
|
+
restrictions:
|
|
2186
|
+
addTitle: 'allowedTargetNamespaces'
|
|
2187
|
+
addLabel: Add
|
|
2188
|
+
banner: "{count, plural,
|
|
2189
|
+
=0 { Adding namespaces here will create a GitRepoRestriction. }
|
|
2190
|
+
other { Only the Git Repo Restriction's <code>allowedTargetNamespaces</code> is managed here. You can make additional changes to the Git Repo Restriction}
|
|
2191
|
+
}"
|
|
2152
2192
|
footer:
|
|
2153
2193
|
docs: Docs
|
|
2154
2194
|
download: Download CLI
|
|
@@ -2184,14 +2224,22 @@ gatekeeperConstraint:
|
|
|
2184
2224
|
editAsYaml: Edit as YAML
|
|
2185
2225
|
title: Parameters
|
|
2186
2226
|
template: Template
|
|
2227
|
+
enforcement:
|
|
2228
|
+
action: Enforcement Action
|
|
2187
2229
|
violations:
|
|
2188
|
-
title: Violations
|
|
2230
|
+
title: "Violations: {total}"
|
|
2231
|
+
notAll: Not all are shown - the constraint only includes details for {shown}
|
|
2189
2232
|
|
|
2190
2233
|
gatekeeperIndex:
|
|
2191
2234
|
poweredBy: OPA Gatekeeper
|
|
2192
2235
|
unavailable: OPA + Gatekeeper is not available in the system-charts catalog.
|
|
2193
2236
|
violations: Violations
|
|
2194
2237
|
|
|
2238
|
+
gatekeeperInstall:
|
|
2239
|
+
auditInterval: Auto Interval
|
|
2240
|
+
constraintViolationsLimit: Constraint Violations Limit
|
|
2241
|
+
runtimeDefaultSeccompProfile: Enable Runtime Default Seccomp Profile
|
|
2242
|
+
|
|
2195
2243
|
glance:
|
|
2196
2244
|
created: Created
|
|
2197
2245
|
cpu: CPU Usage
|
|
@@ -2402,7 +2450,7 @@ istio:
|
|
|
2402
2450
|
label: Jaeger
|
|
2403
2451
|
description: Monitor and Troubleshoot microservices-based distributed systems.
|
|
2404
2452
|
disabled: '{app} is not installed'
|
|
2405
|
-
cni:
|
|
2453
|
+
cni: Enable CNI
|
|
2406
2454
|
customOverlayFile:
|
|
2407
2455
|
label: Custom Overlay File
|
|
2408
2456
|
tip: 'The <a target="_blank" rel="noopener noreferrer nofollow" href="https://istio.io/latest/docs/setup/additional-setup/customize-installation/#patching-the-output-manifest">overlay file</a> allows for additional configuration on top of the base {vendor} Istio installation. You can utilize the <a href="https://istio.io/latest/docs/reference/config/istio.operator.v1alpha1/" target="_blank" rel="noopener noreferrer nofollow" >IstioOperator API</a> to make changes and additions for all components and apply those changes via this overlay YAML file.'
|
|
@@ -2553,20 +2601,20 @@ istio:
|
|
|
2553
2601
|
label: Subject Alternative Names
|
|
2554
2602
|
placeholder: e.g. example.com
|
|
2555
2603
|
add: Add Subject Alternative Name
|
|
2556
|
-
egressGateway:
|
|
2557
|
-
ingressGateway:
|
|
2558
|
-
istiodRemote:
|
|
2559
|
-
kiali:
|
|
2560
|
-
pilot:
|
|
2561
|
-
policy:
|
|
2604
|
+
egressGateway: Enable Egress Gateway
|
|
2605
|
+
ingressGateway: Enable Ingress Gateway
|
|
2606
|
+
istiodRemote: Enable istiodRemote
|
|
2607
|
+
kiali: Enable Kiali
|
|
2608
|
+
pilot: Enable Pilot
|
|
2609
|
+
policy: Enable Policy
|
|
2562
2610
|
poweredBy: Powered by <a target="_blank" rel="noopener noreferrer nofollow" href='https://istio.io/latest/'>Istio</a>
|
|
2563
|
-
telemetry:
|
|
2611
|
+
telemetry: Enable Telemetry
|
|
2564
2612
|
titles:
|
|
2565
2613
|
components: Components
|
|
2566
2614
|
customAnswers: Custom Answers
|
|
2567
2615
|
advanced: Advanced Settings
|
|
2568
2616
|
description: Description
|
|
2569
|
-
tracing:
|
|
2617
|
+
tracing: Enable Jaeger Tracing (limited)
|
|
2570
2618
|
v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
|
|
2571
2619
|
|
|
2572
2620
|
labels:
|
|
@@ -3394,6 +3442,8 @@ networkpolicy:
|
|
|
3394
3442
|
labelsAnnotations:
|
|
3395
3443
|
label: Labels & Annotations
|
|
3396
3444
|
rules:
|
|
3445
|
+
pod: Pod
|
|
3446
|
+
namespace: Namespace
|
|
3397
3447
|
ruleLabel: Rule {index}
|
|
3398
3448
|
addPort: Add allowed port
|
|
3399
3449
|
type: Rule type
|
|
@@ -3420,6 +3470,8 @@ networkpolicy:
|
|
|
3420
3470
|
label: Pod Selector
|
|
3421
3471
|
namespaceSelector:
|
|
3422
3472
|
label: Namespace Selector
|
|
3473
|
+
namespaceAndPodSelector:
|
|
3474
|
+
label: Namespace/Pod Selector
|
|
3423
3475
|
config:
|
|
3424
3476
|
label: Configuration
|
|
3425
3477
|
selectors:
|
|
@@ -3439,6 +3491,18 @@ networkpolicy:
|
|
|
3439
3491
|
=1 {Matches 1 of {total, number} namespaces: "{sample}"}
|
|
3440
3492
|
other {Matches {matched, number} of {total, number} existing namespaces, including "{sample}"}
|
|
3441
3493
|
}
|
|
3494
|
+
matchingNamespacesAndPods:
|
|
3495
|
+
tooltip: A single entry rule that specifies both Namespace Selector and Pod Selector that selects particular Pods within particular namespaces
|
|
3496
|
+
matchesSome: |-
|
|
3497
|
+
{matchedPods, plural,
|
|
3498
|
+
=0 {Matches 0 of {totalPods, number} pods}
|
|
3499
|
+
=1 {Matches 1 of {totalPods, number} pods: "{samplePods}"}
|
|
3500
|
+
other {Matches {matchedPods, number} of {totalPods, number} existing pods, including "{samplePods}"}
|
|
3501
|
+
} in {matchedNamespaces, plural,
|
|
3502
|
+
=0 {0 of {totalNamespaces, number} namespaces}
|
|
3503
|
+
=1 {1 of {totalNamespaces, number} namespaces: "{sampleNamespaces}"}
|
|
3504
|
+
other {{matchedNamespaces, number} of {totalNamespaces, number} existing namespaces, including "{sampleNamespaces}"}
|
|
3505
|
+
}
|
|
3442
3506
|
node:
|
|
3443
3507
|
list:
|
|
3444
3508
|
pool: Pool
|
|
@@ -3449,6 +3513,9 @@ node:
|
|
|
3449
3513
|
poolDescription:
|
|
3450
3514
|
noSize: No Size
|
|
3451
3515
|
noLocation: No Location
|
|
3516
|
+
nodeLabels: Labels
|
|
3517
|
+
hideLabels: Show less
|
|
3518
|
+
showLabels: Show more
|
|
3452
3519
|
detail:
|
|
3453
3520
|
detailTop:
|
|
3454
3521
|
containerRuntime: Container Runtime
|
|
@@ -3857,6 +3924,7 @@ podDisruptionBudget:
|
|
|
3857
3924
|
|
|
3858
3925
|
# Rancher Extensions
|
|
3859
3926
|
plugins:
|
|
3927
|
+
incompatibleDisclaimer: "The latest version of this extension ({ version }) is not compatible with the current Rancher version ({ rancherVersion })."
|
|
3860
3928
|
labels:
|
|
3861
3929
|
builtin: Built-in
|
|
3862
3930
|
experimental: Experimental
|
|
@@ -3890,6 +3958,7 @@ plugins:
|
|
|
3890
3958
|
detail: Detail
|
|
3891
3959
|
versions: Versions
|
|
3892
3960
|
versionError: Could not load version information
|
|
3961
|
+
requiresVersion: "Requires Rancher {version}"
|
|
3893
3962
|
empty:
|
|
3894
3963
|
all: Extensions are neither installed nor available
|
|
3895
3964
|
available: No Extensions available
|
|
@@ -3952,7 +4021,7 @@ podSecurityAdmission:
|
|
|
3952
4021
|
name: Pod Security Admission
|
|
3953
4022
|
description: Define the admission control mode you want to use for the pod security
|
|
3954
4023
|
banner:
|
|
3955
|
-
modifications: '
|
|
4024
|
+
modifications: 'Changing any template that is currently in use will cause an update to those live clusters the next time the cluster is updated'
|
|
3956
4025
|
labels:
|
|
3957
4026
|
enforce: Enforce
|
|
3958
4027
|
audit: Audit
|
|
@@ -4119,6 +4188,7 @@ projectNamespaces:
|
|
|
4119
4188
|
label: Projects/Namespaces
|
|
4120
4189
|
noNamespaces: There are no namespaces defined.
|
|
4121
4190
|
noProjectNoNamespaces: All namespaces are in a project
|
|
4191
|
+
isIstioInjectionEnabled: Istio automatic sidecar injection is enabled for this namespace
|
|
4122
4192
|
|
|
4123
4193
|
prometheusRule:
|
|
4124
4194
|
alertingRules:
|
|
@@ -7105,7 +7175,7 @@ legacy:
|
|
|
7105
7175
|
globalDnsProviders: Global DNS Providers
|
|
7106
7176
|
notifiers: Notifiers
|
|
7107
7177
|
monitoring: Monitoring
|
|
7108
|
-
psps: Pod Security
|
|
7178
|
+
psps: Pod Security Policy Templates
|
|
7109
7179
|
secrets: Secrets
|
|
7110
7180
|
|
|
7111
7181
|
project:
|
|
@@ -810,7 +810,7 @@ catalog:
|
|
|
810
810
|
chartVersions:
|
|
811
811
|
label: Chart 版本
|
|
812
812
|
showMore: 显示更多
|
|
813
|
-
showLess:
|
|
813
|
+
showLess: 显示更少
|
|
814
814
|
home: 首页
|
|
815
815
|
maintainers: 维护者
|
|
816
816
|
related: 相关
|
|
@@ -818,6 +818,10 @@ catalog:
|
|
|
818
818
|
keywords: 关键词
|
|
819
819
|
errors:
|
|
820
820
|
clusterToolExists: 此 Chart 含有固定的命名空间和名称。找到一个匹配的 <a href="{url}">应用</a>,任何修改都将应用于此应用。
|
|
821
|
+
banner:
|
|
822
|
+
legacy: 'PSP 删除:在将集群升级到 Kubernetes 1.25+ 之前,请确保你针对 PSP 检查了 Helm 应用程序并相应进行更新'
|
|
823
|
+
enablePSP: 启用 Pod 安全策略
|
|
824
|
+
global: 全局
|
|
821
825
|
charts:
|
|
822
826
|
all: 全部
|
|
823
827
|
categories:
|
|
@@ -1073,7 +1077,6 @@ cis:
|
|
|
1073
1077
|
testID: 测试 ID
|
|
1074
1078
|
testsSkipped: 已跳过的测试
|
|
1075
1079
|
testsToSkip: 要跳过的测试
|
|
1076
|
-
workerProfile: CIS 配置文件
|
|
1077
1080
|
|
|
1078
1081
|
cluster:
|
|
1079
1082
|
addonChart:
|
|
@@ -1268,6 +1271,7 @@ cluster:
|
|
|
1268
1271
|
affinity:
|
|
1269
1272
|
namespaces:
|
|
1270
1273
|
placeholder: 例如:default,system,base
|
|
1274
|
+
installGuestAgent: 安装访客代理
|
|
1271
1275
|
description:
|
|
1272
1276
|
label: 集群描述
|
|
1273
1277
|
placeholder: 输入可以描述该集群的文本
|
|
@@ -1350,6 +1354,10 @@ cluster:
|
|
|
1350
1354
|
availabilityZone:
|
|
1351
1355
|
label: 可用区
|
|
1352
1356
|
description: 可用区用于让应用程序免受 Azure 数据中心全面故障的影响。
|
|
1357
|
+
publicIpAndSKUWarning: 可用区要求启用\"静态公共 IP\" 和\"为公共 IP 使用标准 SKU\"。
|
|
1358
|
+
publicIpWarning: 可用区要求启用\"静态公共 IP\"。
|
|
1359
|
+
standardSKUWarning: 可用区要求启用\"为公共 IP 使用标准 SKU\"。
|
|
1360
|
+
managedDisksWarning: 可用区要求启用\"托管磁盘\"。
|
|
1353
1361
|
dns:
|
|
1354
1362
|
help: 公共 IP 地址的唯一 DNS 标签。
|
|
1355
1363
|
label: DNS 标签
|
|
@@ -1385,8 +1393,15 @@ cluster:
|
|
|
1385
1393
|
label: 没有公共 IP
|
|
1386
1394
|
staticPublicIp:
|
|
1387
1395
|
label: 静态公共 IP
|
|
1396
|
+
standardSKU:
|
|
1397
|
+
label: 为公共 IP 使用标准 SKU
|
|
1388
1398
|
resourceGroup:
|
|
1389
1399
|
label: 资源组
|
|
1400
|
+
sections:
|
|
1401
|
+
availabilitySetConfiguration: 可用性集配置
|
|
1402
|
+
purchasePlan: 购买计划
|
|
1403
|
+
network: 网络
|
|
1404
|
+
disks: 磁盘
|
|
1390
1405
|
size:
|
|
1391
1406
|
label: 虚拟机大小
|
|
1392
1407
|
tooltip: 启用加速网络后,并非所有大小都可用。
|
|
@@ -1613,11 +1628,10 @@ cluster:
|
|
|
1613
1628
|
os: '你正在将 {newOS} worker 节点添加到具有一个或多个 {existingOS} worker 节点的集群。你可能需要升级或删除某些已安装的应用。'
|
|
1614
1629
|
rke2-k3-reprovisioning: '更改集群配置可能导致节点重新配置。详情请参见 <a target="blank" href="{docsBase}/cluster-provisioning/rke-clusters/behavior-differences-between-rke1-and-rke2/" target="_blank" rel="noopener nofollow">文档</a>。'
|
|
1615
1630
|
desiredNodeGroupWarning: 没有可用于运行 Cluster Agent 的节点。要让集群变为 Active 状态,至少需要有 1 个可用的节点。
|
|
1616
|
-
invalidPsps: 你在此集群中有一个或多个 PSP 资源。Pod
|
|
1631
|
+
invalidPsps: 你在此集群中有一个或多个 PSP 资源。Pod 安全策略在 Kubernetes v1.25 中不可用并将自动删除。
|
|
1617
1632
|
haveArgInfo: 所选 Kubernetes 版本的配置信息不可用。此屏幕中可用的选项将受到限制,你可能需要使用 YAML 编辑器。
|
|
1618
1633
|
deprecatedPsp: Pod 安全策略自 Kubernetes v1.21 起已弃用,并已在 Kubernetes v1.25 中删除。
|
|
1619
1634
|
removedPsp: Pod 安全策略已在 Kubernetes v1.25 中删除,请改用 PodSecurity Admission。
|
|
1620
|
-
|
|
1621
1635
|
rkeTemplateUpgrade: 模板修订版 {name} 可用于升级
|
|
1622
1636
|
|
|
1623
1637
|
availabilityWarnings:
|
|
@@ -1766,6 +1780,14 @@ cluster:
|
|
|
1766
1780
|
create-template: 使用 Catalog 模板创建集群
|
|
1767
1781
|
register-custom: 导入任意 Kubernetes 集群
|
|
1768
1782
|
rke2:
|
|
1783
|
+
banner:
|
|
1784
|
+
psaChange: PSACT 现在自动设置为 Rancher 默认值
|
|
1785
|
+
cisOverride: 更改此设置可能会影响集群安全,因为它会覆盖默认的 CIS 设置
|
|
1786
|
+
cisUnsupported: 所选 Kubernetes 版本不再支持 CIS 配置文件 “{cisProfile}”,请选择支持的配置文件。建议你查看<a href="https://docs.rke2.io/security/hardening_guide" target="_blank" rel="noopener noreferrer nofollow">文档</a>评估更改 CIS 配置文件的影响。
|
|
1787
|
+
modal:
|
|
1788
|
+
pspChange:
|
|
1789
|
+
title: 弃用 Pod 安全策略
|
|
1790
|
+
body: 从 v1.25 版开始,Kubernetes 已经取消了对 Pod 安全策略 (PSP) 的支持。如果你的集群通过集群 YAML 中的 “kube-apiserver-arg.enable-admission-plugins” 启用了 PodSecurityPolicy 准入控制器,你必须在继续升级之前<i>手动</i>删除它。此外,集群中存在的任何 PSP 将不再可用或强制执行。是否继续操作?
|
|
1769
1791
|
snapshots:
|
|
1770
1792
|
suffix: 每个节点的快照
|
|
1771
1793
|
systemService:
|
|
@@ -1783,12 +1805,18 @@ cluster:
|
|
|
1783
1805
|
label: 默认 - 嵌入 RKE2
|
|
1784
1806
|
security:
|
|
1785
1807
|
header: 安全
|
|
1808
|
+
cis:
|
|
1809
|
+
server: Server CIS 配置文件
|
|
1810
|
+
agent: CIS 配置文件
|
|
1811
|
+
override: 当使用 CIS 配置文件时,允许覆盖默认 PSA 配置模板
|
|
1786
1812
|
defaultPodSecurityPolicyTemplateName:
|
|
1787
1813
|
label: 默认 Pod 安全策略
|
|
1788
|
-
option:
|
|
1814
|
+
option: 默认 - 嵌入 RKE2
|
|
1789
1815
|
defaultPodSecurityAdmissionConfigurationTemplateName:
|
|
1790
|
-
label:
|
|
1791
|
-
option:
|
|
1816
|
+
label: PSA 配置模板
|
|
1817
|
+
option:
|
|
1818
|
+
none: (None)
|
|
1819
|
+
default: 默认 - 嵌入 RKE2
|
|
1792
1820
|
cisProfile:
|
|
1793
1821
|
option: (None)
|
|
1794
1822
|
enableNetworkPolicy:
|
|
@@ -2080,9 +2108,11 @@ fleet:
|
|
|
2080
2108
|
empty: 默认使用仓库的根目录。要使用一个或多个不同的目录,请在这里添加。
|
|
2081
2109
|
repo:
|
|
2082
2110
|
label: 仓库 URL
|
|
2083
|
-
placeholder:
|
|
2111
|
+
placeholder: 例如 https://github.com/rancher/fleet-examples.git 或 git@github.com:rancher/fleet-examples.git
|
|
2084
2112
|
addRepo: 添加仓库
|
|
2085
2113
|
noRepos: 未添加任何仓库
|
|
2114
|
+
noWorkspaces: 没有工作空间。<br/>请在添加仓库之前创建一个工作空间
|
|
2115
|
+
protocolBanner: 输入指向 git 仓库的有效 HTTPS 或 SSH URL。
|
|
2086
2116
|
add:
|
|
2087
2117
|
steps:
|
|
2088
2118
|
repoInfo:
|
|
@@ -2133,6 +2163,7 @@ fleet:
|
|
|
2133
2163
|
cluster: 没有可用的集群
|
|
2134
2164
|
workspace:
|
|
2135
2165
|
label: 工作空间
|
|
2166
|
+
addWorkspace: 创建工作空间
|
|
2136
2167
|
clusterGroup:
|
|
2137
2168
|
selector:
|
|
2138
2169
|
label: 集群选择器
|
|
@@ -2153,7 +2184,14 @@ fleet:
|
|
|
2153
2184
|
error: 错误
|
|
2154
2185
|
ready: 就绪
|
|
2155
2186
|
errors: 错误
|
|
2156
|
-
|
|
2187
|
+
workspaces:
|
|
2188
|
+
tabs:
|
|
2189
|
+
restrictions: 允许的目标命名空间
|
|
2190
|
+
timeout: 工作空间创建超时。工作空间可能已创建,建议在创建另一个工作空间之前检查工作空间页面。
|
|
2191
|
+
restrictions:
|
|
2192
|
+
addTitle: 'allowedTargetNamespaces'
|
|
2193
|
+
addLabel: 添加
|
|
2194
|
+
banner: "{count, plural, =0 { 在这里设置 allowedTargetNamespaces 会创建一个 GitRepoRestriction。} other { 只有 GitRepoRestriction.allowedTargetNamespaces 在此处管理,你可以进行其他更改。} }"
|
|
2157
2195
|
footer:
|
|
2158
2196
|
docs: Rancher 官方文档
|
|
2159
2197
|
download: 下载 CLI
|
|
@@ -2192,14 +2230,22 @@ gatekeeperConstraint:
|
|
|
2192
2230
|
editAsYaml: 以 YAML 文件编辑
|
|
2193
2231
|
title: 参数
|
|
2194
2232
|
template: 模板
|
|
2233
|
+
enforcement:
|
|
2234
|
+
action: 执行动作
|
|
2195
2235
|
violations:
|
|
2196
|
-
title:
|
|
2236
|
+
title: "违反规定:{total}"
|
|
2237
|
+
notAll: 没有显示全部 - 仅包含 {shown} 的详细信息
|
|
2197
2238
|
|
|
2198
2239
|
gatekeeperIndex:
|
|
2199
2240
|
poweredBy: OPA Gatekeeper
|
|
2200
2241
|
unavailable: OPA Gatekeeper 不在 system-charts 应用商店中.
|
|
2201
2242
|
violations: 违反规定
|
|
2202
2243
|
|
|
2244
|
+
gatekeeperInstall:
|
|
2245
|
+
auditInterval: 自动间隔
|
|
2246
|
+
constraintViolationsLimit: 约束违规限制
|
|
2247
|
+
runtimeDefaultSeccompProfile: 启用运行时默认 Seccomp 配置文件
|
|
2248
|
+
|
|
2203
2249
|
glance:
|
|
2204
2250
|
created: 创建时间
|
|
2205
2251
|
cpu: CPU 使用量
|
|
@@ -2994,6 +3040,8 @@ monitoring:
|
|
|
2994
3040
|
new: 创建默认配置
|
|
2995
3041
|
radio:
|
|
2996
3042
|
label: 配置密文
|
|
3043
|
+
validation:
|
|
3044
|
+
duplicatedReceiverName: 名称为 {name} 的接收器已存在。
|
|
2997
3045
|
templates:
|
|
2998
3046
|
keyLabel: 文件名称
|
|
2999
3047
|
label: 模板文件
|
|
@@ -3400,6 +3448,8 @@ networkpolicy:
|
|
|
3400
3448
|
labelsAnnotations:
|
|
3401
3449
|
label: 标签 & 注释
|
|
3402
3450
|
rules:
|
|
3451
|
+
pod: Pod
|
|
3452
|
+
namespace: 命名空间
|
|
3403
3453
|
ruleLabel: 规则 {index}
|
|
3404
3454
|
addPort: 添加允许的端口
|
|
3405
3455
|
type: 规则类型
|
|
@@ -3426,6 +3476,8 @@ networkpolicy:
|
|
|
3426
3476
|
label: Pod 选择器
|
|
3427
3477
|
namespaceSelector:
|
|
3428
3478
|
label: 命名空间选择器
|
|
3479
|
+
namespaceAndPodSelector:
|
|
3480
|
+
label: 命名空间/Pod 选择器
|
|
3429
3481
|
config:
|
|
3430
3482
|
label: 配置
|
|
3431
3483
|
selectors:
|
|
@@ -3442,9 +3494,21 @@ networkpolicy:
|
|
|
3442
3494
|
matchesSome: |-
|
|
3443
3495
|
{matched, plural,
|
|
3444
3496
|
=0 {匹配 {total, number} 个命名空间中的 0 个}
|
|
3445
|
-
=1 {匹配 {total, number}
|
|
3497
|
+
=1 {匹配 {total, number} 个命名空间中的 1 个:"{sample}"}
|
|
3446
3498
|
other {匹配 {total, number} 个命名空间中的 {matched, number} 个,包括 "{sample}"}
|
|
3447
3499
|
}
|
|
3500
|
+
matchingNamespacesAndPods:
|
|
3501
|
+
tooltip: 指定命名空间选择器和 Pod 选择器的单条规则,用于选择特定命名空间中的特定 Pod
|
|
3502
|
+
matchesSome: |-
|
|
3503
|
+
{matchedNamespaces, plural,
|
|
3504
|
+
=0 { 在 0 个命名空间中(总共 {totalNamespaces, number} 个)}
|
|
3505
|
+
=1 { 在 1 个命名空间(总共 {totalNamespaces, number} 个)"{sampleNamespaces}" 中}
|
|
3506
|
+
other { 在 {matchedNamespaces, number} 个命名空间中(总共 {totalNamespaces, number} 个),包括 "{sampleNamespaces}"}
|
|
3507
|
+
},{matchedPods, plural,
|
|
3508
|
+
=0 {匹配 {totalPods, number} 个 Pod 中的 0 个 }
|
|
3509
|
+
=1 {匹配 {totalPods, number} 个 Pod 中的 1 个:"{samplePods}"}
|
|
3510
|
+
other {匹配 {totalPods, number} 个 Pod 中的 {matchedPods, number} 个,包括 "{samplePods}"}
|
|
3511
|
+
}
|
|
3448
3512
|
node:
|
|
3449
3513
|
list:
|
|
3450
3514
|
pool: 池
|
|
@@ -3455,6 +3519,9 @@ node:
|
|
|
3455
3519
|
poolDescription:
|
|
3456
3520
|
noSize: 没有大小
|
|
3457
3521
|
noLocation: 没有位置
|
|
3522
|
+
nodeLabels: 标签
|
|
3523
|
+
hideLabels: 显示更少
|
|
3524
|
+
showLabels: 显示更多
|
|
3458
3525
|
detail:
|
|
3459
3526
|
detailTop:
|
|
3460
3527
|
containerRuntime: 容器运行时
|
|
@@ -3863,6 +3930,7 @@ podDisruptionBudget:
|
|
|
3863
3930
|
|
|
3864
3931
|
# Rancher Extensions
|
|
3865
3932
|
plugins:
|
|
3933
|
+
incompatibleDisclaimer: "此扩展的最新版本 ({ version }) 与当前的 Rancher 版本 ({ rancherVersion }) 不兼容。"
|
|
3866
3934
|
labels:
|
|
3867
3935
|
builtin: 内置角色
|
|
3868
3936
|
experimental: 实验功能
|
|
@@ -3896,6 +3964,7 @@ plugins:
|
|
|
3896
3964
|
detail: 详情
|
|
3897
3965
|
versions: 版本
|
|
3898
3966
|
versionError: 无法加载版本信息
|
|
3967
|
+
requiresVersion: "需要 Rancher {version}"
|
|
3899
3968
|
empty:
|
|
3900
3969
|
all: 扩展未安装或不可用
|
|
3901
3970
|
available: 没有可用的扩展
|
|
@@ -3958,7 +4027,7 @@ podSecurityAdmission:
|
|
|
3958
4027
|
name: Pod 安全准入
|
|
3959
4028
|
description: 定义要用于 Pod 安全的准入控制模式
|
|
3960
4029
|
banner:
|
|
3961
|
-
modifications: '
|
|
4030
|
+
modifications: '如果你更改正在使用的模板,在下次更新集群时会更新这些活动集群'
|
|
3962
4031
|
labels:
|
|
3963
4032
|
enforce: 执行
|
|
3964
4033
|
audit: 审计
|
|
@@ -4716,8 +4785,8 @@ servicesPage:
|
|
|
4716
4785
|
matchesSome: |-
|
|
4717
4786
|
{matched, plural,
|
|
4718
4787
|
=0 {与 {total, number} 个 Pod 中的 0 个匹配。如果没有创建选择器,则必须进行手动端点。}
|
|
4719
|
-
=1 {与{total, number}个 Pod 中的1个匹配:"{sample}"}
|
|
4720
|
-
other {与 {total, number} 个 Pod 中的 {matched, number} 个匹配,包括"{sample}"}
|
|
4788
|
+
=1 {与 {total, number} 个 Pod 中的 1 个匹配:"{sample}"}
|
|
4789
|
+
other {与 {total, number} 个 Pod 中的 {matched, number} 个匹配,包括 "{sample}"}
|
|
4721
4790
|
}
|
|
4722
4791
|
serviceTypes:
|
|
4723
4792
|
clusterIp:
|
|
@@ -7121,7 +7190,7 @@ legacy:
|
|
|
7121
7190
|
globalDnsProviders: 全局 DNS 提供商
|
|
7122
7191
|
notifiers: Notifiers
|
|
7123
7192
|
monitoring: 监控
|
|
7124
|
-
psps: Pod
|
|
7193
|
+
psps: Pod 安全策略模板
|
|
7125
7194
|
secrets: 密文
|
|
7126
7195
|
|
|
7127
7196
|
project:
|
package/babel.config.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
presets: [
|
|
3
|
+
[
|
|
4
|
+
'@vue/cli-plugin-babel/preset',
|
|
5
|
+
{ useBuiltIns: false }
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
'@babel/preset-env',
|
|
9
|
+
{ targets: { node: 'current' } }
|
|
10
|
+
]
|
|
11
|
+
],
|
|
12
|
+
env: { test: { presets: [['@babel/env', { targets: { node: 'current' } }]] } }
|
|
13
|
+
};
|