21

Replace Helm Chart Variables in your CI/CD Pipeline with Tokenizer

 3 years ago
source link: https://www.programmingwithwolfgang.com/replace-helm-variables-tokenizer/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Replace Helm Chart Variables in your CI/CD Pipeline with Tokenizer

Feb 222021-02-22T00:00:00+01:00 by Wolfgang Ofner

Helm is a great tool to deploy your application into Kubernetes. In my post, Helm - Getting Started, I also mentioned the values.yaml file which can be used to replace variables in the Helm chart. The problem with this approach is that the values.yaml file is hard-coded.

In this post, I want to introduce Tokenizer which is a simple Azure DevOps extension with which you can replace variables in the values.yaml file.

Why would I replace variables in my Helm Charts?

Currently the values.yaml file looks as following:

fullnameOverride: customerapi
replicaCount: 1
image:
  repository: wolfgangofner/customerapi
  tag: latest
  pullPolicy: IfNotPresent

As you can see, the replica count or the tag is hard-coded as 1 and latest respectively. One replica might be fine for my test environment but definitely not for my production environment. In my post Automatically Version Docker Containers in Azure DevOps CI, I talked about the disadvantages of using the latest tag and that it would be better to use a specific version number. Though, this version number is changing with every build and therefore needs to be inserted automatically.

Another use case of dynamic variables would be the connection string to your database. The connection string will be different for each of your environments.

Install Tokenizer in Azure DevOps

You can download the Tokenizer extension for free from the Marketplace. To download the extension, open the page of the extension in the marketplace and click on Get it free.

Get the Tokenizer extension

This opens a new page where you can either select your Azure DevOps Services organization to install it or download the extension if you want to install it on an Azure DevOps server.

Install the Tokenizer extension

This extension looks for variables starting and ending with a double underscore, for example, __MyVariable__ and replace it with the value of the variable MyVariable.

Add the Tokenizer Task to the Azure DevOps Pipeline

You can find the code of the demo on Github.

Add the following task before the Helm install to your pipeline:

- task: Tokenizer@0
  displayName: 'Run Tokenizer'
  inputs:
    sourceFilesPattern: 'CustomerApi/CustomerApi/values.release.yaml'

Note that I am using templates in my pipeline and added the task to the HelmInstall.yaml file. You can find more information about templates in Improve Azure DevOps YAML Pipelines with Templates. These templates also use parameters. The task looks as follows:

- task: Tokenizer@0
  displayName: 'Run Tokenizer'
  inputs:
    sourceFilesPattern: $

It is the same code as above except that the source file pattern is passed as a parameter.

All files matching the sourceFilesPattern will be searched for tokens to be replaced. In my post Helm - Getting Started, I talked about overriding Helm chart values using the values.yaml file. For the tokenizer, I am using the values.release.yaml file. This is a new file in the root folder of my project. I use this file instead of the values.yaml file because if I added tokens to the values.yaml file, it wouldn’t be possible to deploy locally. The developer would have to replace all the tokens manually before deploying the Helm chart.

Additionally, the values.release.yaml file contains only tokens I want to replace and therefore is very simple and small. My file looks as follows:

image:
  repository: __ImageName__
  tag: __BuildNumber__

Here I want to replace the repository with the ImageName variable and the tag with the BuildNumber variable.

The values.yaml file stays untouched:

image:
  repository: wolfgangofner/customerapi
  tag: latest

Testing the Tokenizer

I have the following variables in my pipeline:

ApiName: 'customerapi'
BuildNumber: $(GitVersion.NuGetVersionV2)
ImageName: 'wolfgangofner/$(ApiName)'

The GitVersion variable sets the version number. You can read more in my post Automatically Version Docker Containers in Azure DevOps CI. Run the pipeline and then check what image got deployed. You can use kubectl or a dashboard to check if the right image got loaded. For more information about using a dashboard, see my post Azure Kubernetes Service - Getting Started.

The correct image got loaded

If you see the image with the latest tag loaded, you know that something went wrong. When I don’t use Helm to deploy locally, I replace the values in the values.yaml file with VALUE_TO_OVERRIDE. If I see this after the deployment, I immediately know that something went wrong the with tokenizer.

Conclusion

Automatically replacing configuration values for different environments is crucial. This post showed how to use the Tokenizer extension and how to easily replace values in your CI/CD pipeline.

You can find the code of the demo on Github.

This post is part of “Microservice Series - From Zero to Hero”.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK