Skip to content

add excludedImages docs and example of 'auto' from the Istio Gateway chart #3263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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