Skip to content

Commit

Permalink
Merge pull request #6093 from BenTheElder/fix-ingress-gce-e2e
Browse files Browse the repository at this point in the history
add ssh key to pull-ingress-gce-e2e
  • Loading branch information
k8s-ci-robot committed Dec 27, 2017
2 parents 682ccc8 + f6f7ff2 commit 5dd55f3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ presubmits:
always_run: true
spec:
containers:
- image: gcr.io/k8s-testimages/gcloud-in-go:v20171113-192bec25
- image: gcr.io/k8s-testimages/kubekins-e2e:v20171222-40e8b22e3-master
args:
- "--repo=k8s.io/$(REPO_NAME)=$(PULL_REFS)"
- "--root=/go/src"
Expand All @@ -163,10 +163,17 @@ presubmits:
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/service-account/service-account.json
- name: JENKINS_GCE_SSH_PRIVATE_KEY_FILE
value: /etc/ssh-key-secret/ssh-private
- name: JENKINS_GCE_SSH_PUBLIC_KEY_FILE
value: /etc/ssh-key-secret/ssh-public
volumeMounts:
- name: service
mountPath: /etc/service-account
readOnly: true
- mountPath: /etc/ssh-key-secret
name: ssh
readOnly: true
- name: cache-ssd
mountPath: /root/.cache
ports:
Expand All @@ -176,6 +183,10 @@ presubmits:
- name: service
secret:
secretName: service-account
- name: ssh
secret:
defaultMode: 256
secretName: ssh-key-secret
- name: cache-ssd
hostPath:
path: /mnt/disks/ssd0
Expand Down

0 comments on commit 5dd55f3

Please sign in to comment.