forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Place generated manifests in _out folder
By also moving the manifests to _out, we have all produced artifacts in the _out folder. Signed-off-by: Roman Mohr <[email protected]>
- Loading branch information
Showing
6 changed files
with
24 additions
and
16 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 |
---|---|---|
|
@@ -3,7 +3,6 @@ vendor/* | |
.idea | ||
*.iml | ||
tools/openapispec/openapispec | ||
manifests/**/*.yaml | ||
**/bin | ||
bin/* | ||
.vagrant | ||
|
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,11 @@ | ||
#!/bin/bash | ||
|
||
KUBEVIRT_DIR="$( | ||
cd "$(dirname "$0")/../" | ||
pwd | ||
)" | ||
OUT_DIR=$KUBEVIRT_DIR/_out/ | ||
CMD_OUT_DIR=$KUBEVIRT_DIR/_out/cmd/ | ||
TESTS_OUT_DIR=$KUBEVIRT_DIR/_out/cmd/ | ||
APIDOCS_OUT_DIR=$KUBEVIRT_DIR/_out/apidocs | ||
MANIFESTS_OUT_DIR=$KUBEVIRT_DIR/_out/manifests |