-
Notifications
You must be signed in to change notification settings - Fork 551
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
[k8s] SkyServe on Kubernetes #3377
Changes from 9 commits
34598a2
95b1eb0
f93e6dd
c8276bb
c713293
aa286e8
9f768a2
1848b3a
ba0ff60
13f7241
996742a
7c8b5cd
b222186
d852c61
b9014df
282bcef
d10fb24
3cb948f
4a7e10a
9e0d910
9e51793
68bb6e8
b72a814
a22b6d3
4637f91
d27ae5f
cdc2e3f
643fb77
7649fcb
8c76eb6
2e20600
de6a99c
03e44eb
7436a7e
3cc5352
d836f17
1b559d2
cda27b2
23d730b
cba92e3
789cefe
55b63de
73ad2e6
31418d2
0684f2b
e7f232e
2a1b916
f242037
9b12cf1
87330bd
3ca5d47
02ef50a
259917f
8066a2a
665a12e
fcc63fe
df21a0b
5d8c9c7
937feb6
33dfb01
87c77df
99547db
3d24b41
750d4d4
87d4d25
a31a3bc
e3bb4d7
12096fd
c33572e
803df4a
a0ba0d1
fb88218
1d968a6
e22908a
34a719c
017dcb5
cd08d0f
05f1996
97b1d56
9a8ccd1
3b7d33f
e029ebc
7b201f2
8a54faf
5fb4232
2e8afe9
736e087
e3768b4
26cc380
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ name: min | |
|
||
setup: | | ||
echo "running setup" | ||
sudo apt-get install -y jq | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be nice to move this to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good point, since this minimal.yaml is also used in a bunch of other tests. moved jq installation to test_minimal.yaml. |
||
|
||
run: | | ||
conda env list |
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.
Should we have this functionality in
core
, e.g. being part ofcore.status
, to keep the core functionality align with cli?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.
Good point - I've added
def endpoints()
tosky.core
. However, I'm lettingserve/core.py
directly callbackend_utils.get_endpoints
becausefrom sky import core
inserve/core.py
causes a circular import.