Skip to content

Commit

Permalink
internal/eks/alb: do not use "kubekins" for now
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <[email protected]>
  • Loading branch information
gyuho committed Oct 15, 2018
1 parent 7396106 commit 1572346
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions internal/eks/alb/alb_prow.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,26 +102,28 @@ func CreateProwJobYAML(cfg ConfigProwJobYAML) (string, error) {
Spec: &v1.PodSpec{
Containers: []v1.Container{
{
// Image: "gcr.io/k8s-testimages/kubekins-e2e:v20181005-fd9cfb8b0-master",

// TODO: enable after open-source
// "gcr.io/k8s-testimages/kubekins-e2e:v20181005-fd9cfb8b0-master"
//
// use custom built image to include "wrk", "awstester", etc.
// e.g. 607362164682.dkr.ecr.us-west-2.amazonaws.com/kubekins-e2e:ade682b5fc04
Image: cfg.AWSTESTER_EKS_KUBEKINS_E2E_IMAGE,

Args: []string{
"--repo=github.com/gyuho/$(REPO_NAME)=$(PULL_REFS)",
"--root=/go/src",
// "--upload=gs://kubernetes-jenkins/pr-logs",
"--scenario=execute",
"--",
"./test/build.sh",
},

// Command: []string{
// "/bin/echo",
// "pull-ingress-aws-alb-build",
//
// Image: cfg.AWSTESTER_EKS_KUBEKINS_E2E_IMAGE,
// Args: []string{
// "--repo=github.com/gyuho/$(REPO_NAME)=$(PULL_REFS)",
// "--root=/go/src",
// // "--upload=gs://kubernetes-jenkins/pr-logs",
// "--scenario=execute",
// "--",
// "./test/build.sh",
// },

Image: "alpine",
Command: []string{
"/bin/echo",
"pull-ingress-aws-alb-build",
},

// TODO: to build docker in docker
SecurityContext: &v1.SecurityContext{
Privileged: aws.Bool(true),
Expand Down

0 comments on commit 1572346

Please sign in to comment.