-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] support passing extra args to kind (#362)
Signed-off-by: Derek Brown <[email protected]>
- Loading branch information
1 parent
5282f72
commit e5f6a67
Showing
3 changed files
with
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Creates a kind cluster with a registry. | ||
apiVersion: ctlptl.dev/v1alpha1 | ||
kind: Cluster | ||
product: kind | ||
registry: ctlptl-registry | ||
kindExtraCreateArguments: | ||
# Example 1: Pass --wait to `kind create cluster` to wait for the control plane to be ready. | ||
- "--wait=2m" | ||
# Example 2: Pass --retain to `kind create cluster` to keep the containers around. | ||
# This is super useful for debugging cluster creation issues. | ||
- "--retain" | ||
# Example 3: Pass --verbosity=3 to `kind create cluster` to get more verbose output. | ||
- # This is also super useful for debugging cluster creation issues | ||
- "--verbosity=3" |
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