Helm v2 Vs Helm v3
Learn the differences between v2 and v3 of Helm.
Helm, like many other softwares, has been evolving through the years. Most of the time, developers try not to introduce any breaking changes with new versions of their tools, sometimes it’s better not to support the old ways of working and redesign things from scratch.
A famous example of that is Python, which to this day is used broadly in versions 2 and 3. This is partly because many useful libraries have not yet migrated to the latest version forcing developers to stick with an older version.
Helm is no exception. Even though it is a young technology, it has been redesigned a couple of times. Despite having a huge base of users, there was a decision to change its architecture and slightly modify an API to make it into a better product.
In this course, version 3 of Helm will be used, but please be aware that the previous one is still popular and can be found in many projects. Let’s look at the most important changes between these two versions. ...