...
 
Commits (5)
......@@ -616,6 +616,8 @@ data:
'pro' => {{ .Values.features.pro | default false }},
'post-scheduler' => {{ .Values.features.post_scheduler | default false }},
'webtorrent' => {{ .Values.features.webtorrent | default false }},
'top-feeds-by-age' => {{ .Values.features.top_feeds_by_age | default false }},
'media-modal' => true,
'psr7-router' => {{ .Values.features.psr7_router | default false }},
]);
......@@ -659,6 +661,7 @@ data:
$CONFIG->cinemr_url = '{{ .Values.transcoder.cinemr_url }}';
$CONFIG->max_video_length = {{ .Values.max_video_length }};
$CONFIG->max_video_length_plus = {{ .Values.max_video_length_plus }};
$CONFIG->max_video_file_size = {{ .Values.max_video_file_size }};
$CONFIG->max_daily_boost_views = {{ .Values.max_daily_boost_views }};
......@@ -855,4 +858,14 @@ data:
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
[program:transcode]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/Minds/engine/cli.php QueueRunner run --runner=Transcode
autostart=true
autorestart=true
numprocs={{ .Values.runners.dispatchers.transcode.replicas | default 1 }}
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
{{ .Files.Get "config.properties" | indent 4 }}
......@@ -87,6 +87,8 @@ runners:
replicas: 1
welcomeemail:
replicas: 1
transcode:
replicas: 1
frontInit:
image:
......@@ -290,9 +292,11 @@ features:
post_scheduler: true
webtorrent: false
psr7_router: true
top_feeds_by_age: true
# Bytes
max_video_file_size: '4294967296'
# Seconds
max_video_length: 12600
max_video_length_plus: 126000
max_daily_boost_views: 10000