Commit 337772a9 authored by Mike Danese's avatar Mike Danese

fix all tests

parent b98df5d1
...@@ -332,7 +332,7 @@ function kube::build::source_targets() { ...@@ -332,7 +332,7 @@ function kube::build::source_targets() {
api api
build build
cmd cmd
docs/getting-started-guides docs
examples examples
Godeps/_workspace/src Godeps/_workspace/src
Godeps/Godeps.json Godeps/Godeps.json
...@@ -770,6 +770,7 @@ function kube::release::package_full_tarball() { ...@@ -770,6 +770,7 @@ function kube::release::package_full_tarball() {
cp -R "${KUBE_ROOT}/third_party/htpasswd" "${release_stage}/third_party/htpasswd" cp -R "${KUBE_ROOT}/third_party/htpasswd" "${release_stage}/third_party/htpasswd"
cp -R "${KUBE_ROOT}/examples" "${release_stage}/" cp -R "${KUBE_ROOT}/examples" "${release_stage}/"
cp -R "${KUBE_ROOT}/docs" "${release_stage}/"
cp "${KUBE_ROOT}/README.md" "${release_stage}/" cp "${KUBE_ROOT}/README.md" "${release_stage}/"
cp "${KUBE_ROOT}/LICENSE" "${release_stage}/" cp "${KUBE_ROOT}/LICENSE" "${release_stage}/"
cp "${KUBE_ROOT}/Vagrantfile" "${release_stage}/" cp "${KUBE_ROOT}/Vagrantfile" "${release_stage}/"
......
...@@ -205,7 +205,6 @@ func TestExampleObjectSchemas(t *testing.T) { ...@@ -205,7 +205,6 @@ func TestExampleObjectSchemas(t *testing.T) {
"replication": &api.ReplicationController{}, "replication": &api.ReplicationController{},
}, },
"../examples": { "../examples": {
"pod": &api.Pod{},
"scheduler-policy-config": &schedulerapi.Policy{}, "scheduler-policy-config": &schedulerapi.Policy{},
}, },
"../examples/rbd/secret": { "../examples/rbd/secret": {
......
...@@ -93,7 +93,7 @@ startApiServer ...@@ -93,7 +93,7 @@ startApiServer
# Create a pod # Create a pod
kube::log::status "Creating a pod" kube::log::status "Creating a pod"
${KUBECTL} create -f examples/pod.yaml ${KUBECTL} create -f docs/user-guide/pod.yaml
killApiServer killApiServer
......
...@@ -79,7 +79,7 @@ var _ = Describe("Kubectl client", func() { ...@@ -79,7 +79,7 @@ var _ = Describe("Kubectl client", func() {
Describe("Update Demo", func() { Describe("Update Demo", func() {
var updateDemoRoot, nautilusPath, kittenPath string var updateDemoRoot, nautilusPath, kittenPath string
BeforeEach(func() { BeforeEach(func() {
updateDemoRoot = filepath.Join(testContext.RepoRoot, "examples/update-demo") updateDemoRoot = filepath.Join(testContext.RepoRoot, "docs/user-guide/update-demo")
nautilusPath = filepath.Join(updateDemoRoot, "nautilus-rc.yaml") nautilusPath = filepath.Join(updateDemoRoot, "nautilus-rc.yaml")
kittenPath = filepath.Join(updateDemoRoot, "kitten-rc.yaml") kittenPath = filepath.Join(updateDemoRoot, "kitten-rc.yaml")
}) })
...@@ -142,7 +142,7 @@ var _ = Describe("Kubectl client", func() { ...@@ -142,7 +142,7 @@ var _ = Describe("Kubectl client", func() {
var podPath string var podPath string
BeforeEach(func() { BeforeEach(func() {
podPath = filepath.Join(testContext.RepoRoot, "examples/pod.yaml") podPath = filepath.Join(testContext.RepoRoot, "docs/user-guide/pod.yaml")
By("creating the pod") By("creating the pod")
runKubectl("create", "-f", podPath, fmt.Sprintf("--namespace=%v", ns)) runKubectl("create", "-f", podPath, fmt.Sprintf("--namespace=%v", ns))
checkPodsRunningReady(c, ns, []string{simplePodName}, podStartTimeout) checkPodsRunningReady(c, ns, []string{simplePodName}, podStartTimeout)
...@@ -206,7 +206,7 @@ var _ = Describe("Kubectl client", func() { ...@@ -206,7 +206,7 @@ var _ = Describe("Kubectl client", func() {
var podPath string var podPath string
var nsFlag string var nsFlag string
BeforeEach(func() { BeforeEach(func() {
podPath = filepath.Join(testContext.RepoRoot, "examples/pod.yaml") podPath = filepath.Join(testContext.RepoRoot, "docs/user-guide/pod.yaml")
By("creating the pod") By("creating the pod")
nsFlag = fmt.Sprintf("--namespace=%v", ns) nsFlag = fmt.Sprintf("--namespace=%v", ns)
runKubectl("create", "-f", podPath, nsFlag) runKubectl("create", "-f", podPath, nsFlag)
......
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