Updated on 2024-04-15 GMT+08:00

Creating a ConfigMap

A ConfigMap is a type of resource that stores configuration information required by a workload. Its content is user-defined. After creating ConfigMaps, you can use them as files or environment variables in a workload.

ConfigMaps allow you to decouple configuration files from container images to enhance the portability of workloads.

ConfigMaps provide the following benefits:

  • Manage configurations for different environments and services.
  • Deploy workloads in different environments. Multiple versions are supported for configuration files so that you can update and roll back workloads easily.
  • Quickly import configurations in the form of files to containers.

Creating a ConfigMap

  1. Access the cluster details page. In the navigation pane, choose ConfigMaps and Secrets. Then click the ConfigMaps tab. You can create a ConfigMap directly or using YAML. If you want to create a ConfigMap using YAML, go to 4.
  2. Select the namespace to which the ConfigMap will belong.
  3. Create a ConfigMap directly by clicking Create ConfigMap.

    Set the parameters listed in Table 1.
    Table 1 Parameters for creating a ConfigMap

    Parameter

    Description

    Name

    Name of a ConfigMap, which must be unique in a namespace.

    Namespace

    Namespace to which the ConfigMap belongs. The current namespace is used by default.

    Description

    Description of the ConfigMap.

    Data

    The workload configuration data can be used in a container or used to store the configuration data.

    Click and enter the key and value. Key indicates the configuration name, and Value indicates the configuration content.

    Label

    Labels are attached to objects such as workloads, nodes, and Services in key-value pairs.

    Labels define identified attributes of these objects and can be used to manage and select objects.

    1. Enter the label key and value.
    2. Click Add.

  4. Create a ConfigMap from a YAML file by clicking Create from YAML.

    To create a resource by uploading a file, ensure that the resource description file has been created. UCS supports files in JSON or YAML format. For details, see ConfigMap Resource File Configuration.

    You can import or directly write the file content in YAML or JSON format.
    • Method 1: Import an orchestration file.

      Click Import to import a YAML or JSON file. The content of the YAML or JSON file is displayed in the orchestration content area.

    • Method 2: Directly orchestrate the content.

      In the orchestration content area, enter the content of the YAML or JSON file.

  5. When the configuration is complete, click OK.

    The new ConfigMap is displayed in the ConfigMap list.

ConfigMap Resource File Configuration

A ConfigMap resource file can be in JSON or YAML format, and the file size cannot exceed 2 MB.

  • JSON format

    The file name is configmap.json and the configuration example is as follows:

    {
      "kind": "ConfigMap",
      "apiVersion": "v1",
      "metadata": {
        "name": "paas-broker-app-017",
        "namespace": "test"
      },
      "data": {
        "context": "{\"applicationComponent\":{\"properties\":{\"custom_spec\":{}},\"node_name\":\"paas-broker-app\",\"stack_id\":\"0177eae1-89d3-cb8a-1f94-c0feb7e91d7b\"},\"softwareComponents\":[{\"properties\":{\"custom_spec\":{}},\"node_name\":\"paas-broker\",\"stack_id\":\"0177eae1-89d3-cb8a-1f94-c0feb7e91d7b\"}]}"
      }
    }
  • YAML format
    The file name is configmap.yaml and the configuration example is as follows:
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: test-configmap
      namespace: default
    data:
      data-1: "value-1"
      data-2: "value-2"

Related Operations

On the cluster details page, you can also perform the operations described in Table 2.
Table 2 Related operations

Operation

Description

Viewing details

Click the ConfigMap name to view its details.

Editing a YAML file

Click Edit YAML in the row where the target ConfigMap resides to edit its YAML file.

Updating a ConfigMap

  1. Click Update in the row where the target ConfigMap resides.
  2. Modify the ConfigMap data according to Table 1.
  3. Click OK to submit the modified information.

Deleting a ConfigMap

Click Delete in the row where the target ConfigMap resides, and click Yes.

Deleting ConfigMaps in batches

  1. Select the ConfigMap to be deleted.
  2. Click Delete in the upper left corner.
  3. Click Yes.