Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1023 Bytes

4_0_HighAvailability_Outside_Cloud.asciidoc

File metadata and controls

27 lines (17 loc) · 1023 Bytes

Chapter IV. High Availability Outside the Cloud

This section will cover how network traffic is routed in and out of the cluster in an HA way.

Of course, if you are running on AWS, the easiest option is to use your cloud provider’s features for this. Namely:

Elastic Load Balancers

For incoming traffic into your Kubernetes cluster.

NAT Gateway

For outgoing traffic, so that:

  1. your traffic always appears as originating from specific IPs (useful, e.g. for firewall whitelisting)

  2. you can keep all your EC2 instances in a private subnet (so that they don’t have a public IP) but still give them internet access.

1. …​BUT what if you can’t / don’t want to use these?

We’ve put together some instructions for each:

Or, you may want to skip ahead to Persistent Storage for Kubernetes.