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", Name: "transcode-dir",
VolumeSource: api.VolumeSource { VolumeSource: api.VolumeSource {
NFS: &api.NFSVolumeSource { NFS: &api.NFSVolumeSource {
Server: "10.12.14.16", Server: "kube.storage.marley.xyz",
Path: "/ssd/plex/Buffer", Path: "/shares/containers/plex/config",
}, },
}, },
}, },
@@ -71,7 +71,7 @@ func (e *KubernetesExecutor) createPod() *api.Pod {
VolumeMounts: []api.VolumeMount{ VolumeMounts: []api.VolumeMount{
api.VolumeMount{ api.VolumeMount{
Name: "source-dir", Name: "source-dir",
MountPath: "/tank/media", MountPath: "/data",
}, },
api.VolumeMount{ api.VolumeMount{
Name: "transcode-dir", Name: "transcode-dir",
+1 -1
View File
@@ -18,7 +18,7 @@ import (
const ( const (
cmdPath = "/plexmediaserver/bootstrap.sh" cmdPath = "/plexmediaserver/bootstrap.sh"
logFilePath = "/var/log/plex/plex-elastic-transcoder.log" logFilePath = "/var/log/plex/plex-elastic-transcoder.log"
plexServerURL = "10.12.14.16:32400" plexServerURL = "10.20.40.60:32400"
) )
var executor executors.Executor var executor executors.Executor