Skip to content

Commit

Permalink
Merge pull request #9181 from srikiz/DO-useDebian-Image
Browse files Browse the repository at this point in the history
Use debian as default image for DO images
  • Loading branch information
k8s-ci-robot authored May 27, 2020
2 parents 3574d88 + b5ae8d3 commit a2a5e3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/getting_started/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ In the following examples, `example.com` should be replaced with the DigitalOcea
Note that you kops will only be able to successfully provision clusters in regions that support block storage (AMS3, BLR1, FRA1, LON1, NYC1, NYC3, SFO2, SGP1 and TOR1).

```bash
# coreos (the default) + flannel overlay cluster in tor1
# debian (the default) + flannel overlay cluster in tor1
kops create cluster --cloud=digitalocean --name=my-cluster.example.com --networking=flannel --zones=tor1 --ssh-public-key=~/.ssh/id_rsa.pub
kops update cluster my-cluster.example.com --yes

Expand All @@ -56,7 +56,7 @@ In the below example, `dev5.k8s.local` should be replaced with any cluster name
Ensure the master-count is odd-numbered. A load balancer is created dynamically front-facing the master instances.

```bash
# coreos (the default) + flannel overlay cluster in tor1 with 3 master setup and a public load balancer.
# debian (the default) + flannel overlay cluster in tor1 with 3 master setup and a public load balancer.
kops create cluster --cloud=digitalocean --name=dev5.k8s.local --networking=cilium --api-loadbalancer-type=public --master-count=3 --zones=tor1 --ssh-public-key=~/.ssh/id_rsa.pub --yes

# to delete a cluster - this will also delete the load balancer associated with the cluster.
Expand Down
4 changes: 2 additions & 2 deletions upup/pkg/fi/cloudup/populate_instancegroup_spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ const (

defaultMasterMachineTypeGCE = "n1-standard-1"
defaultMasterMachineTypeVSphere = "vsphere_master"
defaultMasterMachineTypeDO = "s-2vcpu-2gb"
defaultMasterMachineTypeDO = "s-2vcpu-4gb"
defaultMasterMachineTypeALI = "ecs.n2.medium"

defaultVSphereNodeImage = "kops_ubuntu_16_04.ova"
defaultDONodeImage = "coreos-stable"
defaultDONodeImage = "debian-9-x64"
defaultALINodeImage = "centos_7_04_64_20G_alibase_201701015.vhd"
)

Expand Down

0 comments on commit a2a5e3d

Please sign in to comment.