Skip to content
Advertisement

How to edit configmap configuration in spring boot kubernetes application during runtime

We have application with huge configuration (this is just a part):

JavaScript

I follow this example to bind configmap with spring boot configuration but there is still some problem for example how to solve null in yaml which spring yaml postprocessor resolve as empty string: issue

second problem is how to handle this configmap. I know I can edit and then use apply but this can lead to some error. Is there some tool which I can use to edit this yaml and make some bash script for editing ? like: ./my-script.sh -function addMyCustomMapValue -args “KEY5:value5” . I tried to explore yq but I think there is some limitation and it is hard to use for some use-case and then kustomize which I think is good for creating configmap but not for editing existing one.

Is there already some good example for this use-case ?

Advertisement

Answer

Option : 1

You can Use the Lens : https://k8slens.dev/kubernetes.html

It’s UI for monitoring and Managing K8s clusters. Using this you can also edit the configmap.

Option : 2

You can manage all the Key value into single YAML file and create configmap from file :

JavaScript

Option : 3

Use helm and values.yaml template to create and your chart and apply it further.

Configmap using YAML helm

JavaScript

Option : 4

If you are using the configmap as Environment or injecting it to file path you can use the Hashi corp vault also : https://www.vaultproject.io/

Option : 5

As you suggested you can create one Bash script which will export the existing running Configmap to a new YAML file one you are done with editing YAML manually. You can apply the changes to K8s cluster.

JavaScript

You can also check the : https://github.com/Gallore/yaml_cli might be helpful.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement