ConfigMap
Bases: DuploTenantResourceV3
apply
Apply a service.
create
Create a Configmap resource. Usage: CLI Usage
Contents of theconfigmap.yaml
file
Example: One liner example
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
find
list
Retrieve a List of ConfigMap resources
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of ConfigMap. |
update
Update a ConfigMap resource. Usage: CLI Usage
Contents of theconfigmap.yaml
file
Example: One liner example
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. |