GitRepoVolumeSource class

Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.

Constructors

GitRepoVolumeSource({String? directory, required String repository, String? revision})
The main constructor.
const
GitRepoVolumeSource.fromJson(Map<String, dynamic> json)
Creates a GitRepoVolumeSource from JSON data.

Properties

directory String?
Directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
final
hashCode int
The hash code for this object.
no setterinherited
repository String
Repository is the URL.
final
revision String?
Revision is the commit hash for the specified revision.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a GitRepoVolumeSource instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

listFromJson(Iterable<Map<String, dynamic>> list) List<GitRepoVolumeSource>
Creates a list of GitRepoVolumeSource from JSON data.