Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Helm Charts for Minds Projects
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
2
Merge Requests
2
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Helm Charts for Minds Projects
Commits
1559eec0
Commit
1559eec0
authored
21 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(feat): Pro domain settings
parent
3b9b1cbe
feat/extra-pro-domain-for-sandbox
1 merge request
!17
(feat): Pro domain settings
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
0 deletions
+19
-0
minds/templates/configMap.yaml
View file @
1559eec0
...
...
@@ -620,6 +620,13 @@ data:
'media-modal' => true,
]);
$CONFIG->set('pro', [
'handler' => null,
'root_domains' => ['{{ .Values.domain }}', 'minds.io'],
'subdomain_suffix' => '{{ .Values.domain }}',
'dynamodb_table_name' => 'traefik',
]);
$CONFIG->set('transcode', [
'free_threshold' => '{{ .Values.transcode.free_threshold }}',
'hd_price' => '{{ .Values.transcode.hd_price }}',
...
...
This diff is collapsed.
minds/templates/ingress-app.yaml
View file @
1559eec0
...
...
@@ -24,4 +24,14 @@ spec:
backend
:
serviceName
:
{{
template "minds.fullname" .
}}
-sockets
servicePort
:
ws
-
host
:
"
pro-domain--{{
.Values.domain
}}"
http
:
paths
:
-
backend
:
serviceName
:
{{
template "minds.fullname" .
}}
-app
servicePort
:
http
-
path
:
/socket.io
backend
:
serviceName
:
{{
template "minds.fullname" .
}}
-sockets
servicePort
:
ws
{{
- end
}}
This diff is collapsed.
minds/values.yaml
View file @
1559eec0
...
...
@@ -299,3 +299,5 @@ max_video_file_size: '4294967296'
max_video_length
:
12600
max_video_length_plus
:
126000
max_daily_boost_views
:
10000
jwtsecret
:
'
changeme'
\ No newline at end of file
This diff is collapsed.
Please
register
or
sign in
to comment