@@ -6,9 +6,9 @@ To build Kubernetes you need to have access to a Docker installation through eit
1. Be running Docker. 2 options supported/tested:
1.**Mac OS X** The best way to go is to use `boot2docker`. See instructions [here](https://docs.docker.com/installation/mac/).
1.**Linux with local Docker** Install Docker according to the [instructions](https://docs.docker.com/installation/#installation) for your OS. The scripts here assume that they are using a local Docker server and that they can "reach around" docker and grab results directly from the file system.
1. Have python installed. Pretty much it is installed everywhere at this point so you can probably ignore this.
1. For releasing, have the [Google Cloud SDK](https://developers.google.com/cloud/sdk/) installed and configured. The default release mechanism will upload Docker images to a private registry backed by Google Cloud Storage. Non-image release artifacts will be uploaded to Google Cloud Storage also.
2.**Linux with local Docker** Install Docker according to the [instructions](https://docs.docker.com/installation/#installation) for your OS. The scripts here assume that they are using a local Docker server and that they can "reach around" docker and grab results directly from the file system.
2. Have python installed. Pretty much it is installed everywhere at this point so you can probably ignore this.
3. For releasing, have the [Google Cloud SDK](https://developers.google.com/cloud/sdk/) installed and configured. The default release mechanism will upload Docker images to a private registry backed by Google Cloud Storage. Non-image release artifacts will be uploaded to Google Cloud Storage also.
portSpec=flag.String("p","","The port spec, comma-separated list of <external>:<internal>,...")
servicePort=flag.Int("s",-1,"If positive, create and run a corresponding service on this port, only used with 'run'")
authConfig=flag.String("auth",os.Getenv("HOME")+"/.kubernetes_auth","Path to the auth info file. If missing, prompt the user. Only used if doing https.")
...
...
@@ -51,8 +51,8 @@ var (
verbose=flag.Bool("verbose",false,"If true, print extra information")
proxy=flag.Bool("proxy",false,"If true, run a proxy to the api server")
www=flag.String("www","","If -proxy is true, use this directory to serve static files")
templateFile=flag.String("template_file","","If present load this file as a golang template and us it for output printing")
templateStr=flag.String("template","","If present parse this string as a golang template and us it for output printing")
templateFile=flag.String("template_file","","If present, load this file as a golang template and use it for output printing")
templateStr=flag.String("template","","If present, parse this string as a golang template and use it for output printing")