Merge pull request #3661 from thockin/volume-source-as-non-pointer

Make VolumeSource not be a pointer
This commit is contained in:
Dawn Chen
2015-01-21 12:39:49 -08:00
18 changed files with 45 additions and 50 deletions

View File

@@ -73,7 +73,7 @@ func TestClusterDNS(c *client.Client) bool {
Volumes: []api.Volume{
{
Name: "results",
Source: &api.VolumeSource{
Source: api.VolumeSource{
EmptyDir: &api.EmptyDir{},
},
},