How to add a configuration option to a charm

See first: Juju | Application configuration, Juju | How to configure an application

Contents:

  1. Define a configuration option
  2. Observe the config-changed event and define the event handler
  3. (If applicable) Update and restart the Pebble layer
  4. Verify the configuration option

Define a configuration option

In the charmcraft.yaml file of the charm, under config.options, add a configuration definition, including a name, a description, the type, and the default value. The example below shows how to define two configuration options, one called name of type string and default value Wiki, and one called skin with type string and default value vector:

config:
  options:
    name:
      default: Wiki
      description: The name, or Title of the Wiki
      type: string
    skin:
      default: vector
      description: skin for the Wiki
      type: string

See more: File charmcraft.yaml > config

Observe the config-changed event and define the event handler

In the src/charm.py file of the charm project, in the __init__ function of the charm, set up an observer for the config changed event and pair that with an event handler:

self.framework.observe(self.on.config_changed, self._on_config_changed)

See more: Event config-changed

Then, in the body of the charm definition, define the event handler. Here you may want to read the current configuration value, validate it (Juju only checks that the type is valid), and log it, among other things. Sample code for an option called server-port, with type integer, and default value 8000:

def _on_config_changed(self, event):
   port = self.config["server-port"] 

   if int(port) == 22:
       self.unit.status = ops.BlockedStatus("invalid port number, 22 is reserved for SSH")
       return
   
   logger.debug("New application port is requested: %s", port)
   self._update_layer_and_restart(None)

See more: ops.CharmBase.config

  • Multiple configuration values can be changed at one time through Juju, resulting in only one config_changed event. Thus, your charm code must be able to process more than one config value changing at a time.
  • If juju config is run with values the same as the current configuration, the config_changed event will not run. Therefore, if you have a single config value, there is no point in tracking its previous value – the event will only be triggered if the value changes.
  • Configuration cannot be changed from within the charm code. Charms, by design, aren’t able to mutate their own configuration by themselves (e.g., in order to ignore an admin-provided configuration), or to configure other applications. In Ops, one typically interacts with config via a read-only facade.

(If applicable) Update and restart the Pebble layer

If your charm is a Kubernetes charm and the config affects the workload: Update the Pebble layer to fetch the current configuration value and then restart the Pebble layer.

Note that, at the time you’re handling a config-changed event, the workload might not be ready yet; so make sure to check that the container can connect (by calling container.can_connect()).

Verify the configuration option

To verify that the configuration option works as intended, pack your charm, update it in the Juju model, and run juju config followed by the name of the application deployed by your charm and then your newly defined configuration option key set to some value. For example, given the server-port key defined above, you could try:

juju config <name of application deployed by your charm> server-port=4000

See more: Juju | How to manage applications > Configure an application

Contributors: @ibraaoad @mmkay

Last updated a month ago. Help improve this document in the forum.