Skip to content

Commit

Permalink
Create issues for status-check for debug and microservices
Browse files Browse the repository at this point in the history
  • Loading branch information
tejal29 committed Jun 28, 2019
1 parent 0740931 commit 3d33a93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion integration/debug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,16 @@ func TestDebug(t *testing.T) {
}{
{
description: "kubectl",
// see https://github.com/GoogleContainerTools/skaffold/issues/2373
dir: "testdata/debug",
args: []string{"--status-check=false"},
deployments: []string{"jib"},
pods: []string{"nodejs", "npm", "python3"},
},
{
description: "kustomize",
args: []string{"--profile", "kustomize"},
// See https://github.com/GoogleContainerTools/skaffold/issues/2373
args: []string{"--profile", "kustomize", "--status-check=false"},
dir: "testdata/debug",
deployments: []string{"jib"},
pods: []string{"nodejs", "npm", "python3"},
Expand Down
3 changes: 2 additions & 1 deletion integration/deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ func TestBuildDeploy(t *testing.T) {
dir.Write("build.out", string(outputBytes))

// Run Deploy using the build output
skaffold.Deploy("--build-artifacts", buildOutputFile).InDir("examples/microservices").InNs(ns.Name).RunOrFail(t)
// See https://github.com/GoogleContainerTools/skaffold/issues/2372 on why status-check=false
skaffold.Deploy("--build-artifacts", buildOutputFile, "--status-check=false").InDir("examples/microservices").InNs(ns.Name).RunOrFail(t)

depApp := client.GetDeployment("leeroy-app")
testutil.CheckDeepEqual(t, appTag, depApp.Spec.Template.Spec.Containers[0].Image)
Expand Down
2 changes: 2 additions & 0 deletions integration/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ func TestRun(t *testing.T) {
}, {
description: "microservices",
dir: "examples/microservices",
// See https://github.com/GoogleContainerTools/skaffold/issues/2372
args: []string{"--status-check=false"},
deployments: []string{"leeroy-app", "leeroy-web"},
}, {
description: "envTagger",
Expand Down

0 comments on commit 3d33a93

Please sign in to comment.