You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened:
We updated our test EKS cluster to the latest AMI ami-098fb7e9b507904e7 which should match https://github.com/awslabs/amazon-eks-ami/releases/tag/v20190220. We used the new --enable-docker-bridge flag to setup the docker bridge network, however the network was not enabled.
After further investigation and looking through the recent issues we found #183 (comment) which points out that there is a missing commit 613fece in the AMI. We checked and confirmed this is the case in the nodes in our test cluster.
What you expected to happen:
The docker bridge network was configured and enabled when using the --enable-docker-bridge.
How to reproduce it (as minimally and precisely as possible):
Create a new EC2 instance using ami-098fb7e9b507904e7
SSH into the instance and check the /etc/eks/bootstrap.sh script doesn't contain the fix from 613fece
[ec2-user@ip-10-10-0-11 ~]$ grep ENABLE_DOCKER_BRIDGE /etc/eks/bootstrap.sh
ENABLE_DOCKER_BRIDGE="${ENABLE_DOCKER_BRIDGE:-false}"
if [[ "$ENABLE_DOCKER_BRIDGE" = "true" ]]; then
[ec2-user@ip-10-10-0-11 ~]$ grep ENABLE_DOCKER_BIDGE /etc/eks/bootstrap.sh
ENABLE_DOCKER_BIDGE=$2
This issue shares a root-cause with #233 so I'm going to de-duplicate it into that issue, please follow progress over there. AMIs are immutable once released so you'll need to use the most recent AMI to have access to the fixes.
What happened:
We updated our test EKS cluster to the latest AMI
ami-098fb7e9b507904e7
which should match https://github.com/awslabs/amazon-eks-ami/releases/tag/v20190220. We used the new--enable-docker-bridge
flag to setup the docker bridge network, however the network was not enabled.After further investigation and looking through the recent issues we found #183 (comment) which points out that there is a missing commit 613fece in the AMI. We checked and confirmed this is the case in the nodes in our test cluster.
What you expected to happen:
The docker bridge network was configured and enabled when using the
--enable-docker-bridge
.How to reproduce it (as minimally and precisely as possible):
ami-098fb7e9b507904e7
/etc/eks/bootstrap.sh
script doesn't contain the fix from 613feceAnything else we need to know?:
Environment:
aws eks describe-cluster --name <name> --query cluster.platformVersion
): N/Aaws eks describe-cluster --name <name> --query cluster.version
):ami-098fb7e9b507904e7
uname -a
): N/Acat /tmp/release
on a node): N/AThe text was updated successfully, but these errors were encountered: