The VPC CNI plugin is included in the official AWS announcements and documentation. So we can assume this is an officially backed product. Unfortunately and obviously the helm chart is not:
Hi @3oris, the Helm chart for the VPC CNI is officially supported and is not poorly maintained. The Helm chart is deliberately behind the latest CNI release because we bake the CNI releases before updating the Helm chart (this is why the eks-charts repo has a "stable/" directory, to indicate that what it deploys is not the equivalent of the latest Docker image tag).
That said, of course there's plenty of room for improvement. Our plan of action regarding how the CNI repo's configuration files are handled in the future is as follows (and actually, we're going to take this approach for all AWS curated repos):
charts/ directory to the CNI source repo. This will contain a single Helm chart with a values.yaml file containing production defaults for configuration variables, and will install the CNI daemonset and CNI plugin along with the metrics helper. The Helm chart will install the latest CNI images.helm template.stable/ and the images referenced will match the CNI release. Automation scripts in the eks-charts source repo will be the only thing that ever publishes to the eks Helm repository.config directory entirely from the CNI source repoHope this gives you some idea about what our roadmap looks like for getting our Helm and configuration files in order!
Thanks,
-jay
Hi @jaypipes ,
thanks a lot for your comprehensive response explaining the general roadmap regarding the helm chart releases in https://github.com/aws/eks-charts/ . I am very much looking forward to it.
The fact that the chart cannot be installed in the first place
$ helm version
version.BuildInfo{Version:"v3.0.2", GitCommit:"19e47ee3283ae98139d98460de796c1be1e3975f", GitTreeState:"clean", GoVersion:"go1.13.5"}
$ helm upgrade --install --recreate-pods --force aws-vpc-cni --namespace kube-system eks/aws-vpc-cni
Flag --recreate-pods has been deprecated, functionality will no longer be updated. Consult the documentation for other methods to recreate pods
Release "aws-vpc-cni" does not exist. Installing it now.
Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: kind: ServiceAccount, namespace: kube-system, name: aws-node
because a newly created cluster already contains the resources in question will hopefully be addressed here: https://github.com/aws/eks-charts/issues/57 .
@3oris please see #758 for a fuller description of the plans.
@jaypipes Why was this one reopened?
@jaypipes Why was this one reopened?
Because it's not fixed yet :)
Merged #1271 to master. Will pick this up in the next CNI release. Automation to copy the configs to eks charts is tracked here - https://github.com/aws/amazon-vpc-cni-k8s/issues/1319
Most helpful comment
Hi @3oris, the Helm chart for the VPC CNI is officially supported and is not poorly maintained. The Helm chart is deliberately behind the latest CNI release because we bake the CNI releases before updating the Helm chart (this is why the eks-charts repo has a "stable/" directory, to indicate that what it deploys is not the equivalent of the
latestDocker image tag).That said, of course there's plenty of room for improvement. Our plan of action regarding how the CNI repo's configuration files are handled in the future is as follows (and actually, we're going to take this approach for all AWS curated repos):
charts/directory to the CNI source repo. This will contain a single Helm chart with a values.yaml file containing production defaults for configuration variables, and will install the CNI daemonset and CNI plugin along with the metrics helper. The Helm chart will install the latest CNI images.helm template.stable/and the images referenced will match the CNI release. Automation scripts in the eks-charts source repo will be the only thing that ever publishes to the eks Helm repository.configdirectory entirely from the CNI source repoHope this gives you some idea about what our roadmap looks like for getting our Helm and configuration files in order!
Thanks,
-jay