Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```yaml
excludedImages:
- auto # This image does not exist but is imported by the Istio Gateway chart
```
24 changes: 24 additions & 0 deletions docs/reference/custom-resource-application.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -44,6 +45,8 @@ spec:
requireMinimalRBACPrivileges: false
additionalImages:
- jenkins/jenkins:lts
excludedImages:
- auto
additionalNamespaces:
- "*"
ports:
Expand Down Expand Up @@ -199,6 +202,27 @@ spec:
</tr>
</table>

## excludedImages

<table>
<tr>
<th>Description</th>
<td><p>An array of strings that reference images to not be included in air gap bundles.</p></td>
</tr>
<tr>
<th>Example</th>
<td><ExcludedImages/></td>
</tr>
<tr>
<th>Supports Go templates?</th>
<td>No</td>
</tr>
<tr>
<th>Supported for <a href="/vendor/embedded-overview">Embedded Cluster</a>?</th>
<td>Yes</td>
</tr>
</table>

## requireMinimalRBACPrivileges

<table>
Expand Down