Skip to content

Commit

Permalink
Update helm task test to use same repo
Browse files Browse the repository at this point in the history
remove use of external repo to make changes to test easier
  • Loading branch information
nader-ziada authored and knative-prow-robot committed Oct 23, 2018
1 parent b9ee7f6 commit 1a65b67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/helm_task_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func getGoHelloworldGitResource(namespace string) *v1alpha1.PipelineResource {
Params: []v1alpha1.Param{
v1alpha1.Param{
Name: "Url",
Value: "https://github.com/pivotal-nader-ziada/gohelloworld",
Value: "https://github.com/knative/build-pipeline",
},
},
},
Expand Down Expand Up @@ -194,7 +194,7 @@ func getCreateImageTask(namespace string, t *testing.T) *v1alpha1.Task {
Steps: []corev1.Container{{
Name: "kaniko",
Image: "gcr.io/kaniko-project/executor",
Args: []string{"--dockerfile=/workspace/Dockerfile",
Args: []string{"--dockerfile=/workspace/test/gohelloworld/Dockerfile",
fmt.Sprintf("--destination=%s", imageName),
},
}},
Expand Down Expand Up @@ -282,7 +282,7 @@ func getHelmDeployPipeline(namespace string) *v1alpha1.Pipeline {
}},
Params: []v1alpha1.Param{{
Name: "pathToHelmCharts",
Value: "/workspace/gohelloworld-chart",
Value: "/workspace/test/gohelloworld/gohelloworld-chart",
}, {
Name: "chartname",
Value: "gohelloworld",
Expand Down

0 comments on commit 1a65b67

Please sign in to comment.