We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36f1a1c commit fa67977Copy full SHA for fa67977
1 file changed
cli/polyaxon/api.py
@@ -10,6 +10,7 @@
10
EXTERNAL_V1 = "external/{}".format(VERSION_V1)
11
REWRITE_EXTERNAL_V1 = "rewrite-external/{}".format(VERSION_V1)
12
K8S_V1 = "k8s/{}".format(VERSION_V1)
13
+SANDBOX_V1 = "sandbox/{}".format(VERSION_V1)
14
WS_V1 = "ws/{}".format(VERSION_V1)
15
AUTH_V1 = "auth/{}".format(VERSION_V1)
16
STATIC_V1 = "static/{}".format(VERSION_V1)
@@ -33,6 +34,7 @@
33
34
EXTERNAL_V1_LOCATION = "/" + EXTERNAL_V1 + "/"
35
REWRITE_EXTERNAL_V1_LOCATION = "/" + REWRITE_EXTERNAL_V1 + "/"
36
K8S_V1_LOCATION = "/" + K8S_V1 + "/"
37
+SANDBOX_V1_LOCATION = "/" + SANDBOX_V1 + "/"
38
HEALTHZ_LOCATION = "/healthz/"
39
POLYAXON_CLOUD_HOST = "https://cloud.polyaxon.com"
40
LOCALHOST = "http://localhost:8000"
0 commit comments