Merge pull request #11270 from mbforbes/jenkinsTypo

(jenkins/e2e) Fix typos and clarify instructions in comments
This commit is contained in:
Eric Tune 2015-07-15 12:57:46 -07:00
commit c208c1c9a3

View File

@ -295,22 +295,22 @@ if [[ "${E2E_UP,,}" == "true" || "${JENKINS_FORCE_GET_TARS:-}" =~ ^[yY]$ ]]; the
if [[ ! "${CIRCLECI:-}" == "true" ]]; then if [[ ! "${CIRCLECI:-}" == "true" ]]; then
# Copy GCE keys so we don't keep cycling them. # Copy GCE keys so we don't keep cycling them.
# To set this up, you must know the <project>, <zone>, and <instance> that # To set this up, you must know the <project>, <zone>, and <instance>
# on which your jenkins jobs are running. Then do: # on which your jenkins jobs are running. Then do:
# #
# # Get into the instance. # # SSH from your computer into the instance.
# $ gcloud compute ssh --project="<prj>" ssh --zone="<zone>" <instance> # $ gcloud compute ssh --project="<prj>" ssh --zone="<zone>" <instance>
# #
# # Generate a key by ssh'ing into itself, then exit. # # Generate a key by ssh'ing from the instance into itself, then exit.
# $ gcloud compute ssh --project="<prj>" ssh --zone="<zone>" <instance> # $ gcloud compute ssh --project="<prj>" ssh --zone="<zone>" <instance>
# $ ^D # $ ^D
# #
# # Copy the keys to the desired location, e.g. /var/lib/jenkins/gce_keys/ # # Copy the keys to the desired location (e.g. /var/lib/jenkins/gce_keys/).
# $ sudo mkdir -p /var/lib/jenkins/gce_keys/ # $ sudo mkdir -p /var/lib/jenkins/gce_keys/
# $ sudo cp ~/.ssh/google_compute_engine /var/lib/jenkins/gce_keys/ # $ sudo cp ~/.ssh/google_compute_engine /var/lib/jenkins/gce_keys/
# $ sudo cp ~/.ssh/google_compute_engine.pub /var/lib/jenkins/gce_keys/ # $ sudo cp ~/.ssh/google_compute_engine.pub /var/lib/jenkins/gce_keys/
# #
# Move the permissions to jenkins. # # Move the permissions for the keys to Jenkins.
# $ sudo chown -R jenkins /var/lib/jenkins/gce_keys/ # $ sudo chown -R jenkins /var/lib/jenkins/gce_keys/
# $ sudo chgrp -R jenkins /var/lib/jenkins/gce_keys/ # $ sudo chgrp -R jenkins /var/lib/jenkins/gce_keys/
if [[ "${KUBERNETES_PROVIDER}" == "aws" ]]; then if [[ "${KUBERNETES_PROVIDER}" == "aws" ]]; then