Amazon VPC

The Amazon VPC CNI uses the native AWS networking for Pods. Every pod gets an Elastic Network Interface (ENI) on the node it is running and an IP address belonging to the subnets assigned to the node.

Installing

To use Amazon VPC, specify the following in the cluster spec:

  1. networking:
  2. amazonvpc: {}

in the cluster spec file or pass the --networking amazonvpc option on the command line to kOps:

  1. export ZONES=<mylistofzones>
  2. kops create cluster \
  3. --zones $ZONES \
  4. --networking amazonvpc \
  5. --yes \
  6. --name myclustername.mydns.io

Important: pods use the VPC CIDR, i.e. there is no isolation between the master, node/s and the internal k8s network. In addition, this CNI does not enforce network policies.

Configuration

Configuration options for the Amazon VPC CNI plugin can be set through env vars defined in the cluster spec:

  1. networking:
  2. amazonvpc:
  3. env:
  4. - name: WARM_IP_TARGET
  5. value: "10"
  6. - name: AWS_VPC_K8S_CNI_LOGLEVEL
  7. value: debug

Troubleshooting

In case of any issues the directory /var/log/aws-routed-eni contains the log files of the CNI plugin. This directory is located in all the nodes in the cluster.