@jkcfg/kubernetes
Version:
jk Kubernetes library
31 lines • 941 B
JSON
{
"description": "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.",
"required": [
"repository"
],
"properties": {
"directory": {
"description": "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.",
"type": [
"string",
"null"
]
},
"repository": {
"description": "Repository URL",
"type": [
"string",
"null"
]
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}