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
3
Merge Requests
3
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
d3cc5a7188fc42f6f03bf1e446ceaf951bdccca8...d484a5522e9c8036b866474ec13fd38acc20b9ef
Source
d484a5522e9c8036b866474ec13fd38acc20b9ef
Select Git revision
...
Target
d3cc5a7188fc42f6f03bf1e446ceaf951bdccca8
Select Git revision
Compare
Commits (2)
(chore) Default video values and feature flags
· 999560b7
Brian Hatchet
authored
2 hours ago
999560b7
Merge branch 'helm-changes' into 'sandbox-wip'
· d484a552
Mark Harding
authored
2 hours ago
(chore) Default video values and feature flags See merge request
!5
d484a552
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
6 deletions
+41
-6
configMap.yaml
minds/templates/configMap.yaml
+18
-6
values.yaml
minds/values.yaml
+23
-0
No files found.
minds/templates/configMap.yaml
View file @
d484a552
...
...
@@ -594,14 +594,26 @@ data:
'minds',
]);
# Bool values without quotes
# true | false
# or quoted strings
# '"canary"' | '"admin"'
$CONFIG->set('features', [
'blockchain_creditcard' => false,
'suggested-users' => false,
'helpdesk' => true,
'top-feeds' => true,
'es-feeds' => true,
'cassandra-notifications' => true,
'blockchain_creditcard' => {{ .Values.features.blockchain_creditcard }},
'suggested-users' => {{ .Values.features.suggested_users }},
'helpdesk' => {{ .Values.features.helpdesk }},
'top-feeds' => {{ .Values.features.top_feeds }},
'es-feeds' => {{ .Values.features.es_feeds }},
'cassandra-notifications' => {{ .Values.features.cassandra_notifications }},
'allow-comments-toggle' => {{ .Values.features.allow_comments_toggle }},
'permissions' => {{ .Values.features.permissions }},
'wire-multi-currency' => {{ .Values.features.wire_multi_currency }},
]);
$CONFIG->max_video_length = {{ .Values.max_video_length }};
$CONFIG->max_video_file_size = {{ .Values.max_video_file_size }};
$CONFIG->max_daily_boost_views = {{ .Values.max_daily_boost_views }};
php-fpm.conf
:
|-
[www]
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
d484a552
...
...
@@ -233,3 +233,26 @@ blockchain:
wireWalletKey
:
boostCampaignsWallet
:
'
0xa28c7c4dbe34e36d9c21bb84ab3df10fdf8f898e'
boostCampaignsWalletKey
:
# Bool values without quotes
# true | false
# or quoted strings
# '"canary"' | '"admin"'
features
:
allow_comments_toggle
:
true
blockchain_creditcard
:
true
dark_mode
:
true
cassandra_notifications
:
true
es_feeds
:
true
helpdesk
:
true
permissions
:
true
suggested_users
:
true
top_feeds
:
true
wire_multi_currency
:
true
# Bytes
max_video_file_size
:
'
4294967296'
# Seconds
max_video_length
:
12600
max_daily_boost_views
:
10000
This diff is collapsed.
Click to expand it.