-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
# Examples | ||
# Konjure Examples | ||
|
||
## Example Usage | ||
|
||
* [Helm Generator](helm.md) | ||
* [Jsonnet Generator](jsonnet.md) | ||
|
||
## Kustomize vs. CLI | ||
|
||
These examples all use Konjure as a Kustomize executable plugin. While this is preferred way to use Konjure, all of the generators and transformers can also be used without Kustomize through direct invocation of the `konjure` binary. | ||
|
||
For example, the Helm Generator example can be run directly from the CLI using: | ||
|
||
```sh | ||
konjure helm --name elasticsearch --version 1.31.1 --set data.replicas=3 stable/elasticsearch | ||
``` |