class
Kubernetes::Resources::Pod::Spec::Volume
- Kubernetes::Resources::Pod::Spec::Volume
- Reference
- Object
Included Modules
- YAML::Serializable
- YAML::Serializable::Unmapped
Defined in:
kubernetes/resources/pod/spec/volume.crkubernetes/resources/pod/spec/volume/config_map.cr
kubernetes/resources/pod/spec/volume/host_path.cr
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(name : String | Nil = nil, hostPath : HostPath | Nil = nil, configMap : ConfigMap | Nil = nil)
Instance Method Summary
- #configMap : ConfigMap | Nil
- #configMap=(configMap : ConfigMap | Nil)
- #hostPath : HostPath | Nil
- #hostPath=(hostPath : HostPath | Nil)
- #name : String | Nil
- #name=(name : String | Nil)
Constructor Detail
def self.new(name : String | Nil = nil, hostPath : HostPath | Nil = nil, configMap : ConfigMap | Nil = nil)
#