Skip to content

Commit

Permalink
Generated files for local persistent volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
msau42 committed Apr 27, 2017
1 parent be359c3 commit bc71bb2
Show file tree
Hide file tree
Showing 19 changed files with 5,609 additions and 3,341 deletions.
32 changes: 32 additions & 0 deletions api/openapi-spec/swagger.json
Expand Up @@ -39106,6 +39106,18 @@
}
}
},
"io.k8s.kubernetes.pkg.api.v1.LocalFsVolume": {
"description": "LocalFsVolume represents a filesystem-based local volume",
"required": [
"path"
],
"properties": {
"path": {
"description": "The full path to the volume on the node",
"type": "string"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
Expand All @@ -39115,6 +39127,22 @@
}
}
},
"io.k8s.kubernetes.pkg.api.v1.LocalVolumeSource": {
"description": "LocalVolume represents a local volume accessible only from one node",
"required": [
"nodeName"
],
"properties": {
"fs": {
"description": "Fs represents a filesystem-based local volume",
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.LocalFsVolume"
},
"nodeName": {
"description": "NodeName represents the node that the volume is located at",
"type": "string"
}
}
},
"io.k8s.kubernetes.pkg.api.v1.NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"required": [
Expand Down Expand Up @@ -39892,6 +39920,10 @@
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.",
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.ISCSIVolumeSource"
},
"localVolume": {
"description": "LocalVolume represents a local volume accessible only from one node",
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.LocalVolumeSource"
},
"nfs": {
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: http://kubernetes.io/docs/user-guide/volumes#nfs",
"$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.NFSVolumeSource"
Expand Down
34 changes: 34 additions & 0 deletions api/swagger-spec/v1.json
Expand Up @@ -18253,6 +18253,10 @@
"$ref": "v1.ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"localVolume": {
"$ref": "v1.LocalVolumeSource",
"description": "LocalVolume represents a local volume accessible only from one node"
},
"accessModes": {
"type": "array",
"items": {
Expand Down Expand Up @@ -18815,6 +18819,36 @@
}
}
},
"v1.LocalVolumeSource": {
"id": "v1.LocalVolumeSource",
"description": "LocalVolume represents a local volume accessible only from one node",
"required": [
"nodeName"
],
"properties": {
"nodeName": {
"type": "string",
"description": "NodeName represents the node that the volume is located at"
},
"fs": {
"$ref": "v1.LocalFsVolume",
"description": "Fs represents a filesystem-based local volume"
}
}
},
"v1.LocalFsVolume": {
"id": "v1.LocalFsVolume",
"description": "LocalFsVolume represents a filesystem-based local volume",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"description": "The full path to the volume on the node"
}
}
},
"v1.PersistentVolumeStatus": {
"id": "v1.PersistentVolumeStatus",
"description": "PersistentVolumeStatus is the current status of a persistent volume.",
Expand Down
172 changes: 127 additions & 45 deletions docs/api-reference/v1/definitions.html

Large diffs are not rendered by default.

3,090 changes: 1,722 additions & 1,368 deletions pkg/api/v1/generated.pb.go

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions pkg/api/v1/generated.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bc71bb2

Please sign in to comment.