-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cluster generation tools, manifests, and instructions
- generation script - Makefile - addons - example templates - kustomize templates - README.md Signed-off-by: Stephen Augustus <[email protected]>
- Loading branch information
1 parent
f10df15
commit 1947b51
Showing
32 changed files
with
954 additions
and
552 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file not shown.
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,27 @@ | ||
# Azure Example Files | ||
|
||
## Contents | ||
|
||
*.yaml files - concrete example files that can be used as is. | ||
*.yaml.template files - template example files that need values filled in before use. | ||
|
||
## Generation | ||
|
||
For convenience, a generation script which populates templates based on azure configuration is provided. | ||
|
||
1. Run the generation script. | ||
|
||
``` shell | ||
./generate-yaml.sh | ||
``` | ||
|
||
If the yaml file already exists, you will see an error like the one below: | ||
|
||
``` shell | ||
$ ./generate-yaml.sh | ||
File provider-components.yaml already exists. Delete it manually before running this script. | ||
``` | ||
|
||
## Manual Modification | ||
|
||
You may always manually curate files based on the examples provided. |
Oops, something went wrong.