ConfigMap
Class sealed net10.0
Represents a Kubernetes ConfigMap resource.
namespace Aspire.Hosting.Kubernetes.Resources;
public sealed class ConfigMap : Aspire.Hosting.Kubernetes.Resources.BaseKubernetesResource{ // ...}Remarks
Section titled Remarks A ConfigMap is used to store non-confidential data in key-value pairs. Applications running in a Kubernetes cluster can consume this configuration data. Derived from the BaseKubernetesResource class, this class includes properties specific to ConfigMap resources, such as BinaryData, Data, and Immutable, while also inheriting common Kubernetes resource properties like Kind, ApiVersion, and Metadata.
Constructors1
Section titled ConstructorsProperties3
Section titled PropertiesBinaryDatagetDictionary<string, string> Represents a collection of binary data entries as key-value pairs within a ConfigMap object.
DatagetDictionary<string, string> Represents a collection of key-value pairs where both the keys and the values are strings.
Immutableget; setbool? Gets or sets a value indicating whether the ConfigMap is immutable.