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.
DEPRECATED: GitRepo is deprecated. 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})
-
Default constructor.
const
-
GitRepoVolumeSource.fromJson(Map<
String, dynamic> json) -
Creates a GitRepoVolumeSource from JSON data.
factory
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