Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
H
Helm Charts for Minds Projects
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
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
9088686fc4c2e223f7632c3fe8c907dec6f580c2...8fd5b13522249cb923a1587ae87daabc7fc1b263
Source
8fd5b13522249cb923a1587ae87daabc7fc1b263
Select Git revision
...
Target
9088686fc4c2e223f7632c3fe8c907dec6f580c2
Select Git revision
Compare
Commits (2)
(feat): add development_mode flag to settings
· f507c2ca
Marcelo Rivera
authored
17 minutes ago
f507c2ca
(feat): adds secrets for oauth
· 8fd5b135
Mark Harding
authored
15 minutes ago
8fd5b135
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
configMap.yaml
minds/templates/configMap.yaml
+7
-6
secrets-app.yaml
minds/templates/secrets-app.yaml
+2
-0
No files found.
minds/templates/configMap.yaml
View file @
8fd5b135
...
...
@@ -164,7 +164,8 @@ data:
<?php
$CONFIG = Minds\Core\Di\Di::_()->get('Config');
$CONFIG->minds_debug = true;
$CONFIG->development_mode = true; // Disable admin VPN
// Cassandra configuration
$CONFIG->cassandra = (object) [
'keyspace' => '{{ .Values.cassandra.keyspace }}',
...
...
@@ -227,7 +228,7 @@ data:
$CONFIG->set('oauth', [
'clients' => [
'mobile' => [
'secret' => '',
'secret' => '
{{ .Values.mobileSecret }}
',
],
],
'encryption_key' => '{{ .Values.jwtsecret }}',
...
...
@@ -524,7 +525,7 @@ data:
'suggested-users' => false,
'helpdesk' => true,
'top-feeds' => true,
'es-feeds' =>
false
,
'es-feeds' =>
'canary'
,
'cassandra-notifications' => true,
]);
php-fpm.conf: |-
...
...
@@ -680,9 +681,9 @@ data:
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
[program:minds-channel-
cleanup
]
[program:minds-channel-
deferred-ops
]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/Minds/engine/cli.php QueueRunner run --runner=ChannelDe
leteArtifactsCleanup
command=php /var/www/Minds/engine/cli.php QueueRunner run --runner=ChannelDe
ferredOps
autostart=true
autorestart=true
numprocs={{ .Values.runners.dispatchers.channelcleanup.replicas | default 1 }}
...
...
@@ -718,4 +719,4 @@ data:
numprocs={{ .Values.runners.dispatchers.welcomeemail.replicas | default 4 }}
redirect_stderr=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
\ No newline at end of file
stdout_logfile_maxbytes=0
This diff is collapsed.
Click to expand it.
minds/templates/secrets-app.yaml
View file @
8fd5b135
...
...
@@ -15,3 +15,5 @@ data:
phonenumber-private-key.pem
:
{{
.Files.Get "certs/phonenumber-private-key.pem" | b64enc | quote
}}
sessions-public-key.pem
:
{{
.Files.Get "certs/sessions-public-key.pem" | b64enc | quote
}}
sessions-private-key.pem
:
{{
.Files.Get "certs/sessions-private-key.pem" | b64enc | quote
}}
oauth-priv.key
:
{{
.Files.Get "certs/sessions-private-key.pem" | b64enc | quote
}}
oauth-pub.key
:
{{
.Files.Get "certs/sessions-public-key.pem" | b64enc | quote
}}
This diff is collapsed.
Click to expand it.