Fix storage server URL

This commit is contained in:
James Munnelly
2015-09-10 17:49:58 +01:00
parent 92f0e395ca
commit e6cb2fd99b
+2 -2
View File
@@ -55,7 +55,7 @@ func (e *KubernetesExecutor) createPod() *api.Pod {
Name: "transcode-dir", Name: "transcode-dir",
VolumeSource: api.VolumeSource { VolumeSource: api.VolumeSource {
NFS: &api.NFSVolumeSource { NFS: &api.NFSVolumeSource {
Server: "kube.storage.marley.xyz", Server: "storage.kube.marley.xyz",
Path: "/shares/containers/plex/config", Path: "/shares/containers/plex/config",
}, },
}, },
@@ -75,7 +75,7 @@ func (e *KubernetesExecutor) createPod() *api.Pod {
}, },
api.VolumeMount{ api.VolumeMount{
Name: "transcode-dir", Name: "transcode-dir",
MountPath: "/ssd/plex/Buffer", MountPath: "/config",
}, },
}, },
ImagePullPolicy: api.PullAlways, ImagePullPolicy: api.PullAlways,