Commit 8262c30c authored by Clayton Coleman's avatar Clayton Coleman

Improve serialization round trip test and add v1beta3

parent 8f65442c
......@@ -78,7 +78,6 @@ kube::log::status "Starting kube-apiserver"
APISERVER_PID=$!
kube::util::wait_for_url "http://127.0.0.1:${API_PORT}/healthz" "apiserver: "
kube::util::wait_for_url "http://127.0.0.1:${API_PORT}/api/v1beta1/minions/127.0.0.1" "apiserver(minions): "
# Start controller manager
kube::log::status "Starting CONTROLLER-MANAGER"
......@@ -88,6 +87,7 @@ kube::log::status "Starting CONTROLLER-MANAGER"
CTLRMGR_PID=$!
kube::util::wait_for_url "http://127.0.0.1:${CTLRMGR_PORT}/healthz" "controller-manager: "
kube::util::wait_for_url "http://127.0.0.1:${API_PORT}/api/v1beta1/minions/127.0.0.1" "apiserver(minions): "
kube_cmd=(
"${KUBE_OUTPUT_HOSTBIN}/kubectl"
......
......@@ -40,7 +40,7 @@ type Interface interface {
}
func (c *Client) ReplicationControllers(namespace string) ReplicationControllerInterface {
return newReplicationControllers(c, namespace, c.preV1Beta3)
return newReplicationControllers(c, namespace)
}
func (c *Client) Nodes() NodeInterface {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment