-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add air-gap install, sync CLI docs, fix images with transparent backg…
…round (#61) * Fix images with transparent background - they didn't look good in dark mode
- Loading branch information
Showing
54 changed files
with
504 additions
and
65 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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,30 @@ | ||
--- | ||
title: capact alpha archive-images | ||
--- | ||
|
||
## capact alpha archive-images | ||
|
||
Export Capact Docker images to a tar archive | ||
|
||
### Synopsis | ||
|
||
Subcommand for various manifest generation operations | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for archive-images | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-c, --config string Path to the YAML config file | ||
-v, --verbose int/string[=simple] Prints more verbose output. Allowed values: 0 - disable, 1 - simple, 2 - trace (default 0 - disable) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [capact alpha](capact_alpha.md) - Alpha features | ||
* [capact alpha archive-images helm](capact_alpha_archive-images_helm.md) - Archive all the Docker container images used in Capact Helm charts | ||
|
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,52 @@ | ||
--- | ||
title: capact alpha archive-images helm | ||
--- | ||
|
||
## capact alpha archive-images helm | ||
|
||
Archive all the Docker container images used in Capact Helm charts | ||
|
||
``` | ||
capact alpha archive-images helm [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Archive images from the stable Capact Helm repository from version 0.5.0 | ||
capact alpha archive-images helm --version 0.5.0 --output ./capact-images-0.5.0.tar | ||
# Archive images from the Helm Chart released from the '0fbf562' commit on the main branch | ||
capact alpha archive-images helm --version 0.4.0-0fbf562 --helm-repo @latest --output-stdout > ./capact-images-0.4.0-0fbf562.tar | ||
# You can use gzip to compress the output and make the backup smaller. | ||
capact alpha archive-images helm --version 0.5.0 --output ./capact-images-0.5.0.tar.gz --compress gzip | ||
# You can pipe output to use custom gzip | ||
capact alpha archive-images helm --version 0.5.0 --output-stdout | gzip > myimage_latest.tar.gz | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--compress string Use a given compress algorithm. Allowed values: gzip | ||
--helm-repo string Capact Helm chart repository location. It can be relative path to current working directory or URL. Use @latest tag to select repository which holds the latest Helm chart versions. (default "https://storage.googleapis.com/capactio-stable-charts") | ||
-h, --help help for helm | ||
-o, --output string Write output to a file, instead of standard output. | ||
--output-stdout Write output to a standard output, instead of file. | ||
--save-component strings Components names for which Docker images should be saved. Takes comma-separated list. (default [neo4j,ingress-nginx,argo,cert-manager,kubed,monitoring,capact]) | ||
--version string Capact version. Possible values @latest, @local, 0.3.0, ... (default "@latest") | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-c, --config string Path to the YAML config file | ||
-v, --verbose int/string[=simple] Prints more verbose output. Allowed values: 0 - disable, 1 - simple, 2 - trace (default 0 - disable) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [capact alpha archive-images](capact_alpha_archive-images.md) - Export Capact Docker images to a tar archive | ||
|
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
39 changes: 39 additions & 0 deletions
39
docs/cli/commands/capact_alpha_manifest-gen_implementation_helm.md
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,39 @@ | ||
--- | ||
title: capact alpha manifest-gen implementation helm | ||
--- | ||
|
||
## capact alpha manifest-gen implementation helm | ||
|
||
Generate Helm chart based manifests | ||
|
||
### Synopsis | ||
|
||
Generate Implementation manifests based on a Helm chart | ||
|
||
``` | ||
capact alpha manifest-gen implementation helm [MANIFEST_PATH] [HELM_CHART_NAME] [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for helm | ||
-i, --interface string Path with revision of the Interface, which is implemented by this Implementation | ||
--repo string URL of the Helm repository | ||
-r, --revision string Revision of the Implementation manifest (default "0.1.0") | ||
--version string Version of the Helm chart | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-c, --config string Path to the YAML config file | ||
-o, --output string Path to the output directory for the generated manifests (default "generated") | ||
--overwrite Overwrite existing manifest files | ||
-v, --verbose int/string[=simple] Prints more verbose output. Allowed values: 0 - disable, 1 - simple, 2 - trace (default 0 - disable) | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [capact alpha manifest-gen implementation](capact_alpha_manifest-gen_implementation.md) - Generate new Implementation manifests | ||
|
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
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
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
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
Oops, something went wrong.