-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move hack dirs to scripts dir #295
Conversation
Signed-off-by: Revital Sur <[email protected]>
Signed-off-by: Revital Sur <[email protected]>
Signed-off-by: Revital Sur <[email protected]>
Signed-off-by: Revital Sur <[email protected]>
Signed-off-by: Revital Sur <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
scripts/kind/tools/ingress.sh
Outdated
@@ -2,19 +2,19 @@ | |||
|
|||
op=$1 | |||
|
|||
source ${ROOT_DIR}/hack/common.sh | |||
source ${REPOROOT}/scripts/kind/common.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you define a local variable {REPOROOT}/scripts/kind
, we have too many references to it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed. Thanks
scripts/kind/tools/ingress.sh
Outdated
|
||
deploy() { | ||
kubectl apply -f ${ROOT_DIR}/hack/ray_api_server_ingress.yaml | ||
kubectl apply -f ${REPOROOT}/scripts/kind/ray_api_server_ingress.yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add sleep 10 before L:8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added. Thanks
transforms/.make.workflows
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an inconsistent move. A) it is not a shell script and B) if we do this, we should also move .make.defaults, .make.versions,.make.transforms etc. But I'm not sure we want to do this. What was your motivation here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@daw3rd transforms/.make.workflows file remains under transforms... are you refering to other file?
Signed-off-by: Revital Sur <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
/Closes #293
This PR moves the hack subdirs under a new
scripts
directoryRelated issue number (if any).
#293