@rancher/shell 0.3.4 → 0.3.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/images/providers/outscale.svg +19 -0
- package/assets/styles/app.scss +1 -1
- package/assets/styles/base/_basic.scss +18 -0
- package/assets/styles/base/_mixins.scss +0 -11
- package/assets/styles/base/_variables.scss +2 -4
- package/assets/styles/fonts/_fontstack.scss +11 -11
- package/assets/styles/global/_button.scss +12 -2
- package/assets/styles/vendor/vue-js-modal.scss +3 -3
- package/assets/translations/en-us.yaml +113 -22
- package/assets/translations/zh-hans.yaml +113 -24
- package/babel.config.js +13 -0
- package/chart/gatekeeper.vue +78 -0
- package/chart/istio.vue +135 -112
- 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/BrandImage.vue +1 -4
- package/components/ButtonDropdown.vue +2 -3
- package/components/Carousel.vue +85 -37
- 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 +12 -7
- package/components/ExplorerMembers.vue +101 -6
- package/components/ExplorerProjectsNamespaces.vue +46 -3
- package/components/FileDiff.vue +6 -7
- package/components/GrafanaDashboard.vue +27 -23
- 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 +28 -13
- package/components/SortableTable/selection.js +58 -50
- package/components/Wizard.vue +4 -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/auth/RoleDetailEdit.vue +2 -2
- 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/HookOption.vue +14 -10
- package/components/form/LabeledSelect.vue +14 -11
- package/components/form/Labels.vue +32 -27
- package/components/form/MatchExpressions.vue +19 -4
- package/components/form/Members/ClusterPermissionsEditor.vue +32 -7
- package/components/form/NameNsDescription.vue +32 -46
- package/components/form/ProjectMemberEditor.vue +46 -21
- 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/Tolerations.vue +4 -1
- package/components/form/ValueFromResource.vue +14 -9
- package/components/form/WorkloadPorts.vue +2 -2
- package/components/form/__tests__/LabeledSelect.test.ts +138 -0
- package/components/form/__tests__/NameNsDescription.ts +59 -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/formatter/WorkloadHealthScale.vue +8 -2
- package/components/nav/Group.vue +2 -2
- package/components/nav/NamespaceFilter.vue +23 -11
- package/components/nav/TopLevelMenu.vue +2 -4
- package/components/nav/Type.vue +1 -1
- package/components/nav/WorkspaceSwitcher.vue +46 -5
- package/components/nuxt/nuxt-build-indicator.vue +143 -0
- package/components/nuxt/nuxt-child.js +122 -0
- package/components/nuxt/nuxt-error.vue +98 -0
- package/components/nuxt/nuxt-link.client.js +98 -0
- package/components/nuxt/nuxt-link.server.js +16 -0
- package/components/nuxt/nuxt-loading.vue +154 -0
- package/components/nuxt/nuxt.js +101 -0
- package/config/labels-annotations.js +17 -0
- package/config/middleware.js +12 -0
- package/config/product/auth.js +3 -2
- package/config/product/explorer.js +34 -6
- package/config/product/fleet.js +2 -0
- package/config/query-params.js +1 -0
- package/config/router.js +414 -0
- package/config/store.js +181 -0
- package/config/table-headers.js +54 -12
- package/config/types.js +18 -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/core/plugin.ts +4 -2
- package/core/types.ts +258 -1
- 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/tsconfig.json +0 -1
- package/creators/app/files/vue.config.js +6 -0
- package/creators/app/init +5 -5
- package/creators/pkg/files/.github/workflows/build-extension.yml +110 -0
- package/creators/pkg/files/tsconfig.json +0 -1
- package/creators/pkg/init +35 -4
- package/creators/pkg/pkg.package.json +3 -3
- package/creators/update/init +1 -1
- package/detail/constraints.gatekeeper.sh.constraint.vue +34 -17
- package/detail/fleet.cattle.io.clustergroup.vue +7 -1
- 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 +32 -4
- package/edit/helm.cattle.io.projecthelmchart.vue +5 -1
- package/edit/logging.banzaicloud.io.output/index.vue +18 -5
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +1 -0
- 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 +14 -10
- 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 +21 -4
- 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/import.vue +23 -25
- package/edit/provisioning.cattle.io.cluster/rke2.vue +344 -102
- 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 +22 -7
- package/edit/workload/storage/Mount.vue +3 -3
- package/initialize/App.js +206 -0
- package/initialize/client.js +863 -0
- package/initialize/index.js +364 -0
- package/layouts/default.vue +7 -3
- package/layouts/standalone.vue +13 -0
- package/list/catalog.cattle.io.clusterrepo.vue +1 -0
- 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/list/rbac.authorization.k8s.io.clusterrolebinding.vue +48 -0
- package/list/workload.vue +6 -4
- package/machine-config/azure.vue +97 -38
- package/middleware/authenticated.js +34 -0
- package/mixins/chart.js +101 -2
- package/mixins/fetch.client.js +95 -0
- package/mixins/fetch.server.js +73 -0
- package/mixins/labeled-form-element.ts +2 -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 +46 -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/pod.js +4 -0
- package/models/provisioning.cattle.io.cluster.js +7 -5
- package/models/rbac.authorization.k8s.io.clusterrolebinding.js +16 -0
- package/models/rbac.authorization.k8s.io.rolebinding.js +16 -0
- package/package.json +13 -21
- 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 +98 -102
- 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/diagnostic.vue +32 -25
- package/pages/home.vue +9 -4
- package/pages/index.vue +10 -1
- package/pages/rio/mesh.vue +1 -2
- package/pkg/tsconfig.json +0 -1
- package/plugins/clean-html-directive.js +34 -0
- package/plugins/dashboard-store/actions.js +32 -9
- package/plugins/dashboard-store/index.js +1 -1
- package/plugins/dashboard-store/mutations.js +5 -2
- package/plugins/dashboard-store/resource-class.js +8 -1
- package/plugins/plugin.js +0 -14
- package/plugins/portal-vue.js +4 -0
- 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 +7 -1
- package/rancher-components/components/Banner/Banner.vue +2 -1
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +2 -0
- package/rancher-components/components/Form/Radio/RadioButton.test.ts +31 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +14 -3
- 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 +333 -0
- package/scripts/serve-pkgs +6 -2
- 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 +6 -2
- package/tsconfig.default.json +36 -0
- package/tsconfig.json +23 -0
- package/types/rancher/index.d.ts +2 -0
- package/types/shell/index.d.ts +466 -320
- package/utils/__tests__/grafana.test.ts +44 -0
- package/utils/__tests__/string.test.ts +12 -0
- package/utils/auth.js +65 -0
- package/utils/axios.js +190 -0
- package/utils/cookie-universal-nuxt.js +10 -0
- package/utils/dom.js +15 -0
- package/utils/grafana.js +35 -16
- package/utils/monitoring.js +2 -1
- package/utils/nuxt.js +659 -0
- 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 +690 -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/plugins/dashboard-store/extensions.js +0 -22
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg height="590" preserveAspectRatio="xMidYMid meet" width="607" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
style="">
|
|
3
|
+
<rect id="backgroundrect" width="100%" height="100%" x="0" y="0" fill="none" stroke="none" />
|
|
4
|
+
|
|
5
|
+
<g class="currentLayer" style="">
|
|
6
|
+
<title>Layer 1</title>
|
|
7
|
+
<g id="svg_1" class="">
|
|
8
|
+
<path
|
|
9
|
+
d="m297.00000850856304,0.9336278513073921 c-37.30000055581331,2.600000038743019 -75.60000112652779,10.800000160932541 -88.30000131577253,18.900000281631947 c-3.9000000581145287,2.400000035762787 -4.700000070035458,3.500000052154064 -4.700000070035458,5.900000087916851 c0,3.8000000566244125 3.7000000551342964,6.500000096857548 12.10000018030405,8.800000131130219 c5.200000077486038,1.4000000208616257 10.600000157952309,1.700000025331974 28.90000043064356,1.5000000223517418 c49.0000007301569,-0.30000000447034836 87.70000130683184,4.200000062584877 112.80000168085098,12.90000019222498 c18.900000281631947,6.70000009983778 25.200000375509262,13.300000198185444 25.200000375509262,26.600000396370888 c-0.10000000149011612,18.500000275671482 -14.000000208616257,40.50000060349703 -46.40000069141388,72.90000108629465 c-20.40000030398369,20.40000030398369 -39.40000058710575,36.700000546872616 -65.1000009700656,55.90000083297491 c-29.10000043362379,21.700000323355198 -43.700000651180744,34.50000051409006 -46.60000069439411,40.90000060945749 c-1.600000023841858,3.500000052154064 -0.4000000059604646,7.1000001057982445 2.9000000432133675,8.50000012665987 c10.500000156462193,4.400000065565109 54.40000081062317,-15.20000022649765 97.70000145584345,-43.60000064969063 c66.30000098794699,-43.50000064820051 111.30000165849924,-93.20000138878822 120.00000178813934,-132.7000019773841 c2.3000000342726707,-10.200000151991844 1.700000025331974,-24.70000036805868 -1.4000000208616257,-32.600000485777855 c-7.600000113248825,-19.900000296533108 -33.20000049471855,-34.400000512599945 -72.20000107586384,-40.90000060945749 c-23.400000348687172,-3.9000000581145287 -48.20000071823597,-4.90000007301569 -74.90000111609697,-3.0000000447034836 z"
|
|
10
|
+
stroke-width="0" id="svg_2" />
|
|
11
|
+
<path
|
|
12
|
+
d="m462.00001096725464,198.9336308017373 c-38.40000057220459,4.200000062584877 -65.70000097900629,16.100000239908695 -80.40000119805336,35.200000524520874 c-13.500000201165676,17.50000026077032 -12.300000183284283,38.60000057518482 3.9000000581145287,66.60000099241734 c9.80000014603138,16.900000251829624 22.600000336766243,33.5000004991889 60.200000897049904,77.60000115633011 c27.500000409781933,32.40000048279762 32.100000478327274,38.10000056773424 39.300000585615635,48.800000727176666 c15.600000232458115,23.400000348687172 16.300000242888927,40.40000060200691 2.0000000298023224,47.70000071078539 c-16.20000024139881,8.300000123679638 -41.40000061690807,10.900000162422657 -140.00000208616257,14.500000216066837 c-23.400000348687172,0.9000000134110452 -43.80000065267086,2.400000035762787 -48.50000072270632,3.6000000536441807 c-5.700000084936619,1.5000000223517418 -8.50000012665987,4.400000065565109 -8.50000012665987,9.00000013411045 c0,7.600000113248825 8.200000122189522,11.10000016540289 35.200000524520874,15.300000227987766 c86.70000129193068,13.40000019967556 161.60000240802765,12.10000018030405 200.70000299066305,-3.500000052154064 c29.000000432133675,-11.60000017285347 45.200000673532486,-34.60000051558018 42.100000627338886,-59.60000088810921 c-3.1000000461935997,-24.00000035762787 -20.800000309944153,-49.70000074058771 -82.10000122338533,-119.50000178068876 c-33.80000050365925,-38.500000573694706 -42.900000639259815,-53.30000079423189 -42.900000639259815,-70.00000104308128 c0,-11.200000166893005 5.100000075995922,-16.900000251829624 18.900000281631947,-21.200000315904617 c15.800000235438347,-4.90000007301569 30.100000448524952,-6.3000000938773155 85.40000127255917,-8.100000120699406 c45.80000068247318,-1.5000000223517418 52.700000785291195,-2.3000000342726707 57.40000085532665,-6.70000009983778 c6.800000101327896,-6.400000095367432 -2.3000000342726707,-14.900000222027302 -21.200000315904617,-19.700000293552876 c-8.800000131130219,-2.2000000327825546 -33.00000049173832,-6.400000095367432 -50.00000074505806,-8.700000129640102 c-13.300000198185444,-1.8000000268220901 -59.50000088661909,-2.7000000402331352 -71.50000106543303,-1.3000000193715096 z"
|
|
13
|
+
stroke-width="0" id="svg_3" />
|
|
14
|
+
<path
|
|
15
|
+
d="m164.50000653415918,281.2336320281029 c-45.10000067204237,5.000000074505806 -81.50000121444464,13.90000020712614 -91.50000136345625,22.20000033080578 c-3.9000000581145287,3.300000049173832 -3.9000000581145287,6.500000096857548 0,9.80000014603138 c6.400000095367432,5.300000078976154 19.500000290572643,6.70000009983778 57.50000085681677,5.900000087916851 c80.0000011920929,-1.700000025331974 127.2000018954277,8.900000132620335 138.60000206530094,30.90000046044588 c3.0000000447034836,5.800000086426735 3.7000000551342964,18.900000281631947 1.5000000223517418,27.500000409781933 c-5.100000075995922,19.500000290572643 -19.900000296533108,40.80000060796738 -45.80000068247318,65.90000098198652 c-41.100000612437725,39.90000059455633 -100.80000150203705,75.30000112205744 -127.60000190138817,75.80000112950802 c-6.3000000938773155,0.10000000149011612 -7.600000113248825,-0.20000000298023224 -8.900000132620335,-1.9000000283122063 c-5.800000086426735,-7.800000116229057 10.500000156462193,-44.00000065565109 51.60000076889992,-114.40000170469284 c13.600000202655792,-23.20000034570694 19.200000286102295,-35.50000052899122 19.400000289082527,-42.60000063478947 c0.20000000298023224,-5.700000084936619 -1.5000000223517418,-7.500000111758709 -7.300000108778477,-7.500000111758709 c-3.8000000566244125,0 -5.900000087916851,0.800000011920929 -10.700000159442425,3.9000000581145287 c-7.900000117719173,5.100000075995922 -14.70000021904707,13.200000196695328 -34.400000512599945,40.80000060796738 c-35.00000052154064,48.90000072866678 -60.10000089555979,88.60000132024288 -82.70000123232603,130.40000194311142 c-18.30000027269125,33.70000050216913 -24.2000003606081,47.300000704824924 -24.2000003606081,55.40000082552433 c0,6.200000092387199 1.5000000223517418,7.000000104308128 12.400000184774399,6.800000101327896 c33.5000004991889,-0.6000000089406967 114.10000170022249,-30.90000046044588 173.80000258982182,-65.20000097155571 c79.80000118911266,-45.80000068247318 130.80000194907188,-98.90000147372484 150.40000224113464,-156.60000233352184 c3.400000050663948,-9.80000014603138 3.8000000566244125,-12.10000018030405 3.7000000551342964,-20.500000305473804 c0,-11.10000016540289 -2.1000000312924385,-17.50000026077032 -8.600000128149986,-27.3000004068017 c-12.300000183284283,-18.200000271201134 -44.40000066161156,-32.00000047683716 -88.700001321733,-38.20000056922436 c-15.70000023394823,-2.2000000327825546 -62.30000092834234,-2.8000000417232513 -78.50000116974115,-1.1000000163912773 z"
|
|
16
|
+
stroke-width="0" id="svg_4" />
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
package/assets/styles/app.scss
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import "./mixins";
|
|
2
|
+
|
|
1
3
|
// -----------------------------------------------------------------------------
|
|
2
4
|
// This file contains very basic styles.
|
|
3
5
|
// -----------------------------------------------------------------------------
|
|
@@ -109,3 +111,19 @@ HR.vertical {
|
|
|
109
111
|
margin-left: -1px;
|
|
110
112
|
top: 0;
|
|
111
113
|
}
|
|
114
|
+
|
|
115
|
+
// --------------------------------------------------------------------------------------------------------
|
|
116
|
+
// These were declared in _mixins, but that results in these styles being declared for every Vue component
|
|
117
|
+
// Moved here, as these are styles and mixins should only include mixing definitions, not style definitions
|
|
118
|
+
// --------------------------------------------------------------------------------------------------------
|
|
119
|
+
|
|
120
|
+
.clearfix { @include clearfix; }
|
|
121
|
+
.list-unstyled { @include list-unstyled }
|
|
122
|
+
.no-select { @include no-select }
|
|
123
|
+
.no-resize { @include no-resize }
|
|
124
|
+
.hand { @include hand }
|
|
125
|
+
.fixed { @include fixed }
|
|
126
|
+
.clip { @include clip }
|
|
127
|
+
.force-wrap { @include force-wrap }
|
|
128
|
+
.bordered-section { @include bordered-section }
|
|
129
|
+
.section-divider { @include section-divider }
|
|
@@ -63,17 +63,6 @@
|
|
|
63
63
|
margin-top: 20px;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.clearfix { @include clearfix; }
|
|
67
|
-
.list-unstyled { @include list-unstyled }
|
|
68
|
-
.no-select { @include no-select }
|
|
69
|
-
.no-resize { @include no-resize }
|
|
70
|
-
.hand { @include hand }
|
|
71
|
-
.fixed { @include fixed }
|
|
72
|
-
.clip { @include clip }
|
|
73
|
-
.force-wrap { @include force-wrap }
|
|
74
|
-
.bordered-section { @include bordered-section }
|
|
75
|
-
.section-divider { @include section-divider }
|
|
76
|
-
|
|
77
66
|
/// Sets the specified background color and calculates a dark or light contrasted text color.
|
|
78
67
|
@mixin contrasted($background-color, $dark: $contrasted-dark, $light: $contrasted-light) {
|
|
79
68
|
color: contrast-color($background-color, $dark, $light);
|
|
@@ -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
|
+
}
|
|
@@ -87,7 +87,7 @@ button,
|
|
|
87
87
|
|
|
88
88
|
&:hover, &._hover {
|
|
89
89
|
color: var(--lightest) !important;
|
|
90
|
-
}
|
|
90
|
+
}
|
|
91
91
|
|
|
92
92
|
&:focus, &.focused {
|
|
93
93
|
background-color: var(--primary-hover-bg);
|
|
@@ -120,7 +120,17 @@ button,
|
|
|
120
120
|
|
|
121
121
|
.role-link {
|
|
122
122
|
background: transparent;
|
|
123
|
-
color: var(--link)
|
|
123
|
+
color: var(--link);
|
|
124
|
+
|
|
125
|
+
&:hover, &._hover {
|
|
126
|
+
color: var(--lightest);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&:focus, &.focused {
|
|
130
|
+
background: transparent;
|
|
131
|
+
color: var(--link);
|
|
132
|
+
box-shadow: none;
|
|
133
|
+
}
|
|
124
134
|
}
|
|
125
135
|
|
|
126
136
|
.role-multi-action {
|
|
@@ -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:
|
|
@@ -1667,11 +1681,17 @@ cluster:
|
|
|
1667
1681
|
label: Drain Before Delete
|
|
1668
1682
|
role:
|
|
1669
1683
|
label: Roles
|
|
1684
|
+
etcd: etcd
|
|
1685
|
+
controlPlane: Control Plane
|
|
1686
|
+
worker: Worker
|
|
1670
1687
|
labels:
|
|
1671
1688
|
label: Kubernetes Node Labels
|
|
1672
1689
|
noAccessBanner: "You do not have access to see this machine pool's configuration."
|
|
1673
1690
|
configNotFound: "We could not find this machine pool's configuration. We recommend that you create a new cluster with the desired configuration."
|
|
1674
1691
|
noPoolsDisclaimer: You do not have any machine pools defined, click the plus to add one.
|
|
1692
|
+
truncationPool: "Hostname truncation has been manually configured for this pool to {limit}"
|
|
1693
|
+
truncationCluster: "Hostname truncation has been manually configured for this cluster to {limit}"
|
|
1694
|
+
|
|
1675
1695
|
autoReplace:
|
|
1676
1696
|
label: Auto Replace
|
|
1677
1697
|
toolTip: If greater than 0, nodes that are unreachable for this duration will be automatically deleted and replaced.
|
|
@@ -1760,6 +1780,14 @@ cluster:
|
|
|
1760
1780
|
create-template: Use a Catalog Template to create a cluster
|
|
1761
1781
|
register-custom: Import any Kubernetes cluster
|
|
1762
1782
|
rke2:
|
|
1783
|
+
banner:
|
|
1784
|
+
psaChange: PSACT is now set to Rancher default automatically
|
|
1785
|
+
cisOverride: Changing this setting may affect cluster security as it overrides default CIS settings
|
|
1786
|
+
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.
|
|
1787
|
+
modal:
|
|
1788
|
+
pspChange:
|
|
1789
|
+
title: Pod Security Policy deprecation
|
|
1790
|
+
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
1791
|
snapshots:
|
|
1764
1792
|
suffix: Snapshots per node
|
|
1765
1793
|
systemService:
|
|
@@ -1777,12 +1805,18 @@ cluster:
|
|
|
1777
1805
|
label: Default - RKE2 Embedded
|
|
1778
1806
|
security:
|
|
1779
1807
|
header: Security
|
|
1808
|
+
cis:
|
|
1809
|
+
server: Server CIS Profile
|
|
1810
|
+
agent: CIS Profile
|
|
1811
|
+
override: Allow the default Pod Security Admission Configuration Template to be overridden when using a CIS Profile
|
|
1780
1812
|
defaultPodSecurityPolicyTemplateName:
|
|
1781
1813
|
label: Default Pod Security Policy
|
|
1782
|
-
option:
|
|
1814
|
+
option: Default - RKE2 Embedded
|
|
1783
1815
|
defaultPodSecurityAdmissionConfigurationTemplateName:
|
|
1784
|
-
label:
|
|
1785
|
-
option:
|
|
1816
|
+
label: Pod Security Admission Configuration Template
|
|
1817
|
+
option:
|
|
1818
|
+
none: (None)
|
|
1819
|
+
default: Default - RKE2 Embedded
|
|
1786
1820
|
cisProfile:
|
|
1787
1821
|
option: (None)
|
|
1788
1822
|
enableNetworkPolicy:
|
|
@@ -1800,6 +1834,7 @@ cluster:
|
|
|
1800
1834
|
label: Drain Nodes
|
|
1801
1835
|
toolTip: Draining preemptively removes the pods on each node so there are no running workloads on the nodes being upgraded. Upgrading without draining is faster and causes less shuffling around, but pods may still be restarted depending on the upgrade being performed.
|
|
1802
1836
|
deleteEmptyDir: "By default, pods using emptyDir volumes will be deleted on upgrade. Operations reliant on emptyDir volumes persisting through the pod's lifecycle may be impacted."
|
|
1837
|
+
truncateHostnames: Truncate hostnames to 15 characters for NetBIOS compatibility.
|
|
1803
1838
|
address:
|
|
1804
1839
|
tooltip: Cluster networking values cannot be changed after the cluster is created.
|
|
1805
1840
|
header: Addressing
|
|
@@ -2077,7 +2112,12 @@ fleet:
|
|
|
2077
2112
|
placeholder: e.g. https://github.com/rancher/fleet-examples.git or git@github.com:rancher/fleet-examples.git
|
|
2078
2113
|
addRepo: Add Repository
|
|
2079
2114
|
noRepos: No repositories have been added
|
|
2115
|
+
noWorkspaces: There are no workspaces. <br/> Please create a workspace before adding repositories
|
|
2080
2116
|
protocolBanner: Enter a valid HTTPS or SSH URL to a git repository.
|
|
2117
|
+
resources:
|
|
2118
|
+
label: 'Resource Handling'
|
|
2119
|
+
keepResources: Keep resources after deletion
|
|
2120
|
+
resourceBanner: When enabled above, resources will be kept when deleting a GitRepo or Bundle - only Helm release secrets will be deleted.
|
|
2081
2121
|
add:
|
|
2082
2122
|
steps:
|
|
2083
2123
|
repoInfo:
|
|
@@ -2128,6 +2168,7 @@ fleet:
|
|
|
2128
2168
|
cluster: There are no clusters available
|
|
2129
2169
|
workspace:
|
|
2130
2170
|
label: Workspace
|
|
2171
|
+
addWorkspace: Create a workspace
|
|
2131
2172
|
clusterGroup:
|
|
2132
2173
|
selector:
|
|
2133
2174
|
label: Cluster Selectors
|
|
@@ -2148,7 +2189,17 @@ fleet:
|
|
|
2148
2189
|
error: Error
|
|
2149
2190
|
ready: Ready
|
|
2150
2191
|
errors: Errors
|
|
2151
|
-
|
|
2192
|
+
workspaces:
|
|
2193
|
+
tabs:
|
|
2194
|
+
restrictions: Allowed Target Namespaces
|
|
2195
|
+
timeout: Workspace creation timeout. It's possible the workspace was created. We suggest checking the workspace page before trying to create another.
|
|
2196
|
+
restrictions:
|
|
2197
|
+
addTitle: 'allowedTargetNamespaces'
|
|
2198
|
+
addLabel: Add
|
|
2199
|
+
banner: "{count, plural,
|
|
2200
|
+
=0 { Adding namespaces here will create a GitRepoRestriction. }
|
|
2201
|
+
other { Only the Git Repo Restriction's <code>allowedTargetNamespaces</code> is managed here. You can make additional changes to the Git Repo Restriction}
|
|
2202
|
+
}"
|
|
2152
2203
|
footer:
|
|
2153
2204
|
docs: Docs
|
|
2154
2205
|
download: Download CLI
|
|
@@ -2157,6 +2208,7 @@ footer:
|
|
|
2157
2208
|
slack: Slack
|
|
2158
2209
|
|
|
2159
2210
|
gatekeeperConstraint:
|
|
2211
|
+
downloadViolations: Download Violations
|
|
2160
2212
|
match:
|
|
2161
2213
|
title: Match
|
|
2162
2214
|
tab:
|
|
@@ -2184,14 +2236,22 @@ gatekeeperConstraint:
|
|
|
2184
2236
|
editAsYaml: Edit as YAML
|
|
2185
2237
|
title: Parameters
|
|
2186
2238
|
template: Template
|
|
2239
|
+
enforcement:
|
|
2240
|
+
action: Enforcement Action
|
|
2187
2241
|
violations:
|
|
2188
|
-
title: Violations
|
|
2242
|
+
title: "Violations: {total}"
|
|
2243
|
+
notAll: Not all are shown due to the configured OPA Gatekeeper constraint violation limit - the constraint only includes details for {shown}
|
|
2189
2244
|
|
|
2190
2245
|
gatekeeperIndex:
|
|
2191
2246
|
poweredBy: OPA Gatekeeper
|
|
2192
2247
|
unavailable: OPA + Gatekeeper is not available in the system-charts catalog.
|
|
2193
2248
|
violations: Violations
|
|
2194
2249
|
|
|
2250
|
+
gatekeeperInstall:
|
|
2251
|
+
auditInterval: Auto Interval
|
|
2252
|
+
constraintViolationsLimit: Constraint Violations Limit
|
|
2253
|
+
runtimeDefaultSeccompProfile: Enable Runtime Default Seccomp Profile
|
|
2254
|
+
|
|
2195
2255
|
glance:
|
|
2196
2256
|
created: Created
|
|
2197
2257
|
cpu: CPU Usage
|
|
@@ -2402,7 +2462,7 @@ istio:
|
|
|
2402
2462
|
label: Jaeger
|
|
2403
2463
|
description: Monitor and Troubleshoot microservices-based distributed systems.
|
|
2404
2464
|
disabled: '{app} is not installed'
|
|
2405
|
-
cni:
|
|
2465
|
+
cni: Enable CNI
|
|
2406
2466
|
customOverlayFile:
|
|
2407
2467
|
label: Custom Overlay File
|
|
2408
2468
|
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 +2613,21 @@ istio:
|
|
|
2553
2613
|
label: Subject Alternative Names
|
|
2554
2614
|
placeholder: e.g. example.com
|
|
2555
2615
|
add: Add Subject Alternative Name
|
|
2556
|
-
egressGateway:
|
|
2557
|
-
ingressGateway:
|
|
2558
|
-
istiodRemote:
|
|
2559
|
-
kiali:
|
|
2560
|
-
pilot:
|
|
2561
|
-
policy:
|
|
2616
|
+
egressGateway: Enable Egress Gateway
|
|
2617
|
+
ingressGateway: Enable Ingress Gateway
|
|
2618
|
+
istiodRemote: Enable istiodRemote
|
|
2619
|
+
kiali: Enable Kiali
|
|
2620
|
+
pilot: Enable Pilot
|
|
2621
|
+
policy: Enable Policy
|
|
2622
|
+
pilotRequired: Pilot must be enabled in order to enable Kiali
|
|
2562
2623
|
poweredBy: Powered by <a target="_blank" rel="noopener noreferrer nofollow" href='https://istio.io/latest/'>Istio</a>
|
|
2563
|
-
telemetry:
|
|
2624
|
+
telemetry: Enable Telemetry
|
|
2564
2625
|
titles:
|
|
2565
2626
|
components: Components
|
|
2566
2627
|
customAnswers: Custom Answers
|
|
2567
2628
|
advanced: Advanced Settings
|
|
2568
2629
|
description: Description
|
|
2569
|
-
tracing:
|
|
2630
|
+
tracing: Enable Jaeger Tracing (limited)
|
|
2570
2631
|
v1Warning: Please uninstall the current Istio version in the <code>istio-system</code> namespace before attempting to install this version.
|
|
2571
2632
|
|
|
2572
2633
|
labels:
|
|
@@ -2727,6 +2788,7 @@ logging:
|
|
|
2727
2788
|
sslClientCertKey: Cert Key from Secret
|
|
2728
2789
|
loki:
|
|
2729
2790
|
url: URL
|
|
2791
|
+
urlInvalid: Incorrect URL format. Please check and correct your URL format before saving.
|
|
2730
2792
|
tenant: Tenant
|
|
2731
2793
|
username: User from Secret
|
|
2732
2794
|
password: Password from Secret
|
|
@@ -2928,6 +2990,8 @@ members:
|
|
|
2928
2990
|
clusterMembers: Cluster Members
|
|
2929
2991
|
clusterAndProject: Cluster and Project Members
|
|
2930
2992
|
createActionLabel: Add
|
|
2993
|
+
clusterMemebership: Cluster Membership
|
|
2994
|
+
projectMembership: Project Memebership
|
|
2931
2995
|
clusterPermissions:
|
|
2932
2996
|
noDescription: User created - no description
|
|
2933
2997
|
label: Cluster Permissions
|
|
@@ -2952,6 +3016,7 @@ members:
|
|
|
2952
3016
|
custom:
|
|
2953
3017
|
label: Custom
|
|
2954
3018
|
description: Choose individual roles for this user.
|
|
3019
|
+
lockedRole: This role is locked.
|
|
2955
3020
|
localClusterWarning: "Caution: This is the cluster that Rancher is using as a data store. Only administrators should be given write access to this cluster. Users with write access to this cluster can use it to grant themselves access to any part of this installation."
|
|
2956
3021
|
noRolesAssigned: There are no users assigned to this project.
|
|
2957
3022
|
|
|
@@ -3294,6 +3359,7 @@ namespace:
|
|
|
3294
3359
|
resourceQuotas: Resource Quotas
|
|
3295
3360
|
project:
|
|
3296
3361
|
label: Project
|
|
3362
|
+
none: (None)
|
|
3297
3363
|
resources: Resources
|
|
3298
3364
|
enableAutoInjection: Enable Istio Auto Injection
|
|
3299
3365
|
disableAutoInjection: Disable Istio Auto Injection
|
|
@@ -3394,6 +3460,8 @@ networkpolicy:
|
|
|
3394
3460
|
labelsAnnotations:
|
|
3395
3461
|
label: Labels & Annotations
|
|
3396
3462
|
rules:
|
|
3463
|
+
pod: Pod
|
|
3464
|
+
namespace: Namespace
|
|
3397
3465
|
ruleLabel: Rule {index}
|
|
3398
3466
|
addPort: Add allowed port
|
|
3399
3467
|
type: Rule type
|
|
@@ -3420,6 +3488,8 @@ networkpolicy:
|
|
|
3420
3488
|
label: Pod Selector
|
|
3421
3489
|
namespaceSelector:
|
|
3422
3490
|
label: Namespace Selector
|
|
3491
|
+
namespaceAndPodSelector:
|
|
3492
|
+
label: Namespace/Pod Selector
|
|
3423
3493
|
config:
|
|
3424
3494
|
label: Configuration
|
|
3425
3495
|
selectors:
|
|
@@ -3439,6 +3509,18 @@ networkpolicy:
|
|
|
3439
3509
|
=1 {Matches 1 of {total, number} namespaces: "{sample}"}
|
|
3440
3510
|
other {Matches {matched, number} of {total, number} existing namespaces, including "{sample}"}
|
|
3441
3511
|
}
|
|
3512
|
+
matchingNamespacesAndPods:
|
|
3513
|
+
tooltip: A single entry rule that specifies both Namespace Selector and Pod Selector that selects particular Pods within particular namespaces
|
|
3514
|
+
matchesSome: |-
|
|
3515
|
+
{matchedPods, plural,
|
|
3516
|
+
=0 {Matches 0 of {totalPods, number} pods}
|
|
3517
|
+
=1 {Matches 1 of {totalPods, number} pods: "{samplePods}"}
|
|
3518
|
+
other {Matches {matchedPods, number} of {totalPods, number} existing pods, including "{samplePods}"}
|
|
3519
|
+
} in {matchedNamespaces, plural,
|
|
3520
|
+
=0 {0 of {totalNamespaces, number} namespaces}
|
|
3521
|
+
=1 {1 of {totalNamespaces, number} namespaces: "{sampleNamespaces}"}
|
|
3522
|
+
other {{matchedNamespaces, number} of {totalNamespaces, number} existing namespaces, including "{sampleNamespaces}"}
|
|
3523
|
+
}
|
|
3442
3524
|
node:
|
|
3443
3525
|
list:
|
|
3444
3526
|
pool: Pool
|
|
@@ -3449,6 +3531,9 @@ node:
|
|
|
3449
3531
|
poolDescription:
|
|
3450
3532
|
noSize: No Size
|
|
3451
3533
|
noLocation: No Location
|
|
3534
|
+
nodeLabels: Labels
|
|
3535
|
+
hideLabels: Show less
|
|
3536
|
+
showLabels: Show more
|
|
3452
3537
|
detail:
|
|
3453
3538
|
detailTop:
|
|
3454
3539
|
containerRuntime: Container Runtime
|
|
@@ -3857,6 +3942,7 @@ podDisruptionBudget:
|
|
|
3857
3942
|
|
|
3858
3943
|
# Rancher Extensions
|
|
3859
3944
|
plugins:
|
|
3945
|
+
incompatibleDisclaimer: "The latest version of this extension ({ version }) is not compatible with the current Rancher version ({ rancherVersion })."
|
|
3860
3946
|
labels:
|
|
3861
3947
|
builtin: Built-in
|
|
3862
3948
|
experimental: Experimental
|
|
@@ -3890,6 +3976,7 @@ plugins:
|
|
|
3890
3976
|
detail: Detail
|
|
3891
3977
|
versions: Versions
|
|
3892
3978
|
versionError: Could not load version information
|
|
3979
|
+
requiresVersion: "Requires Rancher {version}"
|
|
3893
3980
|
empty:
|
|
3894
3981
|
all: Extensions are neither installed nor available
|
|
3895
3982
|
available: No Extensions available
|
|
@@ -3952,7 +4039,7 @@ podSecurityAdmission:
|
|
|
3952
4039
|
name: Pod Security Admission
|
|
3953
4040
|
description: Define the admission control mode you want to use for the pod security
|
|
3954
4041
|
banner:
|
|
3955
|
-
modifications: '
|
|
4042
|
+
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
4043
|
labels:
|
|
3957
4044
|
enforce: Enforce
|
|
3958
4045
|
audit: Audit
|
|
@@ -4119,6 +4206,7 @@ projectNamespaces:
|
|
|
4119
4206
|
label: Projects/Namespaces
|
|
4120
4207
|
noNamespaces: There are no namespaces defined.
|
|
4121
4208
|
noProjectNoNamespaces: All namespaces are in a project
|
|
4209
|
+
isIstioInjectionEnabled: Istio automatic sidecar injection is enabled for this namespace
|
|
4122
4210
|
|
|
4123
4211
|
prometheusRule:
|
|
4124
4212
|
alertingRules:
|
|
@@ -4467,6 +4555,7 @@ resourceTable:
|
|
|
4467
4555
|
namespace: Group by Namespace
|
|
4468
4556
|
project: Group by Project
|
|
4469
4557
|
node: Group by Node
|
|
4558
|
+
role: Group by Role
|
|
4470
4559
|
cluster: Group by Cluster
|
|
4471
4560
|
groupLabel:
|
|
4472
4561
|
cluster: "<span>Cluster:</span> {name}"
|
|
@@ -5126,6 +5215,7 @@ tableHeaders:
|
|
|
5126
5215
|
clusterGroups: Cluster Groups
|
|
5127
5216
|
commit: Commit
|
|
5128
5217
|
condition: Condition
|
|
5218
|
+
constraint: Constraint
|
|
5129
5219
|
completions: Completions
|
|
5130
5220
|
count: Count
|
|
5131
5221
|
createdAt: Created At
|
|
@@ -5291,6 +5381,7 @@ tableHeaders:
|
|
|
5291
5381
|
target: Target
|
|
5292
5382
|
targetKind: Target Type
|
|
5293
5383
|
targetPort: Target
|
|
5384
|
+
template: Template
|
|
5294
5385
|
type: Type
|
|
5295
5386
|
updated: Updated
|
|
5296
5387
|
up-to-date: Up To Date
|
|
@@ -7105,7 +7196,7 @@ legacy:
|
|
|
7105
7196
|
globalDnsProviders: Global DNS Providers
|
|
7106
7197
|
notifiers: Notifiers
|
|
7107
7198
|
monitoring: Monitoring
|
|
7108
|
-
psps: Pod Security
|
|
7199
|
+
psps: Pod Security Policy Templates
|
|
7109
7200
|
secrets: Secrets
|
|
7110
7201
|
|
|
7111
7202
|
project:
|