Update server URLs

This commit is contained in:
James Munnelly
2015-09-10 17:29:09 +01:00
parent 5243e3d844
commit 92f0e395ca
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -55,8 +55,8 @@ func (e *KubernetesExecutor) createPod() *api.Pod {
Name: "transcode-dir",
VolumeSource: api.VolumeSource {
NFS: &api.NFSVolumeSource {
Server: "10.12.14.16",
Path: "/ssd/plex/Buffer",
Server: "kube.storage.marley.xyz",
Path: "/shares/containers/plex/config",
},
},
},
@@ -71,7 +71,7 @@ func (e *KubernetesExecutor) createPod() *api.Pod {
VolumeMounts: []api.VolumeMount{
api.VolumeMount{
Name: "source-dir",
MountPath: "/tank/media",
MountPath: "/data",
},
api.VolumeMount{
Name: "transcode-dir",
+1 -1
View File
@@ -18,7 +18,7 @@ import (
const (
cmdPath = "/plexmediaserver/bootstrap.sh"
logFilePath = "/var/log/plex/plex-elastic-transcoder.log"
plexServerURL = "10.12.14.16:32400"
plexServerURL = "10.20.40.60:32400"
)
var executor executors.Executor