@rancher/shell 3.0.12-rc.3 → 3.0.12-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/global/_layout.scss +4 -0
- package/assets/translations/en-us.yaml +144 -41
- package/assets/translations/zh-hans.yaml +1 -7
- package/chart/monitoring/ClusterSelector.vue +0 -21
- package/chart/monitoring/prometheus/index.vue +6 -3
- package/components/CruResource.vue +161 -14
- package/components/ExplorerMembers.vue +8 -4
- package/components/ExplorerProjectsNamespaces.vue +10 -6
- package/components/GrowlManager.vue +4 -0
- package/components/MgmtNodeList.vue +184 -0
- package/components/Resource/Detail/Card/StateCard/__tests__/composables.test.ts +90 -1
- package/components/Resource/Detail/Card/StateCard/composables.ts +57 -87
- package/components/Resource/Detail/Card/StatusCard/__tests__/StatusCard.test.ts +61 -0
- package/components/Resource/Detail/Card/StatusCard/index.vue +61 -15
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +2 -0
- package/components/Resource/Detail/Metadata/KeyValue.vue +5 -2
- package/components/Resource/Detail/Metadata/KeyValueRow.vue +2 -6
- package/components/ResourceDetail/index.vue +1 -1
- package/components/ResourceList/Masthead.vue +7 -1
- package/components/ResourceList/index.vue +82 -1
- package/components/RichTranslation.vue +5 -2
- package/components/Setting.vue +1 -0
- package/components/SubtleLink.vue +31 -6
- package/components/Tabbed/Tab.vue +29 -3
- package/components/Tabbed/index.vue +25 -3
- package/components/TableOfContents/TableOfContents.vue +109 -0
- package/components/TableOfContents/composables.ts +258 -0
- package/components/Window/ContainerShell.vue +21 -11
- package/components/Window/__tests__/ContainerShell.test.ts +107 -37
- package/components/Wizard.vue +9 -4
- package/components/fleet/AppCoChartGrid.vue +401 -0
- package/components/fleet/AppCoEmptyState.vue +127 -0
- package/components/fleet/AppCoPageHeader.vue +119 -0
- package/components/fleet/AppCoVersionSelect.vue +70 -0
- package/components/fleet/FleetClusterTargets/ClusterSelectionFields.vue +217 -0
- package/components/fleet/FleetClusterTargets/TargetsList.vue +123 -35
- package/components/fleet/FleetClusterTargets/index.vue +189 -146
- package/components/fleet/FleetIntro.vue +7 -3
- package/components/fleet/FleetNoWorkspaces.vue +7 -3
- package/components/fleet/FleetSecretSelector.vue +5 -3
- package/components/fleet/FleetValuesFrom.vue +8 -2
- package/components/fleet/GitRepoTargetTab.vue +0 -2
- package/components/fleet/HelmOpAdvancedTab.vue +19 -53
- package/components/fleet/HelmOpAppCoConfigTab.vue +593 -0
- package/components/fleet/HelmOpAppCoResourcesSection.vue +162 -0
- package/components/fleet/HelmOpResourcesSection.vue +82 -0
- package/components/fleet/HelmOpTargetOptionsSection.vue +89 -0
- package/components/fleet/HelmOpTargetTab.vue +64 -60
- package/components/fleet/HelmOpValuesTab.vue +129 -105
- package/components/fleet/__tests__/AppCoEmptyState.test.ts +71 -0
- package/components/fleet/__tests__/AppCoVersionSelect.test.ts +36 -0
- package/components/fleet/__tests__/ClusterSelectionFields.test.ts +62 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +253 -0
- package/components/fleet/__tests__/FleetSecretSelector.test.ts +16 -0
- package/components/fleet/__tests__/FleetValuesFrom.test.ts +44 -0
- package/components/fleet/__tests__/HelmOpAppCoConfigTab.test.ts +59 -0
- package/components/fleet/__tests__/HelmOpAppCoResourcesSection.test.ts +62 -0
- package/components/fleet/__tests__/HelmOpResourcesSection.test.ts +43 -0
- package/components/fleet/__tests__/HelmOpTargetOptionsSection.test.ts +34 -0
- package/components/fleet/__tests__/HelmOpValuesTab.test.ts +39 -0
- package/components/fleet/__tests__/__snapshots__/AppCoEmptyState.test.ts.snap +97 -0
- package/components/fleet/__tests__/__snapshots__/AppCoVersionSelect.test.ts.snap +30 -0
- package/components/fleet/__tests__/__snapshots__/ClusterSelectionFields.test.ts.snap +209 -0
- package/components/fleet/__tests__/__snapshots__/HelmOpTargetOptionsSection.test.ts.snap +140 -0
- package/components/fleet/dashboard/Empty.vue +8 -4
- package/components/fleet/dashboard/ResourceCard.vue +28 -0
- package/components/fleet/dashboard/ResourceDetails.vue +28 -0
- package/components/fleet/dashboard/__tests__/ResourceCard.test.ts +87 -0
- package/components/form/ArrayList.vue +61 -4
- package/components/form/KeyValue.vue +23 -2
- package/components/form/LabeledSelect.vue +39 -1
- package/components/form/Labels.vue +22 -3
- package/components/form/NameNsDescription.vue +13 -5
- package/components/form/ResourceTabs/index.vue +1 -0
- package/components/form/__tests__/NameNsDescription.test.ts +75 -0
- package/components/formatter/InternalExternalIP.vue +10 -4
- package/components/formatter/ServiceTargets.vue +26 -7
- package/components/formatter/__tests__/InternalExternalIP.test.ts +132 -0
- package/components/formatter/__tests__/ServiceTargets.test.ts +412 -0
- package/components/nav/Header.vue +4 -0
- package/components/nav/TopLevelMenu.vue +7 -2
- package/components/nav/__tests__/Header.test.ts +15 -0
- package/components/nav/__tests__/TopLevelMenu.test.ts +120 -2
- package/components/templates/default.vue +9 -4
- package/components/templates/home.vue +9 -4
- package/components/templates/plain.vue +9 -4
- package/composables/useHelmOpResources.test.ts +56 -0
- package/composables/useHelmOpResources.ts +32 -0
- package/composables/useStateColor.test.ts +325 -0
- package/composables/useStateColor.ts +128 -0
- package/config/home-links.js +1 -1
- package/config/labels-annotations.js +1 -0
- package/config/product/explorer.js +17 -4
- package/config/product/manager.js +2 -0
- package/config/router/index.js +16 -0
- package/config/router/navigation-guards/__tests__/authentication.test.ts +130 -0
- package/config/router/navigation-guards/authentication.js +10 -4
- package/config/router/routes.js +20 -6
- package/config/settings.ts +0 -2
- package/config/table-headers.js +3 -4
- package/config/types.js +9 -0
- package/core/plugin-products-base.ts +3 -3
- package/core/plugin-types.ts +83 -30
- package/core/plugin.ts +3 -0
- package/core/types-provisioning.ts +34 -1
- package/core/types.ts +15 -2
- package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +114 -0
- package/detail/__tests__/workload.test.ts +3 -152
- package/detail/catalog.cattle.io.clusterrepo.vue +1 -1
- package/detail/provisioning.cattle.io.cluster.vue +30 -4
- package/detail/workload/index.vue +12 -55
- package/edit/__tests__/catalog.cattle.io.clusterrepo.test.ts +248 -0
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +105 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/General.test.ts.snap +6 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/index.test.ts.snap +1 -0
- package/edit/auth/__tests__/azuread.test.ts +34 -9
- package/edit/auth/__tests__/github.test.ts +234 -0
- package/edit/auth/__tests__/oidc.test.ts +26 -6
- package/edit/auth/__tests__/saml.test.ts +196 -0
- package/edit/auth/azuread.vue +128 -95
- package/edit/auth/github.vue +72 -13
- package/edit/auth/ldap/__tests__/index.test.ts +206 -0
- package/edit/auth/ldap/config.vue +8 -0
- package/edit/auth/ldap/index.vue +75 -1
- package/edit/auth/oidc.vue +119 -73
- package/edit/auth/saml.vue +76 -12
- package/edit/catalog.cattle.io.clusterrepo.vue +140 -32
- package/edit/fleet.cattle.io.helmop.vue +491 -136
- package/edit/management.cattle.io.user.vue +5 -2
- package/edit/provisioning.cattle.io.cluster/rke2.vue +84 -10
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +11 -0
- package/list/group.principal.vue +5 -4
- package/list/harvesterhci.io.management.cluster.vue +8 -9
- package/list/management.cattle.io.user.vue +12 -9
- package/list/provisioning.cattle.io.cluster.vue +16 -10
- package/mixins/__tests__/auth-config.test.ts +90 -0
- package/mixins/__tests__/chart.test.ts +94 -0
- package/mixins/__tests__/resource-fetch-api-pagination.test.ts +48 -0
- package/mixins/auth-config.js +7 -0
- package/mixins/chart.js +11 -2
- package/mixins/child-hook.js +12 -6
- package/mixins/create-edit-view/impl.js +5 -3
- package/mixins/resource-fetch-api-pagination.js +21 -1
- package/models/__tests__/catalog.cattle.io.clusterrepo.test.ts +57 -0
- package/models/__tests__/compliance.cattle.io.clusterscan.test.ts +144 -0
- package/models/__tests__/fleet-application.test.ts +175 -0
- package/models/__tests__/fleet.cattle.io.bundle.test.ts +169 -0
- package/models/__tests__/fleet.cattle.io.helmop.test.ts +84 -0
- package/models/__tests__/management.cattle.io.node.ts +22 -0
- package/models/__tests__/namespace.test.ts +36 -0
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +49 -0
- package/models/__tests__/workload.test.ts +401 -26
- package/models/catalog.cattle.io.clusterrepo.js +28 -4
- package/models/compliance.cattle.io.clusterscan.js +39 -4
- package/models/fleet-application.js +4 -0
- package/models/fleet.cattle.io.helmop.js +20 -1
- package/models/management.cattle.io.cluster.js +18 -2
- package/models/management.cattle.io.node.js +44 -3
- package/models/namespace.js +1 -1
- package/models/pod.js +33 -1
- package/models/provisioning.cattle.io.cluster.js +5 -5
- package/models/workload.js +108 -13
- package/models/workload.service.js +5 -0
- package/package.json +14 -13
- package/pages/about.vue +5 -6
- package/pages/auth/login.vue +0 -35
- package/pages/auth/setup.vue +11 -0
- package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +2 -2
- package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +10 -1
- package/pages/c/_cluster/apps/charts/__tests__/index.test.ts +93 -0
- package/pages/c/_cluster/apps/charts/chart.vue +2 -1
- package/pages/c/_cluster/apps/charts/index.vue +48 -10
- package/pages/c/_cluster/apps/charts/install.vue +122 -116
- package/pages/c/_cluster/auth/roles/index.vue +5 -4
- package/pages/c/_cluster/explorer/workload-dashboard/ByNamespaceSection.vue +31 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByStateSection.vue +138 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByTypeSection.vue +30 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadCard.vue +155 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadNamespaceCard.vue +142 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadTypeCard.vue +159 -0
- package/pages/c/_cluster/explorer/workload-dashboard/__tests__/composable.test.ts +561 -0
- package/pages/c/_cluster/explorer/workload-dashboard/composable.ts +440 -0
- package/pages/c/_cluster/explorer/workload-dashboard/index.vue +187 -0
- package/pages/c/_cluster/explorer/workload-dashboard/types.ts +80 -0
- package/pages/c/_cluster/fleet/application/create.vue +187 -136
- package/pages/c/_cluster/fleet/application/index.vue +5 -3
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailBody.vue +338 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailHeader.vue +121 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/chart.vue +369 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/charts.vue +248 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/credentials.vue +310 -0
- package/pages/c/_cluster/fleet/index.vue +2 -2
- package/pages/c/_cluster/uiplugins/__tests__/index.test.ts +96 -0
- package/pages/c/_cluster/uiplugins/index.vue +15 -0
- package/pages/fail-whale.vue +16 -11
- package/pages/home.vue +16 -46
- package/plugins/clean-html.d.ts +9 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +93 -0
- package/plugins/dashboard-store/resource-class.js +62 -7
- package/plugins/steve/__tests__/actions.test.ts +212 -0
- package/plugins/steve/actions.js +96 -0
- package/plugins/steve/steve-pagination-utils.ts +1 -1
- package/rancher-components/Accordion/Accordion.vue +53 -9
- package/rancher-components/Form/Checkbox/Checkbox.vue +14 -0
- package/rancher-components/Form/Radio/RadioButton.vue +17 -1
- package/rancher-components/Form/Radio/RadioGroup.vue +10 -0
- package/rancher-components/Pill/RcTag/RcTag.vue +3 -2
- package/rancher-components/RcButton/RcButton.test.ts +103 -0
- package/rancher-components/RcButton/RcButton.vue +94 -15
- package/rancher-components/RcButton/types.ts +3 -0
- package/rancher-components/RcItemCard/RcItemCard.test.ts +18 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +2 -2
- package/rancher-components/RcSection/RcSection.vue +28 -3
- package/scripts/extension/helm/package/Dockerfile +1 -1
- package/scripts/test-plugins-build.sh +2 -1
- package/store/__tests__/notifications.test.ts +434 -0
- package/store/catalog.js +57 -0
- package/store/plugins.js +7 -4
- package/types/components/buttonGroup.ts +5 -0
- package/types/shell/index.d.ts +104 -70
- package/utils/__tests__/auth.test.ts +273 -0
- package/utils/__tests__/computed.test.ts +193 -0
- package/utils/__tests__/cspAdaptor.test.ts +163 -0
- package/utils/__tests__/dom.test.ts +81 -0
- package/utils/__tests__/duration.test.ts +37 -1
- package/utils/__tests__/dynamic-importer.test.ts +102 -0
- package/utils/__tests__/fleet-appco.test.ts +312 -0
- package/utils/__tests__/monitoring.test.ts +130 -0
- package/utils/__tests__/object.test.ts +22 -0
- package/utils/__tests__/platform.test.ts +91 -0
- package/utils/__tests__/position.test.ts +237 -0
- package/utils/__tests__/provider.test.ts +51 -1
- package/utils/__tests__/queue.test.ts +232 -0
- package/utils/__tests__/release-notes.test.ts +221 -0
- package/utils/__tests__/router.test.js +254 -1
- package/utils/__tests__/select.test.ts +208 -0
- package/utils/__tests__/time.test.ts +265 -1
- package/utils/__tests__/title.test.ts +47 -0
- package/utils/__tests__/width.test.ts +53 -0
- package/utils/__tests__/window.test.ts +158 -0
- package/utils/__tests__/xccdf.test.ts +126 -6
- package/utils/crypto/__tests__/browserHashUtils.test.ts +98 -0
- package/utils/crypto/__tests__/index.test.ts +144 -0
- package/utils/duration.ts +104 -0
- package/utils/dynamic-content/__tests__/notification-handler.test.ts +196 -0
- package/utils/dynamic-content/info.ts +2 -1
- package/utils/error.js +13 -0
- package/utils/fleet-appco.ts +323 -0
- package/utils/object.js +22 -2
- package/utils/provider.ts +12 -0
- package/utils/validators/__tests__/container-images.test.ts +104 -0
- package/utils/validators/__tests__/flow-output.test.ts +91 -0
- package/utils/validators/__tests__/logging-outputs.test.ts +58 -0
- package/utils/validators/__tests__/monitoring-route.test.ts +119 -0
- package/utils/xccdf.ts +39 -42
- package/vue.config.js +1 -1
- package/pages/support/index.vue +0 -264
- package/utils/duration.js +0 -43
package/types/shell/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
|
27
27
|
export const IMPORTED_CLUSTER_VERSION_MANAGEMENT: "rancher.io/imported-cluster-version-management";
|
|
28
28
|
export const UI_PROJECT_SECRET: "management.cattle.io/project-scoped-secret";
|
|
29
29
|
export const UI_PROJECT_SECRET_COPY: "management.cattle.io/project-scoped-secret-copy";
|
|
30
|
+
export const SERVICE_LINKS: "ui.rancher/service-links";
|
|
30
31
|
export namespace KUBERNETES {
|
|
31
32
|
let SERVICE_ACCOUNT_UID: string;
|
|
32
33
|
let SERVICE_ACCOUNT_NAME: string;
|
|
@@ -194,6 +195,7 @@ export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
|
194
195
|
export const IMPORTED_CLUSTER_VERSION_MANAGEMENT: "rancher.io/imported-cluster-version-management";
|
|
195
196
|
export const UI_PROJECT_SECRET: "management.cattle.io/project-scoped-secret";
|
|
196
197
|
export const UI_PROJECT_SECRET_COPY: "management.cattle.io/project-scoped-secret-copy";
|
|
198
|
+
export const SERVICE_LINKS: "ui.rancher/service-links";
|
|
197
199
|
export namespace KUBERNETES {
|
|
198
200
|
let SERVICE_ACCOUNT_UID: string;
|
|
199
201
|
let SERVICE_ACCOUNT_NAME: string;
|
|
@@ -1923,8 +1925,6 @@ export namespace FLEET_APPLICATION_TYPE {
|
|
|
1923
1925
|
export { sort_79 as sort };
|
|
1924
1926
|
let search_10: boolean;
|
|
1925
1927
|
export { search_10 as search };
|
|
1926
|
-
let align_12: string;
|
|
1927
|
-
export { align_12 as align };
|
|
1928
1928
|
let width_22: number;
|
|
1929
1929
|
export { width_22 as width };
|
|
1930
1930
|
}
|
|
@@ -1979,8 +1979,8 @@ export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
|
1979
1979
|
export { search_13 as search };
|
|
1980
1980
|
let formatter_49: string;
|
|
1981
1981
|
export { formatter_49 as formatter };
|
|
1982
|
-
let
|
|
1983
|
-
export {
|
|
1982
|
+
let align_12: string;
|
|
1983
|
+
export { align_12 as align };
|
|
1984
1984
|
let width_23: number;
|
|
1985
1985
|
export { width_23 as width };
|
|
1986
1986
|
}
|
|
@@ -1997,8 +1997,8 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
1997
1997
|
export { search_14 as search };
|
|
1998
1998
|
let formatter_50: string;
|
|
1999
1999
|
export { formatter_50 as formatter };
|
|
2000
|
-
let
|
|
2001
|
-
export {
|
|
2000
|
+
let align_13: string;
|
|
2001
|
+
export { align_13 as align };
|
|
2002
2002
|
let width_24: number;
|
|
2003
2003
|
export { width_24 as width };
|
|
2004
2004
|
}
|
|
@@ -2035,8 +2035,8 @@ export namespace APP_SUMMARY {
|
|
|
2035
2035
|
export { search_15 as search };
|
|
2036
2036
|
let formatter_52: string;
|
|
2037
2037
|
export { formatter_52 as formatter };
|
|
2038
|
-
let
|
|
2039
|
-
export {
|
|
2038
|
+
let align_14: string;
|
|
2039
|
+
export { align_14 as align };
|
|
2040
2040
|
let width_26: number;
|
|
2041
2041
|
export { width_26 as width };
|
|
2042
2042
|
}
|
|
@@ -2259,8 +2259,8 @@ export namespace ACCESS_KEY {
|
|
|
2259
2259
|
export { name_112 as name };
|
|
2260
2260
|
let labelKey_109: string;
|
|
2261
2261
|
export { labelKey_109 as labelKey };
|
|
2262
|
-
let
|
|
2263
|
-
export {
|
|
2262
|
+
let align_15: string;
|
|
2263
|
+
export { align_15 as align };
|
|
2264
2264
|
let sort_101: string[];
|
|
2265
2265
|
export { sort_101 as sort };
|
|
2266
2266
|
let width_28: number;
|
|
@@ -2275,8 +2275,8 @@ export namespace SCOPE {
|
|
|
2275
2275
|
export { labelKey_110 as labelKey };
|
|
2276
2276
|
let dashIfEmpty_6: boolean;
|
|
2277
2277
|
export { dashIfEmpty_6 as dashIfEmpty };
|
|
2278
|
-
let
|
|
2279
|
-
export {
|
|
2278
|
+
let align_16: string;
|
|
2279
|
+
export { align_16 as align };
|
|
2280
2280
|
let sort_102: string[];
|
|
2281
2281
|
export { sort_102 as sort };
|
|
2282
2282
|
let width_29: number;
|
|
@@ -2295,8 +2295,8 @@ export namespace EXPIRES {
|
|
|
2295
2295
|
export { value_113 as value };
|
|
2296
2296
|
let labelKey_111: string;
|
|
2297
2297
|
export { labelKey_111 as labelKey };
|
|
2298
|
-
let
|
|
2299
|
-
export {
|
|
2298
|
+
let align_17: string;
|
|
2299
|
+
export { align_17 as align };
|
|
2300
2300
|
let sort_104: string[];
|
|
2301
2301
|
export { sort_104 as sort };
|
|
2302
2302
|
let width_30: number;
|
|
@@ -2311,8 +2311,8 @@ export namespace LAST_USED {
|
|
|
2311
2311
|
export { value_114 as value };
|
|
2312
2312
|
let labelKey_112: string;
|
|
2313
2313
|
export { labelKey_112 as labelKey };
|
|
2314
|
-
let
|
|
2315
|
-
export {
|
|
2314
|
+
let align_18: string;
|
|
2315
|
+
export { align_18 as align };
|
|
2316
2316
|
let sort_105: string[];
|
|
2317
2317
|
export { sort_105 as sort };
|
|
2318
2318
|
let width_31: number;
|
|
@@ -2337,8 +2337,8 @@ export namespace RESTART {
|
|
|
2337
2337
|
export { formatter_64 as formatter };
|
|
2338
2338
|
let width_32: number;
|
|
2339
2339
|
export { width_32 as width };
|
|
2340
|
-
let
|
|
2341
|
-
export {
|
|
2340
|
+
let align_19: string;
|
|
2341
|
+
export { align_19 as align };
|
|
2342
2342
|
}
|
|
2343
2343
|
export namespace ROLE {
|
|
2344
2344
|
let name_117: string;
|
|
@@ -2355,8 +2355,8 @@ export namespace FEATURE_DESCRIPTION {
|
|
|
2355
2355
|
export { labelKey_115 as labelKey };
|
|
2356
2356
|
let value_117: string;
|
|
2357
2357
|
export { value_117 as value };
|
|
2358
|
-
let
|
|
2359
|
-
export {
|
|
2358
|
+
let align_20: string;
|
|
2359
|
+
export { align_20 as align };
|
|
2360
2360
|
let sort_107: string[];
|
|
2361
2361
|
export { sort_107 as sort };
|
|
2362
2362
|
let formatter_65: string;
|
|
@@ -3722,8 +3722,6 @@ export namespace FLEET_APPLICATION_TYPE {
|
|
|
3722
3722
|
export { sort_79 as sort };
|
|
3723
3723
|
let search_10: boolean;
|
|
3724
3724
|
export { search_10 as search };
|
|
3725
|
-
let align_12: string;
|
|
3726
|
-
export { align_12 as align };
|
|
3727
3725
|
let width_22: number;
|
|
3728
3726
|
export { width_22 as width };
|
|
3729
3727
|
}
|
|
@@ -3778,8 +3776,8 @@ export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
|
3778
3776
|
export { search_13 as search };
|
|
3779
3777
|
let formatter_49: string;
|
|
3780
3778
|
export { formatter_49 as formatter };
|
|
3781
|
-
let
|
|
3782
|
-
export {
|
|
3779
|
+
let align_12: string;
|
|
3780
|
+
export { align_12 as align };
|
|
3783
3781
|
let width_23: number;
|
|
3784
3782
|
export { width_23 as width };
|
|
3785
3783
|
}
|
|
@@ -3796,8 +3794,8 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
3796
3794
|
export { search_14 as search };
|
|
3797
3795
|
let formatter_50: string;
|
|
3798
3796
|
export { formatter_50 as formatter };
|
|
3799
|
-
let
|
|
3800
|
-
export {
|
|
3797
|
+
let align_13: string;
|
|
3798
|
+
export { align_13 as align };
|
|
3801
3799
|
let width_24: number;
|
|
3802
3800
|
export { width_24 as width };
|
|
3803
3801
|
}
|
|
@@ -3834,8 +3832,8 @@ export namespace APP_SUMMARY {
|
|
|
3834
3832
|
export { search_15 as search };
|
|
3835
3833
|
let formatter_52: string;
|
|
3836
3834
|
export { formatter_52 as formatter };
|
|
3837
|
-
let
|
|
3838
|
-
export {
|
|
3835
|
+
let align_14: string;
|
|
3836
|
+
export { align_14 as align };
|
|
3839
3837
|
let width_26: number;
|
|
3840
3838
|
export { width_26 as width };
|
|
3841
3839
|
}
|
|
@@ -4058,8 +4056,8 @@ export namespace ACCESS_KEY {
|
|
|
4058
4056
|
export { name_112 as name };
|
|
4059
4057
|
let labelKey_109: string;
|
|
4060
4058
|
export { labelKey_109 as labelKey };
|
|
4061
|
-
let
|
|
4062
|
-
export {
|
|
4059
|
+
let align_15: string;
|
|
4060
|
+
export { align_15 as align };
|
|
4063
4061
|
let sort_101: string[];
|
|
4064
4062
|
export { sort_101 as sort };
|
|
4065
4063
|
let width_28: number;
|
|
@@ -4074,8 +4072,8 @@ export namespace SCOPE {
|
|
|
4074
4072
|
export { labelKey_110 as labelKey };
|
|
4075
4073
|
let dashIfEmpty_6: boolean;
|
|
4076
4074
|
export { dashIfEmpty_6 as dashIfEmpty };
|
|
4077
|
-
let
|
|
4078
|
-
export {
|
|
4075
|
+
let align_16: string;
|
|
4076
|
+
export { align_16 as align };
|
|
4079
4077
|
let sort_102: string[];
|
|
4080
4078
|
export { sort_102 as sort };
|
|
4081
4079
|
let width_29: number;
|
|
@@ -4094,8 +4092,8 @@ export namespace EXPIRES {
|
|
|
4094
4092
|
export { value_113 as value };
|
|
4095
4093
|
let labelKey_111: string;
|
|
4096
4094
|
export { labelKey_111 as labelKey };
|
|
4097
|
-
let
|
|
4098
|
-
export {
|
|
4095
|
+
let align_17: string;
|
|
4096
|
+
export { align_17 as align };
|
|
4099
4097
|
let sort_104: string[];
|
|
4100
4098
|
export { sort_104 as sort };
|
|
4101
4099
|
let width_30: number;
|
|
@@ -4110,8 +4108,8 @@ export namespace LAST_USED {
|
|
|
4110
4108
|
export { value_114 as value };
|
|
4111
4109
|
let labelKey_112: string;
|
|
4112
4110
|
export { labelKey_112 as labelKey };
|
|
4113
|
-
let
|
|
4114
|
-
export {
|
|
4111
|
+
let align_18: string;
|
|
4112
|
+
export { align_18 as align };
|
|
4115
4113
|
let sort_105: string[];
|
|
4116
4114
|
export { sort_105 as sort };
|
|
4117
4115
|
let width_31: number;
|
|
@@ -4136,8 +4134,8 @@ export namespace RESTART {
|
|
|
4136
4134
|
export { formatter_64 as formatter };
|
|
4137
4135
|
let width_32: number;
|
|
4138
4136
|
export { width_32 as width };
|
|
4139
|
-
let
|
|
4140
|
-
export {
|
|
4137
|
+
let align_19: string;
|
|
4138
|
+
export { align_19 as align };
|
|
4141
4139
|
}
|
|
4142
4140
|
export namespace ROLE {
|
|
4143
4141
|
let name_117: string;
|
|
@@ -4154,8 +4152,8 @@ export namespace FEATURE_DESCRIPTION {
|
|
|
4154
4152
|
export { labelKey_115 as labelKey };
|
|
4155
4153
|
let value_117: string;
|
|
4156
4154
|
export { value_117 as value };
|
|
4157
|
-
let
|
|
4158
|
-
export {
|
|
4155
|
+
let align_20: string;
|
|
4156
|
+
export { align_20 as align };
|
|
4159
4157
|
let sort_107: string[];
|
|
4160
4158
|
export { sort_107 as sort };
|
|
4161
4159
|
let formatter_65: string;
|
|
@@ -4412,6 +4410,7 @@ export namespace RBAC {
|
|
|
4412
4410
|
let CLUSTER_ROLE_BINDING: string;
|
|
4413
4411
|
}
|
|
4414
4412
|
export const WORKLOAD: "workload";
|
|
4413
|
+
export const WORKLOAD_DASHBOARD: "workload-dashboard";
|
|
4415
4414
|
export namespace WORKLOAD_TYPES {
|
|
4416
4415
|
let DEPLOYMENT: string;
|
|
4417
4416
|
let CRON_JOB: string;
|
|
@@ -4577,6 +4576,7 @@ export namespace CAPI {
|
|
|
4577
4576
|
let MACHINE: string;
|
|
4578
4577
|
let RANCHER_CLUSTER: string;
|
|
4579
4578
|
let MACHINE_CONFIG_GROUP: string;
|
|
4579
|
+
let CAPI_PROVIDER: string;
|
|
4580
4580
|
}
|
|
4581
4581
|
export namespace FLEET {
|
|
4582
4582
|
export let APPLICATION: string;
|
|
@@ -4588,6 +4588,7 @@ export namespace FLEET {
|
|
|
4588
4588
|
export let DASHBOARD: string;
|
|
4589
4589
|
export let GIT_REPO: string;
|
|
4590
4590
|
export let HELM_OP: string;
|
|
4591
|
+
export let SUSE_APP_COLLECTION: string;
|
|
4591
4592
|
export let WORKSPACE: string;
|
|
4592
4593
|
let TOKEN_2: string;
|
|
4593
4594
|
export { TOKEN_2 as TOKEN };
|
|
@@ -4694,7 +4695,8 @@ export namespace CLUSTER_REPO_TYPES {
|
|
|
4694
4695
|
let GIT_REPO_1: string;
|
|
4695
4696
|
export { GIT_REPO_1 as GIT_REPO };
|
|
4696
4697
|
export let OCI_URL: string;
|
|
4697
|
-
|
|
4698
|
+
let SUSE_APP_COLLECTION_1: string;
|
|
4699
|
+
export { SUSE_APP_COLLECTION_1 as SUSE_APP_COLLECTION };
|
|
4698
4700
|
}
|
|
4699
4701
|
/**
|
|
4700
4702
|
* The `generateName` prefix used when creating authentication secrets
|
|
@@ -4706,6 +4708,11 @@ export const CLUSTER_REPO_APPCO_AUTH_GENERATE_NAME: "clusterrepo-appco-auth-";
|
|
|
4706
4708
|
* for standard repositories.
|
|
4707
4709
|
*/
|
|
4708
4710
|
export const CLUSTER_REPO_AUTH_GENERATE_NAME: "clusterrepo-auth-";
|
|
4711
|
+
/**
|
|
4712
|
+
* The `generateName` prefix used when creating Helm Op authentication secrets
|
|
4713
|
+
* for standard Helm sources.
|
|
4714
|
+
*/
|
|
4715
|
+
export const AUTH_GENERATE_NAME: "auth-";
|
|
4709
4716
|
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
4710
4717
|
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
4711
4718
|
export const DEPRECATED: "Deprecated";
|
|
@@ -4788,6 +4795,7 @@ export namespace RBAC {
|
|
|
4788
4795
|
let CLUSTER_ROLE_BINDING: string;
|
|
4789
4796
|
}
|
|
4790
4797
|
export const WORKLOAD: "workload";
|
|
4798
|
+
export const WORKLOAD_DASHBOARD: "workload-dashboard";
|
|
4791
4799
|
export namespace WORKLOAD_TYPES {
|
|
4792
4800
|
let DEPLOYMENT: string;
|
|
4793
4801
|
let CRON_JOB: string;
|
|
@@ -4953,6 +4961,7 @@ export namespace CAPI {
|
|
|
4953
4961
|
let MACHINE: string;
|
|
4954
4962
|
let RANCHER_CLUSTER: string;
|
|
4955
4963
|
let MACHINE_CONFIG_GROUP: string;
|
|
4964
|
+
let CAPI_PROVIDER: string;
|
|
4956
4965
|
}
|
|
4957
4966
|
export namespace FLEET {
|
|
4958
4967
|
export let APPLICATION: string;
|
|
@@ -4964,6 +4973,7 @@ export namespace FLEET {
|
|
|
4964
4973
|
export let DASHBOARD: string;
|
|
4965
4974
|
export let GIT_REPO: string;
|
|
4966
4975
|
export let HELM_OP: string;
|
|
4976
|
+
export let SUSE_APP_COLLECTION: string;
|
|
4967
4977
|
export let WORKSPACE: string;
|
|
4968
4978
|
let TOKEN_2: string;
|
|
4969
4979
|
export { TOKEN_2 as TOKEN };
|
|
@@ -5070,7 +5080,8 @@ export namespace CLUSTER_REPO_TYPES {
|
|
|
5070
5080
|
let GIT_REPO_1: string;
|
|
5071
5081
|
export { GIT_REPO_1 as GIT_REPO };
|
|
5072
5082
|
export let OCI_URL: string;
|
|
5073
|
-
|
|
5083
|
+
let SUSE_APP_COLLECTION_1: string;
|
|
5084
|
+
export { SUSE_APP_COLLECTION_1 as SUSE_APP_COLLECTION };
|
|
5074
5085
|
}
|
|
5075
5086
|
/**
|
|
5076
5087
|
* The `generateName` prefix used when creating authentication secrets
|
|
@@ -5082,6 +5093,11 @@ export const CLUSTER_REPO_APPCO_AUTH_GENERATE_NAME: "clusterrepo-appco-auth-";
|
|
|
5082
5093
|
* for standard repositories.
|
|
5083
5094
|
*/
|
|
5084
5095
|
export const CLUSTER_REPO_AUTH_GENERATE_NAME: "clusterrepo-auth-";
|
|
5096
|
+
/**
|
|
5097
|
+
* The `generateName` prefix used when creating Helm Op authentication secrets
|
|
5098
|
+
* for standard Helm sources.
|
|
5099
|
+
*/
|
|
5100
|
+
export const AUTH_GENERATE_NAME: "auth-";
|
|
5085
5101
|
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
5086
5102
|
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
5087
5103
|
export const DEPRECATED: "Deprecated";
|
|
@@ -5342,6 +5358,7 @@ export default _default;
|
|
|
5342
5358
|
// @shell/mixins/mixins/resource-fetch-api-pagination
|
|
5343
5359
|
|
|
5344
5360
|
declare module '@shell/mixins/mixins/resource-fetch-api-pagination' {
|
|
5361
|
+
export function parseStateFilter(stateFilter: any): any[];
|
|
5345
5362
|
declare namespace _default {
|
|
5346
5363
|
namespace props {
|
|
5347
5364
|
namespace namespaced {
|
|
@@ -5470,6 +5487,7 @@ export default _default;
|
|
|
5470
5487
|
// @shell/mixins/mixins/resource-fetch-api-pagination.js
|
|
5471
5488
|
|
|
5472
5489
|
declare module '@shell/mixins/mixins/resource-fetch-api-pagination.js' {
|
|
5490
|
+
export function parseStateFilter(stateFilter: any): any[];
|
|
5473
5491
|
declare namespace _default {
|
|
5474
5492
|
namespace props {
|
|
5475
5493
|
namespace namespaced {
|
|
@@ -5831,18 +5849,21 @@ export default class ClusterRepo {
|
|
|
5831
5849
|
get canLoad(): boolean;
|
|
5832
5850
|
get isSuseAppCollectionFromUI(): any;
|
|
5833
5851
|
get isSuseAppCollection(): any;
|
|
5834
|
-
get typeDisplay():
|
|
5852
|
+
get typeDisplay(): any;
|
|
5835
5853
|
get nameDisplay(): any;
|
|
5836
5854
|
detailPageHeaderActionOverride(realMode: any): any;
|
|
5837
5855
|
get urlDisplay(): any;
|
|
5838
5856
|
get branchDisplay(): any;
|
|
5857
|
+
get defaultRefreshIntervalHours(): 1 | 24;
|
|
5858
|
+
get defaultRefreshInterval(): number;
|
|
5859
|
+
get refreshIntervalDisplay(): any;
|
|
5839
5860
|
get details(): ({
|
|
5840
|
-
label:
|
|
5841
|
-
content:
|
|
5861
|
+
label: any;
|
|
5862
|
+
content: any;
|
|
5842
5863
|
formatter?: undefined;
|
|
5843
5864
|
formatterOpts?: undefined;
|
|
5844
5865
|
} | {
|
|
5845
|
-
label:
|
|
5866
|
+
label: any;
|
|
5846
5867
|
content: any;
|
|
5847
5868
|
formatter: string;
|
|
5848
5869
|
formatterOpts: {
|
|
@@ -5889,18 +5910,21 @@ export default class ClusterRepo {
|
|
|
5889
5910
|
get canLoad(): boolean;
|
|
5890
5911
|
get isSuseAppCollectionFromUI(): any;
|
|
5891
5912
|
get isSuseAppCollection(): any;
|
|
5892
|
-
get typeDisplay():
|
|
5913
|
+
get typeDisplay(): any;
|
|
5893
5914
|
get nameDisplay(): any;
|
|
5894
5915
|
detailPageHeaderActionOverride(realMode: any): any;
|
|
5895
5916
|
get urlDisplay(): any;
|
|
5896
5917
|
get branchDisplay(): any;
|
|
5918
|
+
get defaultRefreshIntervalHours(): 1 | 24;
|
|
5919
|
+
get defaultRefreshInterval(): number;
|
|
5920
|
+
get refreshIntervalDisplay(): any;
|
|
5897
5921
|
get details(): ({
|
|
5898
|
-
label:
|
|
5899
|
-
content:
|
|
5922
|
+
label: any;
|
|
5923
|
+
content: any;
|
|
5900
5924
|
formatter?: undefined;
|
|
5901
5925
|
formatterOpts?: undefined;
|
|
5902
5926
|
} | {
|
|
5903
|
-
label:
|
|
5927
|
+
label: any;
|
|
5904
5928
|
content: any;
|
|
5905
5929
|
formatter: string;
|
|
5906
5930
|
formatterOpts: {
|
|
@@ -6580,7 +6604,8 @@ export function getStatesByType(type?: string): {
|
|
|
6580
6604
|
};
|
|
6581
6605
|
export function getStateLabel(state: any): string;
|
|
6582
6606
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
6583
|
-
export function
|
|
6607
|
+
export function simpleColorForState(state: any, isError?: boolean, isTransitioning?: boolean): string;
|
|
6608
|
+
export function stateDisplay(state: any, preserveOriginal?: boolean): any;
|
|
6584
6609
|
export function primaryDisplayStatusFromCount(status: any): string;
|
|
6585
6610
|
export function stateSort(color: any, display: any): string;
|
|
6586
6611
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
@@ -6719,9 +6744,9 @@ export default class Resource {
|
|
|
6719
6744
|
get stateColor(): any;
|
|
6720
6745
|
get stateColorPair(): {
|
|
6721
6746
|
state: any;
|
|
6722
|
-
color:
|
|
6747
|
+
color: string;
|
|
6723
6748
|
};
|
|
6724
|
-
get stateSimpleColor():
|
|
6749
|
+
get stateSimpleColor(): string;
|
|
6725
6750
|
get stateBackground(): any;
|
|
6726
6751
|
get stateIcon(): string;
|
|
6727
6752
|
get stateSort(): string;
|
|
@@ -7130,6 +7155,15 @@ export default class Resource {
|
|
|
7130
7155
|
rows: any[];
|
|
7131
7156
|
};
|
|
7132
7157
|
};
|
|
7158
|
+
get _resourcesCardRows(): any[];
|
|
7159
|
+
get resourcesCardRows(): any[];
|
|
7160
|
+
get resourcesCard(): {
|
|
7161
|
+
component: any;
|
|
7162
|
+
props: {
|
|
7163
|
+
title: any;
|
|
7164
|
+
rows: any[];
|
|
7165
|
+
};
|
|
7166
|
+
};
|
|
7133
7167
|
get _cards(): any[];
|
|
7134
7168
|
get cards(): any[];
|
|
7135
7169
|
}
|
|
@@ -7148,7 +7182,8 @@ export function getStatesByType(type?: string): {
|
|
|
7148
7182
|
};
|
|
7149
7183
|
export function getStateLabel(state: any): string;
|
|
7150
7184
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
7151
|
-
export function
|
|
7185
|
+
export function simpleColorForState(state: any, isError?: boolean, isTransitioning?: boolean): string;
|
|
7186
|
+
export function stateDisplay(state: any, preserveOriginal?: boolean): any;
|
|
7152
7187
|
export function primaryDisplayStatusFromCount(status: any): string;
|
|
7153
7188
|
export function stateSort(color: any, display: any): string;
|
|
7154
7189
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
@@ -7287,9 +7322,9 @@ export default class Resource {
|
|
|
7287
7322
|
get stateColor(): any;
|
|
7288
7323
|
get stateColorPair(): {
|
|
7289
7324
|
state: any;
|
|
7290
|
-
color:
|
|
7325
|
+
color: string;
|
|
7291
7326
|
};
|
|
7292
|
-
get stateSimpleColor():
|
|
7327
|
+
get stateSimpleColor(): string;
|
|
7293
7328
|
get stateBackground(): any;
|
|
7294
7329
|
get stateIcon(): string;
|
|
7295
7330
|
get stateSort(): string;
|
|
@@ -7698,6 +7733,15 @@ export default class Resource {
|
|
|
7698
7733
|
rows: any[];
|
|
7699
7734
|
};
|
|
7700
7735
|
};
|
|
7736
|
+
get _resourcesCardRows(): any[];
|
|
7737
|
+
get resourcesCardRows(): any[];
|
|
7738
|
+
get resourcesCard(): {
|
|
7739
|
+
component: any;
|
|
7740
|
+
props: {
|
|
7741
|
+
title: any;
|
|
7742
|
+
rows: any[];
|
|
7743
|
+
};
|
|
7744
|
+
};
|
|
7701
7745
|
get _cards(): any[];
|
|
7702
7746
|
get cards(): any[];
|
|
7703
7747
|
}
|
|
@@ -9253,20 +9297,6 @@ export function generateZip(files: any): any;
|
|
|
9253
9297
|
export function downloadUrl(url: any, id?: string): void;
|
|
9254
9298
|
}
|
|
9255
9299
|
|
|
9256
|
-
// @shell/utils/duration
|
|
9257
|
-
|
|
9258
|
-
declare module '@shell/utils/duration' {
|
|
9259
|
-
export function toMilliseconds(input: any): number;
|
|
9260
|
-
export function toSeconds(input: any): number;
|
|
9261
|
-
}
|
|
9262
|
-
|
|
9263
|
-
// @shell/utils/duration.js
|
|
9264
|
-
|
|
9265
|
-
declare module '@shell/utils/duration.js' {
|
|
9266
|
-
export function toMilliseconds(input: any): number;
|
|
9267
|
-
export function toSeconds(input: any): number;
|
|
9268
|
-
}
|
|
9269
|
-
|
|
9270
9300
|
// @shell/utils/dynamic-importer
|
|
9271
9301
|
|
|
9272
9302
|
declare module '@shell/utils/dynamic-importer' {
|
|
@@ -9324,6 +9354,8 @@ export function resolveCloudCredentialComponent(key: any): string;
|
|
|
9324
9354
|
declare module '@shell/utils/error' {
|
|
9325
9355
|
export function stringify(err: any): any;
|
|
9326
9356
|
export function exceptionToErrorsArray(err: any): any;
|
|
9357
|
+
export function createDoNotLogError(message: any): Error;
|
|
9358
|
+
export function isDoNotLogError(err: any): boolean;
|
|
9327
9359
|
export class ClusterNotFoundError extends Error {
|
|
9328
9360
|
static NAME: string;
|
|
9329
9361
|
constructor(message: any);
|
|
@@ -9359,6 +9391,8 @@ export function formatAWSError(err: any): any;
|
|
|
9359
9391
|
declare module '@shell/utils/error.js' {
|
|
9360
9392
|
export function stringify(err: any): any;
|
|
9361
9393
|
export function exceptionToErrorsArray(err: any): any;
|
|
9394
|
+
export function createDoNotLogError(message: any): Error;
|
|
9395
|
+
export function isDoNotLogError(err: any): boolean;
|
|
9362
9396
|
export class ClusterNotFoundError extends Error {
|
|
9363
9397
|
static NAME: string;
|
|
9364
9398
|
constructor(message: any);
|