Skip to content

Commit 365da95

Browse files
authored
Merge pull request #3263 from replicatedhq/laverya/sc-119848/allow-excluding-images-from-airgap-builds
add excludedImages docs and example of 'auto' from the Istio Gateway chart
2 parents c754a95 + e2b886e commit 365da95

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
```yaml
2+
excludedImages:
3+
- auto # This image does not exist but is imported by the Istio Gateway chart
4+
```

docs/reference/custom-resource-application.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import ReleaseNotes from "../partials/custom-resource-application/_releaseNotes.
44
import AllowRollback from "../partials/custom-resource-application/_allowRollback.mdx"
55
import AdditionalNamespaces from "../partials/custom-resource-application/_additionalNamespaces.mdx"
66
import AdditionalImages from "../partials/custom-resource-application/_additionalImages.mdx"
7+
import ExcludedImages from "../partials/custom-resource-application/_excludedImages.mdx"
78
import RequireMinimalRBACPrivileges from "../partials/custom-resource-application/_requireMinimalRBACPrivileges.mdx"
89
import SupportMinimalRBACPrivileges from "../partials/custom-resource-application/_supportMinimalRBACPrivileges.mdx"
910
import Ports from "../partials/custom-resource-application/_ports.mdx"
@@ -44,6 +45,8 @@ spec:
4445
requireMinimalRBACPrivileges: false
4546
additionalImages:
4647
- jenkins/jenkins:lts
48+
excludedImages:
49+
- auto
4750
additionalNamespaces:
4851
- "*"
4952
ports:
@@ -199,6 +202,27 @@ spec:
199202
</tr>
200203
</table>
201204
205+
## excludedImages
206+
207+
<table>
208+
<tr>
209+
<th>Description</th>
210+
<td><p>An array of strings that reference images to not be included in air gap bundles.</p></td>
211+
</tr>
212+
<tr>
213+
<th>Example</th>
214+
<td><ExcludedImages/></td>
215+
</tr>
216+
<tr>
217+
<th>Supports Go templates?</th>
218+
<td>No</td>
219+
</tr>
220+
<tr>
221+
<th>Supported for <a href="/vendor/embedded-overview">Embedded Cluster</a>?</th>
222+
<td>Yes</td>
223+
</tr>
224+
</table>
225+
202226
## requireMinimalRBACPrivileges
203227
204228
<table>

0 commit comments

Comments
 (0)