Removed CoreOS image version for AWS and GCE in favor of linking to the official channel.
This commit is contained in:
parent
3f5b30abf5
commit
08eecc8827
@ -11,6 +11,8 @@ Use the [master.yaml](cloud-configs/master.yaml) and [node.yaml](cloud-configs/n
|
|||||||
|
|
||||||
### AWS
|
### AWS
|
||||||
|
|
||||||
|
*Attention:* Replace ```<ami_image_id>``` bellow for a [suitable version of CoreOS image for AWS](https://coreos.com/docs/running-coreos/cloud-providers/ec2/).
|
||||||
|
|
||||||
#### Provision the Master
|
#### Provision the Master
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -22,7 +24,7 @@ aws ec2 authorize-security-group-ingress --group-name kubernetes --source-securi
|
|||||||
|
|
||||||
```
|
```
|
||||||
aws ec2 run-instances \
|
aws ec2 run-instances \
|
||||||
--image-id ami-c484f5ac \
|
--image-id <ami_image_id> \
|
||||||
--key-name <keypair> \
|
--key-name <keypair> \
|
||||||
--region us-west-2 \
|
--region us-west-2 \
|
||||||
--security-groups kubernetes \
|
--security-groups kubernetes \
|
||||||
@ -55,12 +57,14 @@ aws ec2 run-instances \
|
|||||||
|
|
||||||
### GCE
|
### GCE
|
||||||
|
|
||||||
|
*Attention:* Replace ```<gce_image_id>``` bellow for a [suitable version of CoreOS image for GCE](https://coreos.com/docs/running-coreos/cloud-providers/google-compute-engine/).
|
||||||
|
|
||||||
#### Provision the Master
|
#### Provision the Master
|
||||||
|
|
||||||
```
|
```
|
||||||
gcloud compute instances create master \
|
gcloud compute instances create master \
|
||||||
--image-project coreos-cloud \
|
--image-project coreos-cloud \
|
||||||
--image coreos-alpha-557-0-0-v20150109 \
|
--image <gce_image_id> \
|
||||||
--boot-disk-size 200GB \
|
--boot-disk-size 200GB \
|
||||||
--machine-type n1-standard-1 \
|
--machine-type n1-standard-1 \
|
||||||
--zone us-central1-a \
|
--zone us-central1-a \
|
||||||
@ -82,7 +86,7 @@ Edit `node.yaml` and replace all instances of `<master-private-ip>` with the pri
|
|||||||
```
|
```
|
||||||
gcloud compute instances create node1 \
|
gcloud compute instances create node1 \
|
||||||
--image-project coreos-cloud \
|
--image-project coreos-cloud \
|
||||||
--image coreos-alpha-557-0-0-v20150109 \
|
--image <gce_image_id> \
|
||||||
--boot-disk-size 200GB \
|
--boot-disk-size 200GB \
|
||||||
--machine-type n1-standard-1 \
|
--machine-type n1-standard-1 \
|
||||||
--zone us-central1-a \
|
--zone us-central1-a \
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
Use the [standalone.yaml](cloud-configs/standalone.yaml) cloud-config to provision a single node Kubernetes cluster.
|
Use the [standalone.yaml](cloud-configs/standalone.yaml) cloud-config to provision a single node Kubernetes cluster.
|
||||||
|
|
||||||
|
### CoreOS image versions
|
||||||
|
|
||||||
### AWS
|
### AWS
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -10,9 +12,11 @@ aws ec2 authorize-security-group-ingress --group-name kubernetes --protocol tcp
|
|||||||
aws ec2 authorize-security-group-ingress --group-name kubernetes --source-security-group-name kubernetes
|
aws ec2 authorize-security-group-ingress --group-name kubernetes --source-security-group-name kubernetes
|
||||||
```
|
```
|
||||||
|
|
||||||
|
*Attention:* Replace ```<ami_image_id>``` bellow for a [suitable version of CoreOS image for AWS](https://coreos.com/docs/running-coreos/cloud-providers/ec2/).
|
||||||
|
|
||||||
```
|
```
|
||||||
aws ec2 run-instances \
|
aws ec2 run-instances \
|
||||||
--image-id ami-c484f5ac \
|
--image-id <ami_image_id> \
|
||||||
--key-name <keypair> \
|
--key-name <keypair> \
|
||||||
--region us-west-2 \
|
--region us-west-2 \
|
||||||
--security-groups kubernetes \
|
--security-groups kubernetes \
|
||||||
@ -22,10 +26,12 @@ aws ec2 run-instances \
|
|||||||
|
|
||||||
### GCE
|
### GCE
|
||||||
|
|
||||||
|
*Attention:* Replace ```<gce_image_id>``` bellow for a [suitable version of CoreOS image for GCE](https://coreos.com/docs/running-coreos/cloud-providers/google-compute-engine/).
|
||||||
|
|
||||||
```
|
```
|
||||||
gcloud compute instances create standalone \
|
gcloud compute instances create standalone \
|
||||||
--image-project coreos-cloud \
|
--image-project coreos-cloud \
|
||||||
--image coreos-alpha-557-0-0-v20150109 \
|
--image <gce_image_id> \
|
||||||
--boot-disk-size 200GB \
|
--boot-disk-size 200GB \
|
||||||
--machine-type n1-standard-1 \
|
--machine-type n1-standard-1 \
|
||||||
--zone us-central1-a \
|
--zone us-central1-a \
|
||||||
|
Loading…
Reference in New Issue
Block a user