Skip to content

Commit

Permalink
Merge pull request kubernetes#37193 from gmarek/event-disk
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Pass GCLOUD_COMMON_ARGS do disk attach in Kubemark
  • Loading branch information
Kubernetes Submit Queue authored Nov 21, 2016
2 parents ab184e1 + 87f8720 commit da00748
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/kubemark/start-kubemark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ run-gcloud-compute-with-retries instances create "${MASTER_NAME}" \

if [ "${EVENT_PD:-false}" == "true" ]; then
echo "Attaching ${MASTER_NAME}-event-pd to ${MASTER_NAME}"
run-gcloud-compute-with-retries instances attach-disk "${MASTER_NAME}" --disk "${MASTER_NAME}-event-pd" --device-name="master-event-pd"
run-gcloud-compute-with-retries instances attach-disk "${MASTER_NAME}" \
${GCLOUD_COMMON_ARGS} \
--disk "${MASTER_NAME}-event-pd" \
--device-name="master-event-pd"
fi

run-gcloud-compute-with-retries firewall-rules create "${INSTANCE_PREFIX}-kubemark-master-https" \
Expand Down

0 comments on commit da00748

Please sign in to comment.