Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
57180093
Commit
57180093
authored
Sep 14, 2016
by
Abrar Shivani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for storage class for vSphere volume plugin. Custom disk format for dynamic provisioning.
parent
af3050dd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
100 additions
and
20 deletions
+100
-20
README.md
...les/experimental/persistent-volume-provisioning/README.md
+15
-0
vsphere.go
pkg/cloudprovider/providers/vsphere/vsphere.go
+54
-13
vsphere_test.go
pkg/cloudprovider/providers/vsphere/vsphere_test.go
+6
-5
attacher_test.go
pkg/volume/vsphere_volume/attacher_test.go
+2
-1
vsphere_volume_util.go
pkg/volume/vsphere_volume/vsphere_volume_util.go
+23
-1
No files found.
examples/experimental/persistent-volume-provisioning/README.md
View file @
57180093
...
...
@@ -83,6 +83,21 @@ parameters:
*
`type`
:
`pd-standard`
or
`pd-ssd`
. Default:
`pd-ssd`
*
`zone`
: GCE zone. If not specified, a random zone in the same region as controller-manager will be chosen.
#### vSphere
```
yaml
kind
:
StorageClass
apiVersion
:
storage.k8s.io/v1beta1
metadata
:
name
:
slow
provisioner
:
kubernetes.io/vsphere-volume
parameters
:
diskformat
:
thin
```
*
`diskformat`
:
`thin`
,
`zeroedthick`
and
`eagerzeroedthick`
. See vSphere docs for details. Default:
`"thin"`
.
#### GLUSTERFS
```
yaml
...
...
pkg/cloudprovider/providers/vsphere/vsphere.go
View file @
57180093
...
...
@@ -56,6 +56,9 @@ const (
SCSIDeviceSlots
=
16
SCSIReservedSlot
=
7
ThinDiskType
=
"thin"
PreallocatedDiskType
=
"preallocated"
EagerZeroedThickDiskType
=
"eagerZeroedThick"
ZeroedThickDiskType
=
"zeroedThick"
VolDir
=
"kubevols"
)
...
...
@@ -66,6 +69,17 @@ const (
// TODO: Add support for lsilogic driver type
var
supportedSCSIControllerType
=
[]
string
{
strings
.
ToLower
(
LSILogicSASControllerType
),
PVSCSIControllerType
}
// Maps user options to API parameters.
// Keeping user options consistent with docker volume plugin for vSphere.
// API: http://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.wssdk.apiref.doc/vim.VirtualDiskManager.VirtualDiskType.html
var
diskFormatValidType
=
map
[
string
]
string
{
ThinDiskType
:
ThinDiskType
,
strings
.
ToLower
(
EagerZeroedThickDiskType
)
:
EagerZeroedThickDiskType
,
strings
.
ToLower
(
ZeroedThickDiskType
)
:
PreallocatedDiskType
,
}
var
DiskformatValidOptions
=
generateDiskFormatValidOptions
()
var
ErrNoDiskUUIDFound
=
errors
.
New
(
"No disk UUID found"
)
var
ErrNoDiskIDFound
=
errors
.
New
(
"No vSphere disk ID found"
)
var
ErrNoDevicesFound
=
errors
.
New
(
"No devices found"
)
...
...
@@ -126,12 +140,30 @@ type Volumes interface {
DiskIsAttached
(
volPath
,
nodeName
string
)
(
bool
,
error
)
// CreateVolume creates a new vmdk with specified parameters.
CreateVolume
(
name
string
,
size
int
,
tags
*
map
[
string
]
string
)
(
volumePath
string
,
err
error
)
CreateVolume
(
volumeOptions
*
VolumeOptions
)
(
volumePath
string
,
err
error
)
// DeleteVolume deletes vmdk.
DeleteVolume
(
vmDiskPath
string
)
error
}
// VolumeOptions specifies capacity, tags, name and diskFormat for a volume.
type
VolumeOptions
struct
{
CapacityKB
int
Tags
map
[
string
]
string
Name
string
DiskFormat
string
}
// Generates Valid Options for Diskformat
func
generateDiskFormatValidOptions
()
string
{
validopts
:=
""
for
diskformat
:=
range
diskFormatValidType
{
validopts
+=
(
diskformat
+
", "
)
}
validopts
=
strings
.
TrimSuffix
(
validopts
,
", "
)
return
validopts
}
// Parses vSphere cloud config file and stores it into VSphereConfig.
func
readConfig
(
config
io
.
Reader
)
(
VSphereConfig
,
error
)
{
if
config
==
nil
{
...
...
@@ -1064,7 +1096,22 @@ func (vs *VSphere) DetachDisk(volPath string, nodeName string) error {
}
// CreateVolume creates a volume of given size (in KiB).
func
(
vs
*
VSphere
)
CreateVolume
(
name
string
,
size
int
,
tags
*
map
[
string
]
string
)
(
volumePath
string
,
err
error
)
{
func
(
vs
*
VSphere
)
CreateVolume
(
volumeOptions
*
VolumeOptions
)
(
volumePath
string
,
err
error
)
{
var
diskFormat
string
// Default diskformat as 'thin'
if
volumeOptions
.
DiskFormat
==
""
{
volumeOptions
.
DiskFormat
=
ThinDiskType
}
if
_
,
ok
:=
diskFormatValidType
[
volumeOptions
.
DiskFormat
];
!
ok
{
return
""
,
fmt
.
Errorf
(
"Cannot create disk. Error diskformat %+q."
+
" Valid options are %s."
,
volumeOptions
.
DiskFormat
,
DiskformatValidOptions
)
}
diskFormat
=
diskFormatValidType
[
volumeOptions
.
DiskFormat
]
// Create context
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
defer
cancel
()
...
...
@@ -1089,13 +1136,6 @@ func (vs *VSphere) CreateVolume(name string, size int, tags *map[string]string)
return
""
,
err
}
if
(
*
tags
)[
"adapterType"
]
==
""
{
(
*
tags
)[
"adapterType"
]
=
LSILogicControllerType
}
if
(
*
tags
)[
"diskType"
]
==
""
{
(
*
tags
)[
"diskType"
]
=
ThinDiskType
}
// vmdks will be created inside kubevols directory
kubeVolsPath
:=
filepath
.
Clean
(
ds
.
Path
(
VolDir
))
+
"/"
err
=
makeDirectoryInDatastore
(
c
,
dc
,
kubeVolsPath
,
false
)
...
...
@@ -1103,18 +1143,19 @@ func (vs *VSphere) CreateVolume(name string, size int, tags *map[string]string)
glog
.
Errorf
(
"Cannot create dir %#v. err %s"
,
kubeVolsPath
,
err
)
return
""
,
err
}
glog
.
V
(
4
)
.
Infof
(
"Created dir with path as %+q"
,
kubeVolsPath
)
vmDiskPath
:=
kubeVolsPath
+
n
ame
+
".vmdk"
vmDiskPath
:=
kubeVolsPath
+
volumeOptions
.
N
ame
+
".vmdk"
// Create a virtual disk manager
virtualDiskManager
:=
object
.
NewVirtualDiskManager
(
c
.
Client
)
// Create specification for new virtual disk
vmDiskSpec
:=
&
types
.
FileBackedVirtualDiskSpec
{
VirtualDiskSpec
:
types
.
VirtualDiskSpec
{
AdapterType
:
(
*
tags
)[
"adapterType"
]
,
DiskType
:
(
*
tags
)[
"diskType"
]
,
AdapterType
:
LSILogicControllerType
,
DiskType
:
diskFormat
,
},
CapacityKb
:
int64
(
size
),
CapacityKb
:
int64
(
volumeOptions
.
CapacityKB
),
}
// Create virtual disk
...
...
pkg/cloudprovider/providers/vsphere/vsphere_test.go
View file @
57180093
...
...
@@ -222,12 +222,13 @@ func TestVolumes(t *testing.T) {
t
.
Fatalf
(
"Instances.List() returned zero servers"
)
}
tags
:=
map
[
string
]
string
{
"adapterType"
:
"lsiLogic"
,
"diskType"
:
"thin"
,
}
volumeOptions
:=
&
VolumeOptions
{
CapacityKB
:
1
*
1024
*
1024
,
Tags
:
nil
,
Name
:
"kubernetes-test-volume-"
+
rand
.
String
(
10
),
DiskFormat
:
"thin"
}
volPath
,
err
:=
vs
.
CreateVolume
(
"kubernetes-test-volume-"
+
rand
.
String
(
10
),
1
*
1024
*
1024
,
&
tag
s
)
volPath
,
err
:=
vs
.
CreateVolume
(
volumeOption
s
)
if
err
!=
nil
{
t
.
Fatalf
(
"Cannot create a new VMDK volume: %v"
,
err
)
}
...
...
pkg/volume/vsphere_volume/attacher_test.go
View file @
57180093
...
...
@@ -21,6 +21,7 @@ import (
"testing"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere"
"k8s.io/kubernetes/pkg/volume"
volumetest
"k8s.io/kubernetes/pkg/volume/testing"
...
...
@@ -305,7 +306,7 @@ func (testcase *testcase) DiskIsAttached(diskName, hostName string) (bool, error
return
expected
.
isAttached
,
expected
.
ret
}
func
(
testcase
*
testcase
)
CreateVolume
(
name
string
,
size
int
,
tags
*
map
[
string
]
string
)
(
volumePath
string
,
err
error
)
{
func
(
testcase
*
testcase
)
CreateVolume
(
volumeOptions
*
vsphere
.
VolumeOptions
)
(
volumePath
string
,
err
error
)
{
return
""
,
errors
.
New
(
"Not implemented"
)
}
...
...
pkg/volume/vsphere_volume/vsphere_volume_util.go
View file @
57180093
...
...
@@ -61,7 +61,29 @@ func (util *VsphereDiskUtil) CreateVolume(v *vsphereVolumeProvisioner) (vmDiskPa
// vSphere works with kilobytes, convert to KiB with rounding up
volSizeKB
:=
int
(
volume
.
RoundUpSize
(
volSizeBytes
,
1024
))
name
:=
volume
.
GenerateVolumeName
(
v
.
options
.
ClusterName
,
v
.
options
.
PVName
,
255
)
vmDiskPath
,
err
=
cloud
.
CreateVolume
(
name
,
volSizeKB
,
v
.
options
.
CloudTags
)
volumeOptions
:=
&
vsphere
.
VolumeOptions
{
CapacityKB
:
volSizeKB
,
Tags
:
*
v
.
options
.
CloudTags
,
Name
:
name
,
}
// Apply Parameters (case-insensitive). We leave validation of
// the values to the cloud provider.
for
parameter
,
value
:=
range
v
.
options
.
Parameters
{
switch
strings
.
ToLower
(
parameter
)
{
case
"diskformat"
:
volumeOptions
.
DiskFormat
=
value
default
:
return
""
,
0
,
fmt
.
Errorf
(
"invalid option %q for volume plugin %s"
,
parameter
,
v
.
plugin
.
GetPluginName
())
}
}
// TODO: implement v.options.ProvisionerSelector parsing
if
v
.
options
.
Selector
!=
nil
{
return
""
,
0
,
fmt
.
Errorf
(
"claim.Spec.Selector is not supported for dynamic provisioning on vSphere"
)
}
vmDiskPath
,
err
=
cloud
.
CreateVolume
(
volumeOptions
)
if
err
!=
nil
{
glog
.
V
(
2
)
.
Infof
(
"Error creating vsphere volume: %v"
,
err
)
return
""
,
0
,
err
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment