From e2b886ef0a60af0faa214f7553e5d4ac21e0bd6a Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Tue, 20 May 2025 16:49:26 -0400 Subject: [PATCH] add excludedImages docs and example of 'auto' from the Istio Gateway chart --- .../_excludedImages.mdx | 4 ++++ .../reference/custom-resource-application.mdx | 24 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 docs/partials/custom-resource-application/_excludedImages.mdx diff --git a/docs/partials/custom-resource-application/_excludedImages.mdx b/docs/partials/custom-resource-application/_excludedImages.mdx new file mode 100644 index 0000000000..b6689bc332 --- /dev/null +++ b/docs/partials/custom-resource-application/_excludedImages.mdx @@ -0,0 +1,4 @@ +```yaml +excludedImages: + - auto # This image does not exist but is imported by the Istio Gateway chart +``` diff --git a/docs/reference/custom-resource-application.mdx b/docs/reference/custom-resource-application.mdx index 8268016ba1..da58b5340d 100644 --- a/docs/reference/custom-resource-application.mdx +++ b/docs/reference/custom-resource-application.mdx @@ -4,6 +4,7 @@ import ReleaseNotes from "../partials/custom-resource-application/_releaseNotes. import AllowRollback from "../partials/custom-resource-application/_allowRollback.mdx" import AdditionalNamespaces from "../partials/custom-resource-application/_additionalNamespaces.mdx" import AdditionalImages from "../partials/custom-resource-application/_additionalImages.mdx" +import ExcludedImages from "../partials/custom-resource-application/_excludedImages.mdx" import RequireMinimalRBACPrivileges from "../partials/custom-resource-application/_requireMinimalRBACPrivileges.mdx" import SupportMinimalRBACPrivileges from "../partials/custom-resource-application/_supportMinimalRBACPrivileges.mdx" import Ports from "../partials/custom-resource-application/_ports.mdx" @@ -44,6 +45,8 @@ spec: requireMinimalRBACPrivileges: false additionalImages: - jenkins/jenkins:lts + excludedImages: + - auto additionalNamespaces: - "*" ports: @@ -199,6 +202,27 @@ spec: +## excludedImages + + + + + + + + + + + + + + + + + + +
Description

An array of strings that reference images to not be included in air gap bundles.

Example
Supports Go templates?No
Supported for Embedded Cluster?Yes
+ ## requireMinimalRBACPrivileges