-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pages about configuring image-puller
Signed-off-by: Anatolii Bazko <[email protected]>
- Loading branch information
Showing
5 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...ration-guide/pages/configuring-image-puller-to-override-default-che-images.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
:_content-type: PROCEDURE | ||
:description: Configuring {image-puller-name-short} to override default {prod-short} images to pre-pull | ||
:keywords: administration-guide, image-puller, CLI | ||
:navtitle: You can configure {image-puller-name} to override default {prod-short} images to pre-pull | ||
:page-aliases: | ||
|
||
[id="configuring-image-puller-to-override-default-che-images"] | ||
= Configuring {image-puller-name-short} to override default {prod-short} images to pre-pull | ||
|
||
You can configure {image-puller-name} to override default {prod-short} images to pre-pull. | ||
|
||
.Prerequisites | ||
|
||
* Your organization's instance of {prod-short} is installed and running on {kubernetes} cluster. | ||
|
||
* {image-puller-name-short} is installed on {kubernetes} cluster. | ||
|
||
* An active `{orch-cli}` session with administrative permissions to the destination {orch-name} cluster. See {orch-cli-link}. | ||
|
||
.Procedure | ||
|
||
. Configure the {image-puller-name-short} to pre-pull {prod-short} images. | ||
+ | ||
[source,shell,subs="+attributes,+quotes"] | ||
---- | ||
{orch-cli} patch checluster/{prod-checluster} \ | ||
--namespace {prod-namespace} \ | ||
--type='merge' \ | ||
--patch '{ | ||
"spec": { | ||
"components": { | ||
"imagePuller": { | ||
"enable": true, | ||
"spec": { | ||
"images": "__NAME-1__=__IMAGE-1__;__NAME-2__=__IMAGE-2__" <1> | ||
} | ||
} | ||
} | ||
} | ||
}' | ||
---- | ||
<1> The semicolon separated list of images |
40 changes: 40 additions & 0 deletions
40
...tration-guide/pages/configuring-image-puller-to-pre-pull-additional-images.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
:_content-type: PROCEDURE | ||
:description: Configuring {image-puller-name-short} to pre-pull additional images | ||
:keywords: administration-guide, image-puller, CLI | ||
:navtitle: Configuring {image-puller-name-short} to pre-pull additional images | ||
:page-aliases: | ||
|
||
[id="configuring-image-puller-to-pre-pull-additional-images"] | ||
= Configuring {image-puller-name-short} to pre-pull additional images | ||
|
||
You can configure {image-puller-name} to pre-pull {prod-short} images. | ||
{prod} operator will control the list of images to pre-pull and automatically updates them | ||
on {prod-short} upgrade. | ||
|
||
.Prerequisites | ||
|
||
* Your organization's instance of {prod-short} is installed and running on {kubernetes} cluster. | ||
|
||
* {image-puller-name-short} is installed on {kubernetes} cluster. | ||
|
||
* An active `{orch-cli}` session with administrative permissions to the destination {orch-name} cluster. See {orch-cli-link}. | ||
|
||
.Procedure | ||
|
||
. Configure the {image-puller-name-short} to pre-pull {prod-short} images. | ||
+ | ||
[source,shell,subs="+attributes,"] | ||
---- | ||
{orch-cli} patch checluster/{prod-checluster} \ | ||
--namespace {prod-namespace} \ | ||
--type='merge' \ | ||
--patch '{ | ||
"spec": { | ||
"components": { | ||
"imagePuller": { | ||
"enable": true, | ||
} | ||
} | ||
} | ||
}' | ||
---- |
40 changes: 40 additions & 0 deletions
40
...ration-guide/pages/configuring-image-puller-to-pre-pull-default-che-images.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
:_content-type: PROCEDURE | ||
:description: Configuring {image-puller-name-short} to pre-pull default {prod-short} images | ||
:keywords: administration-guide, image-puller, CLI | ||
:navtitle: Configuring {image-puller-name-short} to pre-pull default {prod-short} images | ||
:page-aliases: | ||
|
||
[id="configuring-image-puller-to-pre-pull-default-che-images"] | ||
= Configuring {image-puller-name-short} to pre-pull default {prod-short} images | ||
|
||
You can configure {image-puller-name} to pre-pull default {prod-short} images. | ||
{prod} operator will control the list of images to pre-pull and automatically updates them | ||
on {prod-short} upgrade. | ||
|
||
.Prerequisites | ||
|
||
* Your organization's instance of {prod-short} is installed and running on {kubernetes} cluster. | ||
|
||
* {image-puller-name-short} is installed on {kubernetes} cluster. | ||
|
||
* An active `{orch-cli}` session with administrative permissions to the destination {orch-name} cluster. See {orch-cli-link}. | ||
|
||
.Procedure | ||
|
||
. Configure the {image-puller-name-short} to pre-pull {prod-short} images. | ||
+ | ||
[source,shell,subs="+attributes,"] | ||
---- | ||
{orch-cli} patch checluster/{prod-checluster} \ | ||
--namespace {prod-namespace} \ | ||
--type='merge' \ | ||
--patch '{ | ||
"spec": { | ||
"components": { | ||
"imagePuller": { | ||
"enable": true, | ||
} | ||
} | ||
} | ||
}' | ||
---- |