Débora
Débora

Reputation: 5952

KOPS over AWS EKS or vice versa

I came across an open source Kubernetes project KOPS and AWS Kubernetes service EKS. Both these products allow installation of a Kubernetes cluster. However, I wonder why one would pick EKS over KOPS or vice versa if one has not run any of them earlier.

This question does not ask which one is better, but rather asks for a comparison.

Upvotes: 20

Views: 5619

Answers (2)

user9269906
user9269906

Reputation: 211

Other significant difference is that EKS is an AWS product so you require an AWS account but kops allows to run Kubernetes in AWS but also in GCE and DigitalOcean.

Upvotes: 7

jaxxstorm
jaxxstorm

Reputation: 13241

The two are largely the same, at the time of writing, the following are the differences I'm aware of between the 2 offerings

EKS:

kops:

  • Support for more Kubernetes features, such as API server options
  • Auto provisioned nodes use the built in kops node_up tool
  • More flexibility over Kubernetes versions, EKS only has a few versions available right now

Upvotes: 29

Related Questions