Skip to content

ConfigMap

Bases: DuploTenantResourceV3

apply

Apply a service.

create

Create a Configmap resource. Usage: CLI Usage

duploctl configmap create -f 'configmap.yaml'
Contents of the configmap.yaml file
metadata:
  name: duploctl
data:
  foo: bar
Example: One liner example
echo """
metadata:
  name: duploctl
data:
  foo: bar

""" | duploctl configmap create -f -
Args: name: The name to set the configmap to. body: The resource to create. data: The data to add to the configmap. dryrun: Do not submit any changes to the server. wait: Wait for the resource to be created. Returns: dict: The created resource or success message. Raises: DuploError: If the Configmap could not be created.

delete

Delete a ConfigMap. Deletes a ConfigMap by name. Usage: cli

duploctl configmap delete <name>
Args: name: The name of a ConfigMap to delete. Returns: message: A success message.

find

Find a ConfigMap by name and return it's content. Usage: cli usage

duploctl configmap find <name>
Args: name: The name of the ConfigMap to find. Returns: dict: The resource content or success message. Raises: DuploError: If the ConfigMap could not be found.

list

Retrieve a List of ConfigMap resources

cli usage
duploctl configmap list

Returns:

Name Type Description
list list

A list of ConfigMap.

update

Update a ConfigMap resource. Usage: CLI Usage

duploctl configmap update -f 'configmap.yaml'
Contents of the configmap.yaml file
metadata:
  name: duploctl
data:
  foo: bar
Example: One liner example
echo """
metadata:
  name: duploctl
data:
  foo: bar

""" | duploctl configmap update -f -
Args: name (str, optional): Name of the ConfigMap. Required if body is not provided. body (dict, optional): The complete ConfigMap resource definition. data (dict, optional): Data to merge into the ConfigMap. dryrun (bool, optional): If True, return the modified ConfigMap without applying changes.

Returns:

Name Type Description
dict dict

The updated ConfigMap or a success message.

Raises:

Type Description
DuploError

If the ConfigMap update fails.