From b4b40003995d185ac9ba058a5ea1c6c02ae75064 Mon Sep 17 00:00:00 2001 From: Lenny Chen Date: Fri, 13 Dec 2024 14:14:37 -0800 Subject: [PATCH 1/3] docs: add known issue --- docs/docs-content/release-notes/known-issues.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs-content/release-notes/known-issues.md b/docs/docs-content/release-notes/known-issues.md index 64af20b465..6e05fe3bc2 100644 --- a/docs/docs-content/release-notes/known-issues.md +++ b/docs/docs-content/release-notes/known-issues.md @@ -16,6 +16,7 @@ The following table lists all known issues that are currently active and affecti | Description | Workaround | Publish Date | Product Component | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ---------------------------- | +| When using content bundles built from cluster profiles using PXK-E as the Kubernetes layer to deploy an Edge cluster, some images in the Kubernetes layer fail be loaded into containerd due to image signature issues, leading to deployment failure. | Remove the `packs.content.images` from the Kubernetes layer in the pack configuration before building the content bundle. These components are already included in the provider image and do not need to be included in the content bundle. | December 13, 2024 | Edge | | For Edge airgap clusters, manifests attached to packs are not applied during cluster deployment. | Add the manifest as a layer directly instead of attaching it to a pack. For more information, refer to [Add a Manifest](../profiles/cluster-profiles/create-cluster-profiles/create-addon-profile/create-manifest-addon.md). | November 15, 2024 | Edge | | In some cases, the differential editor incorrectly reports YAML differences for customizations not created by you. The issue is more common when items in a list or array are removed. Clicking the **Keep** button when non-user-generated customization is the focus causes the button to become unresponsive after the first usage. | Skip differential highlights not created by you. Click the arrow button to skip and proceed. | November 11, 2024 | Cluster Profiles | | Palette fails to provision virtual clusters on airgapped and proxy Edge cluster groups. This error is caused by Palette incorrectly defaulting to fetch charts from an external repository, which is unreachable from these environments. | No workaround. | November 9, 2024 | Virtual Clusters | From 1d0850f0532f234e8a1a0780ceea944d97a36867 Mon Sep 17 00:00:00 2001 From: Lenny Chen Date: Fri, 13 Dec 2024 14:45:58 -0800 Subject: [PATCH 2/3] docs: break up sentence --- docs/docs-content/release-notes/known-issues.md | 2 +- src/components/IconMapper/dynamicFontAwesomeImports.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/docs-content/release-notes/known-issues.md b/docs/docs-content/release-notes/known-issues.md index 6e05fe3bc2..087457909f 100644 --- a/docs/docs-content/release-notes/known-issues.md +++ b/docs/docs-content/release-notes/known-issues.md @@ -16,7 +16,7 @@ The following table lists all known issues that are currently active and affecti | Description | Workaround | Publish Date | Product Component | | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ---------------------------- | -| When using content bundles built from cluster profiles using PXK-E as the Kubernetes layer to deploy an Edge cluster, some images in the Kubernetes layer fail be loaded into containerd due to image signature issues, leading to deployment failure. | Remove the `packs.content.images` from the Kubernetes layer in the pack configuration before building the content bundle. These components are already included in the provider image and do not need to be included in the content bundle. | December 13, 2024 | Edge | +| When deploying an Edge cluster using content bundles built from cluster profiles with PXK-E as the Kubernetes layer, some images in the Kubernetes layer fail to load into containerd. This issue occurs due to image signature problems, resulting in deployment failure. | Remove the `packs.content.images` from the Kubernetes layer in the pack configuration before building the content bundle. These components are already included in the provider image and do not need to be included in the content bundle. | December 13, 2024 | Edge | | For Edge airgap clusters, manifests attached to packs are not applied during cluster deployment. | Add the manifest as a layer directly instead of attaching it to a pack. For more information, refer to [Add a Manifest](../profiles/cluster-profiles/create-cluster-profiles/create-addon-profile/create-manifest-addon.md). | November 15, 2024 | Edge | | In some cases, the differential editor incorrectly reports YAML differences for customizations not created by you. The issue is more common when items in a list or array are removed. Clicking the **Keep** button when non-user-generated customization is the focus causes the button to become unresponsive after the first usage. | Skip differential highlights not created by you. Click the arrow button to skip and proceed. | November 11, 2024 | Cluster Profiles | | Palette fails to provision virtual clusters on airgapped and proxy Edge cluster groups. This error is caused by Palette incorrectly defaulting to fetch charts from an external repository, which is unreachable from these environments. | No workaround. | November 9, 2024 | Virtual Clusters | diff --git a/src/components/IconMapper/dynamicFontAwesomeImports.ts b/src/components/IconMapper/dynamicFontAwesomeImports.ts index 383064efe2..a98f03e718 100644 --- a/src/components/IconMapper/dynamicFontAwesomeImports.ts +++ b/src/components/IconMapper/dynamicFontAwesomeImports.ts @@ -8,7 +8,6 @@ import { faHdd } from '@fortawesome/free-solid-svg-icons'; import { faCloudArrowDown } from '@fortawesome/free-solid-svg-icons'; import { faNetworkWired } from '@fortawesome/free-solid-svg-icons'; import { faServer } from '@fortawesome/free-solid-svg-icons'; -import { faRoad } from '@fortawesome/free-solid-svg-icons'; import { faUsers } from '@fortawesome/free-solid-svg-icons'; import { faWarehouse } from '@fortawesome/free-solid-svg-icons'; import { faFlagCheckered } from '@fortawesome/free-solid-svg-icons'; @@ -35,7 +34,6 @@ export const fontAwesomeIcons = { "cloud-arrow-down": faCloudArrowDown, "network-wired": faNetworkWired, "server": faServer, - "road": faRoad, "users": faUsers, "warehouse": faWarehouse, "flag-checkered": faFlagCheckered, From 0bc68d5e5d7ad3b97c815dc01b0c75220dbb1868 Mon Sep 17 00:00:00 2001 From: Lenny Chen Date: Fri, 13 Dec 2024 14:51:18 -0800 Subject: [PATCH 3/3] docs fix fontawesome --- src/components/IconMapper/dynamicFontAwesomeImports.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/IconMapper/dynamicFontAwesomeImports.ts b/src/components/IconMapper/dynamicFontAwesomeImports.ts index a98f03e718..383064efe2 100644 --- a/src/components/IconMapper/dynamicFontAwesomeImports.ts +++ b/src/components/IconMapper/dynamicFontAwesomeImports.ts @@ -8,6 +8,7 @@ import { faHdd } from '@fortawesome/free-solid-svg-icons'; import { faCloudArrowDown } from '@fortawesome/free-solid-svg-icons'; import { faNetworkWired } from '@fortawesome/free-solid-svg-icons'; import { faServer } from '@fortawesome/free-solid-svg-icons'; +import { faRoad } from '@fortawesome/free-solid-svg-icons'; import { faUsers } from '@fortawesome/free-solid-svg-icons'; import { faWarehouse } from '@fortawesome/free-solid-svg-icons'; import { faFlagCheckered } from '@fortawesome/free-solid-svg-icons'; @@ -34,6 +35,7 @@ export const fontAwesomeIcons = { "cloud-arrow-down": faCloudArrowDown, "network-wired": faNetworkWired, "server": faServer, + "road": faRoad, "users": faUsers, "warehouse": faWarehouse, "flag-checkered": faFlagCheckered,