@rancher/shell 3.0.7 → 3.0.8-rc.2

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.
Files changed (123) hide show
  1. package/assets/images/vendor/githubapp.svg +13 -0
  2. package/assets/styles/base/_typography.scss +1 -1
  3. package/assets/styles/global/_layout.scss +21 -35
  4. package/assets/styles/themes/_modern.scss +5 -5
  5. package/assets/translations/en-us.yaml +102 -17
  6. package/assets/translations/zh-hans.yaml +0 -4
  7. package/components/EmberPage.vue +1 -1
  8. package/components/Inactivity.vue +222 -106
  9. package/components/InstallHelmCharts.vue +2 -2
  10. package/components/Resource/Detail/CopyToClipboard.vue +1 -1
  11. package/components/Resource/Detail/TitleBar/__tests__/index.test.ts +0 -2
  12. package/components/Resource/Detail/TitleBar/index.vue +10 -6
  13. package/components/ResourceDetail/index.vue +4 -1
  14. package/components/SortableTable/index.vue +18 -2
  15. package/components/{nav/WindowManager → Window}/ContainerLogs.vue +1 -1
  16. package/components/{nav/WindowManager → Window}/ContainerLogsActions.vue +1 -0
  17. package/components/{nav/WindowManager → Window}/__tests__/ContainerLogs.test.ts +1 -1
  18. package/components/{nav/WindowManager → Window}/__tests__/ContainerShell.test.ts +2 -2
  19. package/components/fleet/FleetConfigMapSelector.vue +117 -0
  20. package/components/fleet/FleetSecretSelector.vue +127 -0
  21. package/components/fleet/__tests__/FleetConfigMapSelector.test.ts +125 -0
  22. package/components/fleet/__tests__/FleetSecretSelector.test.ts +82 -0
  23. package/components/form/FileImageSelector.vue +13 -4
  24. package/components/form/FileSelector.vue +11 -2
  25. package/components/form/ResourceLabeledSelect.vue +1 -0
  26. package/components/form/__tests__/ResourceLabeledSelect.test.ts +90 -0
  27. package/components/nav/Header.vue +34 -13
  28. package/components/{DraggableZone.vue → nav/WindowManager/PinArea.vue} +47 -80
  29. package/components/nav/WindowManager/composables/useComponentsMount.ts +70 -0
  30. package/components/nav/WindowManager/composables/useDimensionsHandler.ts +105 -0
  31. package/components/nav/WindowManager/composables/useDragHandler.ts +99 -0
  32. package/components/nav/WindowManager/composables/usePanelHandler.ts +72 -0
  33. package/components/nav/WindowManager/composables/usePanelsHandler.ts +14 -0
  34. package/components/nav/WindowManager/composables/useResizeHandler.ts +167 -0
  35. package/components/nav/WindowManager/composables/useTabsHandler.ts +51 -0
  36. package/components/nav/WindowManager/constants.ts +23 -0
  37. package/components/nav/WindowManager/index.vue +61 -575
  38. package/components/nav/WindowManager/panels/HorizontalPanel.vue +265 -0
  39. package/components/nav/WindowManager/panels/TabBodyContainer.vue +39 -0
  40. package/components/nav/WindowManager/panels/VerticalPanel.vue +308 -0
  41. package/components/templates/default.vue +4 -40
  42. package/components/templates/home.vue +31 -5
  43. package/config/product/auth.js +1 -0
  44. package/config/query-params.js +1 -0
  45. package/config/settings.ts +8 -1
  46. package/config/store.js +4 -2
  47. package/config/types.js +2 -0
  48. package/detail/pod.vue +1 -0
  49. package/dialog/AddonConfigConfirmationDialog.vue +45 -1
  50. package/directives/ui-context.ts +97 -0
  51. package/edit/__tests__/fleet.cattle.io.helmop.test.ts +52 -11
  52. package/edit/auth/AuthProviderWarningBanners.vue +14 -1
  53. package/edit/auth/github-app-steps.vue +97 -0
  54. package/edit/auth/github-steps.vue +75 -0
  55. package/edit/auth/github.vue +94 -65
  56. package/edit/fleet.cattle.io.helmop.vue +51 -2
  57. package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +15 -5
  58. package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +11 -9
  59. package/edit/provisioning.cattle.io.cluster/rke2.vue +56 -9
  60. package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +28 -2
  61. package/initialize/install-directives.js +2 -0
  62. package/list/projectsecret.vue +1 -1
  63. package/machine-config/azure.vue +1 -1
  64. package/mixins/chart.js +1 -1
  65. package/models/__tests__/chart.test.ts +17 -9
  66. package/models/__tests__/compliance.cattle.io.clusterscanprofile.spec.js +30 -0
  67. package/models/catalog.cattle.io.app.js +1 -1
  68. package/models/chart.js +3 -1
  69. package/models/compliance.cattle.io.clusterscanprofile.js +1 -1
  70. package/models/management.cattle.io.authconfig.js +1 -0
  71. package/package.json +2 -2
  72. package/pages/auth/login.vue +5 -2
  73. package/pages/auth/verify.vue +1 -1
  74. package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +3 -2
  75. package/pages/c/_cluster/apps/charts/chart.vue +2 -2
  76. package/pages/c/_cluster/explorer/EventsTable.vue +89 -3
  77. package/pages/c/_cluster/explorer/tools/index.vue +3 -3
  78. package/pages/c/_cluster/settings/performance.vue +12 -25
  79. package/pages/home.vue +313 -12
  80. package/plugins/axios.js +2 -1
  81. package/plugins/dashboard-store/actions.js +1 -1
  82. package/plugins/dashboard-store/resource-class.js +17 -2
  83. package/plugins/steve/steve-pagination-utils.ts +2 -2
  84. package/rancher-components/RcDropdown/RcDropdownItemSelect.vue +5 -1
  85. package/scripts/extension/publish +1 -1
  86. package/store/auth.js +8 -3
  87. package/store/aws.js +8 -6
  88. package/store/features.js +1 -0
  89. package/store/index.js +9 -3
  90. package/store/prefs.js +6 -0
  91. package/store/ui-context.ts +86 -0
  92. package/store/wm.ts +244 -0
  93. package/types/kube/kube-api.ts +2 -1
  94. package/types/rancher/index.d.ts +1 -0
  95. package/types/resources/settings.d.ts +29 -7
  96. package/types/shell/index.d.ts +59 -0
  97. package/types/window-manager.ts +22 -0
  98. package/utils/__tests__/cluster.test.ts +379 -1
  99. package/utils/cluster.js +157 -3
  100. package/utils/dynamic-content/__tests__/config.test.ts +187 -0
  101. package/utils/dynamic-content/__tests__/index.test.ts +390 -0
  102. package/utils/dynamic-content/__tests__/info.test.ts +263 -0
  103. package/utils/dynamic-content/__tests__/new-release.test.ts +216 -0
  104. package/utils/dynamic-content/__tests__/support-notice.test.ts +262 -0
  105. package/utils/dynamic-content/__tests__/util.test.ts +235 -0
  106. package/utils/dynamic-content/config.ts +55 -0
  107. package/utils/dynamic-content/index.ts +273 -0
  108. package/utils/dynamic-content/info.ts +219 -0
  109. package/utils/dynamic-content/new-release.ts +126 -0
  110. package/utils/dynamic-content/support-notice.ts +169 -0
  111. package/utils/dynamic-content/types.d.ts +101 -0
  112. package/utils/dynamic-content/util.ts +122 -0
  113. package/utils/dynamic-importer.js +2 -2
  114. package/utils/inactivity.ts +104 -0
  115. package/utils/pagination-utils.ts +19 -4
  116. package/utils/release-notes.ts +1 -1
  117. package/assets/images/icons/document.svg +0 -3
  118. package/store/wm.js +0 -95
  119. /package/components/{nav/WindowManager → Window}/ChartReadme.vue +0 -0
  120. /package/components/{nav/WindowManager → Window}/ContainerShell.vue +0 -0
  121. /package/components/{nav/WindowManager → Window}/KubectlShell.vue +0 -0
  122. /package/components/{nav/WindowManager → Window}/MachineSsh.vue +0 -0
  123. /package/components/{nav/WindowManager → Window}/Window.vue +0 -0
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 24.3.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 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#181616;}
7
+ </style>
8
+ <path class="st0" d="M30,5C15.9,4.9,4.4,16.4,4.3,30.5c0,11.1,7.1,21,17.6,24.4c0.7,0.3,1.4-0.1,1.7-0.7c0.1-0.2,0.1-0.3,0.1-0.5
9
+ v-4.4c-7.1,1.6-8.6-3.4-8.6-3.4c-1.2-3-2.8-3.7-2.8-3.7c-2.4-1.6,0.2-1.6,0.2-1.6c1.6,0.2,3.1,1.2,3.9,2.6c2.3,3.9,6,2.8,7.4,2.1
10
+ c0.1-1.3,0.7-2.5,1.6-3.4c-5.7-0.6-11.7-2.8-11.7-12.6c0-2.5,0.9-5,2.6-6.9c-0.8-2.2-0.7-4.6,0.2-6.8c0,0,2.1-0.7,7.1,2.6
11
+ c4.2-1.1,8.6-1.1,12.8,0c4.9-3.3,7-2.6,7-2.6c0.9,2.1,1,4.6,0.2,6.8c1.7,1.9,2.7,4.3,2.6,6.9c0,9.8-6,12-11.7,12.6
12
+ c1.2,1.2,1.9,3,1.7,4.7v7c0,0.7,0.5,1.3,1.2,1.3c0.2,0,0.3,0,0.5-0.1c13.4-4.5,20.6-19,16.1-32.4C50.8,12,41,5,30,5z"/>
13
+ </svg>
@@ -15,7 +15,7 @@ H1 {
15
15
  }
16
16
 
17
17
  H2 {
18
- font-size: 21px;
18
+ font-size: $font-size-h2;
19
19
  }
20
20
 
21
21
  H3 {
@@ -71,6 +71,13 @@ HEADER {
71
71
  flex: 1 1 auto;
72
72
  min-height: 0px;
73
73
 
74
+ grid-template-areas:
75
+ "header header header header"
76
+ "wm-vl nav main wm-vr"
77
+ "wm-vl wm wm wm-vr";
78
+ grid-template-rows: var(--header-height) auto var(--wm-height, 0px);
79
+ grid-template-columns: var(--wm-vl-width, 0px) var(--nav-width) auto var(--wm-vr-width, 0px);
80
+
74
81
  &.dashboard-padding-left {
75
82
  padding-left: $app-bar-collapsed-width;
76
83
 
@@ -79,31 +86,6 @@ HEADER {
79
86
  }
80
87
  }
81
88
 
82
- &.pin-right {
83
- grid-template-areas:
84
- "header header header"
85
- "nav main wm";
86
- grid-template-rows: var(--header-height) auto;
87
- grid-template-columns: var(--nav-width) auto var(--wm-width, 0px);
88
- }
89
-
90
- &.pin-bottom {
91
- grid-template-areas:
92
- "header header"
93
- "nav main"
94
- "wm wm";
95
- grid-template-rows: var(--header-height) auto var(--wm-height, 0px);
96
- grid-template-columns: var(--nav-width) auto;
97
- }
98
-
99
- &.pin-left {
100
- grid-template-areas:
101
- "header header header"
102
- "wm nav main";
103
- grid-template-rows: var(--header-height) auto;
104
- grid-template-columns: var(--wm-width, 0px) var(--nav-width) auto;
105
- }
106
-
107
89
  >HEADER {
108
90
  grid-area: header;
109
91
  }
@@ -120,6 +102,20 @@ HEADER {
120
102
  position: relative;
121
103
  }
122
104
 
105
+ .wm-vr {
106
+ grid-area: wm-vr;
107
+ overflow-y: hidden;
108
+ z-index: z-index('windowsManager');
109
+ position: relative;
110
+ }
111
+
112
+ .wm-vl {
113
+ grid-area: wm-vl;
114
+ overflow-y: hidden;
115
+ z-index: z-index('windowsManager');
116
+ position: relative;
117
+ }
118
+
123
119
  .localeSelector {
124
120
  :deep(.v-popper__inner) {
125
121
  padding: 50px 0;
@@ -153,14 +149,4 @@ HEADER {
153
149
  }
154
150
  }
155
151
 
156
- .drag-start {
157
- z-index: 1000;
158
- opacity: 0.5;
159
- transition: opacity .3s ease;
160
- }
161
-
162
- .drag-end {
163
- opacity: 1;
164
- }
165
-
166
152
  // !END
@@ -728,8 +728,8 @@ BODY, .theme-light {
728
728
  --error-badge : #{$error};
729
729
  --on-error-banner : #FFFFFF;
730
730
 
731
- --error-banner-text: #{$error};
732
- --warning-banner-text: var(--warning-text);
731
+ --error-banner-text: #{$grey-100};
732
+ --warning-banner-text: #{$grey-100};
733
733
  }
734
734
 
735
735
  BODY, .theme-dark {
@@ -1058,7 +1058,7 @@ BODY, .theme-dark {
1058
1058
  --rc-disabled-text-color: #{$gray004};
1059
1059
 
1060
1060
  --error-text : #FFAC99;
1061
- --warning-text : #{$warning};
1061
+ --warning-text : #{contrast-color($warning)};
1062
1062
 
1063
1063
  --success-badge : #{rgba($success, 10%)};
1064
1064
  --on-success-banner : #00B752;
@@ -1074,7 +1074,7 @@ BODY, .theme-dark {
1074
1074
 
1075
1075
  --error-banner-bg: #301D1D;
1076
1076
 
1077
- --warning-banner-text : var(--warning-text);
1078
- --error-banner-text : var(--error-text);
1077
+ --warning-banner-text : #{$grey-0};
1078
+ --error-banner-text : #{$grey-0};
1079
1079
  }
1080
1080
 
@@ -370,9 +370,7 @@ layouts:
370
370
  unauthenticated: unauthenticated layout
371
371
  logout: logout layout
372
372
  verify: verify layout
373
-
374
- windowmanager:
375
- closeTab: Close tab {tabId}
373
+
376
374
  about:
377
375
  title: About
378
376
  versions:
@@ -472,7 +470,7 @@ addClusterMemberDialog:
472
470
 
473
471
  addonConfigConfirmation:
474
472
  title: Add-On Reset
475
- body: Changing the Kubernetes Version can reset Add-On values. You should check that the values are as expected before continuing.
473
+ body: Add-On Configuration has changed between Kubernetes versions <b>{previousKubeVersion}</b> and <b>{newKubeVersion}</b> and conflict with your previous values for Add-On {addons}. As a result please re-apply them before continuing.
476
474
 
477
475
  addProjectMemberDialog:
478
476
  title: Add Project Member
@@ -492,6 +490,51 @@ authConfig:
492
490
  allowedPrincipalIds:
493
491
  title: Authorized Users & Groups
494
492
  associatedWarning: 'The {provider} account that is used to enable the external provider will be granted admin permissions. If you use a test account or non-admin account, that account will still be granted admin-level permissions. See <a href="{docsBase}/how-to-guides/new-user-guides/authentication-permissions-and-global-configuration/authentication-config#external-authentication-configuration-and-principal-users" target="_blank" rel="noopener noreferrer nofollow">External Authentication Configuration and Principal Users</a> to understand why.'
493
+ githubapp:
494
+ clientId:
495
+ label: Client ID
496
+ clientSecret:
497
+ label: Client Secret
498
+ githubAppId:
499
+ label: Github App ID
500
+ installationId:
501
+ label: Installation ID
502
+ privateKey:
503
+ label: Private Key
504
+ warning: The GitHub App authentication provider only works with <a href="https://docs.github.com/en/get-started/learning-about-github/types-of-github-accounts" target="_blank" rel="noopener noreferrer nofollow">GitHub Organization accounts</a>. It does not support User accounts.
505
+ form:
506
+ prefix:
507
+ 1: <li>Open your <a href="{baseUrl}/settings/organizations" target="_blank" rel="noopener noreferrer nofollow">GitHub organization settings</a> in a new window</li>
508
+ 2: <li>To the right of the organization, click "Settings"</li>
509
+ 3: <li>In the left sidebar, click "Developer settings" -> "GitHub Apps"</li>
510
+ 4: <li>Click "New Github App"</li>
511
+ instruction: 'Fill in the form with these values:'
512
+ app:
513
+ label: GitHub App name
514
+ value: 'Anything you like, e.g. My {vendor}'
515
+ callback:
516
+ label: Callback URL
517
+ value: '{serverUrl}/verify-auth'
518
+ description:
519
+ label: Application description
520
+ value: 'Optional, can be left blank'
521
+ homepage:
522
+ label: Homepage URL
523
+ create: Click "Create Github App"
524
+ suffix:
525
+ 1: <li>Under Client Secrets, click "Generate a new client secret"</li>
526
+ 2: <li>Under Private Keys, click "Generate a private key"</li>
527
+ 3: <li>Copy and paste the "App ID", "Client ID", "Client Secret", and "Private Key" of your newly created OAuth app into the fields below</li>
528
+ host:
529
+ label: GitHub Enterprise Host
530
+ placeholder: e.g. github.mycompany.example
531
+ target:
532
+ label: Which version of GitHub do you want to use?
533
+ private: A private installation of GitHub Enterprise
534
+ public: Public GitHub.com
535
+ table:
536
+ server: Server
537
+ clientId: Client ID
495
538
  github:
496
539
  clientId:
497
540
  label: Client ID
@@ -1796,7 +1839,7 @@ cluster:
1796
1839
  } / {memory, number} GiB Memory / {storageSize, plural,
1797
1840
  =0 {EBS-Only}
1798
1841
  other {{storageSize, number} {storageUnit} {storageType}}
1799
- }
1842
+ } - {architecture}
1800
1843
  azure:
1801
1844
  acceleratedNetworking:
1802
1845
  label: Accelerated Networking
@@ -2116,7 +2159,7 @@ cluster:
2116
2159
  diskSizeWithMax: Disk size has to be between {diskSizeMin} and {diskSizeMax} based on this image and disk type.
2117
2160
  projects: Image projects should be a comma separated list of alphanumeric string which may contain '-' and '.'
2118
2161
  addOns:
2119
- dependencyBanner: Add-On Configuration can vary between Kubernetes versions. Changing the Kubernetes version may reset the values below.
2162
+ dependencyBanner: Add-On Configuration has changed between Kubernetes versions <b>{previousKubeVersion}</b> and <b>{newKubeVersion}</b> and conflict with your previous values. Please re-apply them.
2120
2163
  additionalManifest:
2121
2164
  title: Additional Manifest
2122
2165
  tooltip: 'Additional Kubernetes Manifest YAML to be applied to the cluster on startup.'
@@ -2718,6 +2761,28 @@ drainNode:
2718
2761
  placeholder: e.g. 60
2719
2762
  custom: "Give up after:"
2720
2763
 
2764
+ dynamicContent:
2765
+ newRelease:
2766
+ title: A new Rancher release is available!
2767
+ message: Rancher {version} has been released!
2768
+ moreInfo: Release Notes
2769
+ multipleNewReleases:
2770
+ title: New Rancher releases are available!
2771
+ message: A new {version1} patch version has been released and a newer {version2} version is also avaialble.
2772
+ moreInfo: "{version} Release Notes"
2773
+ upcomingEom:
2774
+ title: End of Maintainence in {days, plural, =1 {1 day} other {{days} days}}
2775
+ message: This version of Rancher ({version}) will reach End of Maintainence in {days} day(s). Consider upgrading to a supported version soon.
2776
+ eom:
2777
+ title: End of Maintainence reached
2778
+ message: This version of Rancher ({version}) has reached End of Maintainence. Consider upgrading to a supported version.
2779
+ upcomingEol:
2780
+ title: End of Life in {days, plural, =1 {1 day} other {{days} days}}
2781
+ message: This version of Rancher ({version}) will reach End of Life in {days} day(s). Consider upgrading to a supported version soon.
2782
+ eol:
2783
+ title: End of Life reached
2784
+ message: This version of Rancher ({version}) has reached End of Life. Consider upgrading to a supported version.
2785
+
2721
2786
  etcdInfoBanner:
2722
2787
  hasLeader: "Etcd has a leader:"
2723
2788
  leaderChanges: "Number of leader changes:"
@@ -3201,7 +3266,7 @@ fleet:
3201
3266
  none: None
3202
3267
  local: Local
3203
3268
  resources:
3204
- label: 'Resource Handling'
3269
+ label: 'Resources'
3205
3270
  keepResources: Always keep resources
3206
3271
  keepResourcesTooltip: When enabled, resources will be kept when deleting a HelmOp or Bundle - only Helm release secrets will be deleted.
3207
3272
  correctDrift: Enable self-healing
@@ -3255,6 +3320,10 @@ fleet:
3255
3320
  =0 { Adding namespaces here will create a GitRepoRestriction. }
3256
3321
  other { Only the Git Repo Restriction's <code>allowedTargetNamespaces</code> is managed here. You can make additional changes to the Git Repo Restriction}
3257
3322
  }"
3323
+ configMaps:
3324
+ label: Config Maps
3325
+ secrets:
3326
+ label: Secrets
3258
3327
  footer:
3259
3328
  docs: Docs
3260
3329
  download: Download CLI
@@ -3329,6 +3398,9 @@ glance:
3329
3398
  clusterInfo: Cluster Information
3330
3399
  eventsTable: Full events list
3331
3400
  secretsTable: Full secrets list
3401
+ changeEventsListRowCount: Update events table row count
3402
+ showXEvents: Show {count} events
3403
+ useUserPreference: "Use table preference ({count})"
3332
3404
 
3333
3405
  clusterBadge:
3334
3406
  badgeAppearance: Cluster Badge Appearance
@@ -3776,6 +3848,11 @@ landing:
3776
3848
  homepage: Homepage
3777
3849
  clusters:
3778
3850
  title: Clusters
3851
+ tooMany:
3852
+ showAll: Show all clusters (may increase load time)
3853
+ showSome: Show some clusters (may improve load time)
3854
+ showingAll: Showing {total} clusters.
3855
+ showingSome: Showing {rows} of {total} recently created clusters.
3779
3856
  provider: Provider
3780
3857
  distro: Distro
3781
3858
  kubernetesVersion: Kubernetes Version
@@ -4102,6 +4179,7 @@ login:
4102
4179
  welcome: Welcome to {vendor}
4103
4180
  landscapeAlt: Landscape image
4104
4181
  loggedOut: You have been logged out.
4182
+ loggedOutSessionIdle: You've been logged out of Rancher because your session has expired. Log in again to continue.
4105
4183
  loggedOutFromSso: You've been logged out of Rancher, however you may still be logged in to your single sign-on identity provider.
4106
4184
  loggedOutFromSlo: You've been logged out of Rancher and from your single sign-on identity provider.
4107
4185
  loginAgain: Log in again to continue.
@@ -5114,13 +5192,9 @@ podDisruptionBudget:
5114
5192
 
5115
5193
  inactivity:
5116
5194
  title: Session expiring
5117
- titleExpired: Session expired
5118
5195
  banner: Your session is about to expire due to inactivity. Any unsaved changes will be lost.
5119
- bannerExpired: Your session has expired in this tab due to inactivity.
5120
- content: Click “Resume Session” to keep the session in this tab active or refresh the browser after the session has expired.
5121
- contentExpired: To return to this page click “Refresh” below or refresh the browser.
5196
+ content: Click “Resume Session” to keep the session in this browser active.
5122
5197
  cta: Resume Session
5123
- ctaExpired: Refresh
5124
5198
 
5125
5199
  # Rancher Extensions
5126
5200
  plugins:
@@ -5150,6 +5224,8 @@ plugins:
5150
5224
  third-party: This Extension is provided by a Third-Party
5151
5225
  built-in: This Extension is built-in
5152
5226
  image: This Extension Image has been loaded manually
5227
+ tooltips:
5228
+ installing: Installing...
5153
5229
  error:
5154
5230
  title: Error loading extension
5155
5231
  message: Could not load extension code
@@ -7002,7 +7078,15 @@ wizard:
7002
7078
  install: Install
7003
7079
  upgrade: Upgrade
7004
7080
  downgrade: Downgrade
7081
+
7082
+ sideWindow:
7083
+ secondary:
7084
+ resize: Resize secondary window
7085
+
7005
7086
  wm:
7087
+ resize: Resize Window - use arrow keys {arrow1} and {arrow2} to resize with keyboard
7088
+ tabIcon: Window tab icon
7089
+ closeTab: Close tab - {tabId}
7006
7090
  connection:
7007
7091
  connected: Connected
7008
7092
  connecting: Connecting&hellip;
@@ -7039,9 +7123,6 @@ wm:
7039
7123
  timestamps: Show Timestamps
7040
7124
  wrap: Wrap Lines
7041
7125
  containerShell:
7042
- resizeShellWindow: Resize Shell window - use arrow keys {arrow1} and {arrow2} to resize with keyboard
7043
- tabIcon: Shell tab icon
7044
- closeShellTab: Close Shell tab - {tab}
7045
7126
  escapeText: Press Shift+Escape to blur from terminal
7046
7127
  clear: Clear
7047
7128
  containerName: "Container: {label}"
@@ -7595,6 +7676,7 @@ model:
7595
7676
  activedirectory: ActiveDirectory
7596
7677
  azuread: AzureAD
7597
7678
  github: GitHub
7679
+ githubapp: GitHub App
7598
7680
  keycloak: Keycloak
7599
7681
  ldap: LDAP
7600
7682
  openldap: OpenLDAP
@@ -8430,8 +8512,9 @@ advancedSettings:
8430
8512
  'auth-user-info-max-age-seconds': 'The maximum age of a users auth tokens before an auth provider group membership sync will be performed.'
8431
8513
  'auth-user-info-resync-cron': 'Default cron schedule for resyncing auth provider group memberships.'
8432
8514
  'cluster-template-enforcement': 'Non-admins will be restricted to launching clusters via preapproved RKE Templates only.'
8433
- 'auth-user-session-ttl-minutes': 'Custom TTL (in minutes) on a user auth session.'
8434
- 'auth-token-max-ttl-minutes': 'Max TTL (in minutes) for all authentication tokens. When set to 0, the token never expires.'
8515
+ 'auth-user-session-idle-ttl-minutes': 'Custom idle TTL (in minutes) on a user auth session. This is the maximum duration a session can stay alive when there is no user activity in a browser. This should be smaller than "auth-user-session-ttl-minutes". If "auth-user-session-idle-ttl-minutes" is greater than or equal to "auth-user-session-ttl-minutes" then the session idle feature is considered disabled.'
8516
+ 'auth-user-session-ttl-minutes': 'Custom TTL (in minutes) on a user auth session. This is the maximum duration a session can stay alive regardless of user activity in a browser. This should be larger than "auth-user-session-idle-ttl-minutes".'
8517
+ 'auth-token-max-ttl-minutes': 'Max TTL (in minutes) for all tokens except those controlled by "auth-user-session-ttl-minutes" (user session tokens). When set to 0, the token never expires.'
8435
8518
  'kubeconfig-generate-token': 'Automatically generate tokens for users when a kubeconfig is requested.'
8436
8519
  'kubeconfig-default-token-ttl-minutes': 'TTL (in minutes) applied on all kubeconfig tokens. When set to 0, the token never expires.'
8437
8520
  'rke-metadata-config': 'Configure RKE metadata refresh parameters.'
@@ -8489,6 +8572,7 @@ featureFlags:
8489
8572
  performance:
8490
8573
  label: UI Performance Settings
8491
8574
  settingName: Performance
8575
+ deprecatedInactivitySetting: The <i class="mr-5">"Inactivity"</i> setting is now deprecated in favor of the <i class="mr-5">auth-user-session-idle-ttl-minutes</i>&nbsp;<a href="{settingsPageUrl}">Setting</a>.
8492
8576
  deprecatedForSSP: The <i class="mr-5">"{setting}"</i> setting is now deprecated and will be removed in a future release.
8493
8577
  incrementalLoad:
8494
8578
  label: Incremental Loading
@@ -9068,3 +9152,4 @@ component:
9068
9152
  weekdaysAt0830: "At 30 minutes past the hour, every 1 hours, starting at 08:00 AM, Monday through Friday"
9069
9153
  marchToMayHourly: "Every hour, only in March, April, and May"
9070
9154
  every4Hours9to17: "At 0 minutes past the hour, every 4 hours, between 09:00 AM and 05:00 PM"
9155
+
@@ -4000,13 +4000,9 @@ podDisruptionBudget:
4000
4000
 
4001
4001
  inactivity:
4002
4002
  title: 会话即将过期
4003
- titleExpired: 会话已过期
4004
4003
  banner: 由于不活动,你的会话即将过期。任何未保存的更改都将丢失。
4005
- bannerExpired: 由于不活动,此选项卡中的会话已过期。
4006
4004
  content: 单击“恢复会话”来让选项卡中的会话保持活动状态,或在会话过期后刷新浏览器。
4007
- contentExpired: 要返回此页面,请单击下面的“刷新”或刷新浏览器。
4008
4005
  cta: 恢复会话
4009
- ctaExpired: 刷新
4010
4006
 
4011
4007
  # Rancher Extensions
4012
4008
  plugins:
@@ -8,7 +8,7 @@ import { findEmberPage, clearEmberInactiveTimer, startEmberInactiveTimer, EMBER_
8
8
 
9
9
  const EMBER_FRAME_HIDE_CLASS = 'ember-iframe-hidden';
10
10
  const PAGE_CHECK_TIMEOUT = 30000;
11
- const WINDOW_MANAGER = 'windowmanager';
11
+ const WINDOW_MANAGER = 'horizontal-window-manager';
12
12
 
13
13
  // Pages that we should intercept when loaded in the IFRAME and instead
14
14
  // navigate to a page in Cluster Dashboard