Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Helm Charts for Minds Projects
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Helm Charts for Minds Projects
Compare Revisions
afe7c67097448a6fe69a813df63c6258370afd42...a2337553a1f41dc09d73c2129e4997243103afce
Source
a2337553a1f41dc09d73c2129e4997243103afce
Select Git revision
...
Target
afe7c67097448a6fe69a813df63c6258370afd42
Select Git revision
Compare
Commits (2)
Merge branch 'sandbox-wip' of gitlab.com:minds/helm-charts into sandbox-wip-aws-creds
· c892a6dd
Ben Hayward
authored
49 minutes ago
c892a6dd
Removed aws
· a2337553
Ben Hayward
authored
47 minutes ago
a2337553
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
0 deletions
+76
-0
configMap.yaml
minds/templates/configMap.yaml
+42
-0
values.yaml
minds/values.yaml
+34
-0
No files found.
minds/templates/configMap.yaml
View file @
a2337553
...
...
@@ -602,6 +602,47 @@ data:
'es-feeds' => true,
'cassandra-notifications' => true,
]);
$CONFIG->set('transcode', [
'free_threshold' => '{{ .Values.transcode.free_threshold }}',
'hd_price' => '{{ .Values.transcode.hd_price }}',
'fhd_price' => '{{ .Values.transcode.fhd_price }}',
]);
$CONFIG->set('transcoder', [
'threads' => '{{ .Values.transcoder.threads }}',
'dir' => '{{ .Values.transcoder.dir }}',
'presets' => [
[
'width' => '{{ .Values.transcoder.width }}',
'height' => '{{ .Values.transcoder.height }}',
'bitrate' => '{{ .Values.transcoder.bitrate }}',
'audio_bitrate' => '{{ .Values.transcoder.audio_bitrate }}',
'formats' => '{{ .Values.transcoder.formats | toJson }}',
'charge' => '{{ .Values.transcoder.charge }}',
],
[
'width' => '{{ .Values.transcoder.width2 }}',
'height' => '{{ .Values.transcoder.height2 }}',
'bitrate' => '{{ .Values.transcoder.bitrate2 }}'
'audio_bitrate' => '{{ .Values.transcoder.audio_bitrate2 }}',
'formats' => '{{ .Values.transcoder.formats2 | toJson }}',
'charge' => '{{ .Values.transcoder.charge2 }}',
],
[
'width' => '{{ .Values.transcoder.width3 }}',
'height' => '{{ .Values.transcoder.height3 }}',
'bitrate' => '{{ .Values.transcoder.bitrate3 }}',
'audio_bitrate' => '{{ .Values.transcoder.audio_bitrate3 }}',
'formats' => '{{ .Values.transcoder.formats3 | toJson }}',
'charge' => '{{ .Values.transcoder.charge3 }}',
],
]
]);
$CONFIG->cinemr_url = '{{ .Values.transcoder.cinemr_url }}';
php-fpm.conf
:
|-
[www]
...
...
@@ -794,3 +835,4 @@ data:
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
{{
.Files.Get "config.properties" | indent 4
}}
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
a2337553
...
...
@@ -212,6 +212,40 @@ encryptionKeys:
private
:
public
:
transcode
:
free_threshold
:
'
2'
hd_price
:
'
1'
fhd_price
:
'
1.5'
transcoder
:
threads
:
4
dir
:
'
cinemr_dev'
width
:
640
height
:
360
bitrate
:
500
audio_bitrate
:
80
formats
:
-
'
mp4'
-
'
webm'
charge
:
false
width2
:
640
height2
:
360
bitrate2
:
500
audio_bitrate2
:
80
formats2
:
-
'
mp4'
-
'
webm'
charge2
:
false
width3
:
640
height3
:
360
bitrate3
:
500
audio_bitrate3
:
80
formats3
:
-
'
mp4'
-
'
webm'
charge3
:
false
cinemr_url
:
'
https://cinemr.s3.amazonaws.com/cinemr_dev/'
blockchain
:
testNet
:
'
true'
clientNetwork
:
'
4'
...
...
This diff is collapsed.
Click to expand it.