|
|
@@ -36,3 +36,57 @@ spec:
|
|
36
|
36
|
host: newcloud.kaisers.info
|
|
37
|
37
|
username: admin
|
|
38
|
38
|
password: changeme
|
|
|
39
|
+ mail:
|
|
|
40
|
+ enabled: true
|
|
|
41
|
+ fromAddress: "nextcloud <cloud@kaisers.info>"
|
|
|
42
|
+ domain: newcloud.kaisers.info
|
|
|
43
|
+ smtp:
|
|
|
44
|
+ host: "mail.your-server.de"
|
|
|
45
|
+ secure: ssl
|
|
|
46
|
+ port: 587
|
|
|
47
|
+ authtype: LOGIN
|
|
|
48
|
+ name: "cloud@kaisers.info"
|
|
|
49
|
+ password: "v4w4e8dpg349Vd"
|
|
|
50
|
+
|
|
|
51
|
+ internalDatabase:
|
|
|
52
|
+ enabled: false
|
|
|
53
|
+
|
|
|
54
|
+ ##
|
|
|
55
|
+ ## External database configuration
|
|
|
56
|
+ ##
|
|
|
57
|
+ externalDatabase:
|
|
|
58
|
+ enabled: true
|
|
|
59
|
+
|
|
|
60
|
+ ## Supported database engines: mysql or postgresql
|
|
|
61
|
+ type: mysql
|
|
|
62
|
+
|
|
|
63
|
+ ## Database host
|
|
|
64
|
+ host: mariadb
|
|
|
65
|
+
|
|
|
66
|
+ ## Database user
|
|
|
67
|
+ user: nextcloud
|
|
|
68
|
+
|
|
|
69
|
+ ## Database password
|
|
|
70
|
+ password: nextcloud
|
|
|
71
|
+
|
|
|
72
|
+ ## Database name
|
|
|
73
|
+ database: nextcloud
|
|
|
74
|
+
|
|
|
75
|
+ ## Use a existing secret
|
|
|
76
|
+ existingSecret:
|
|
|
77
|
+ enabled: false
|
|
|
78
|
+ # secretName: nameofsecret
|
|
|
79
|
+ # usernameKey: username
|
|
|
80
|
+ # passwordKey: password
|
|
|
81
|
+
|
|
|
82
|
+ ##
|
|
|
83
|
+ ## MariaDB chart configuration
|
|
|
84
|
+ ##
|
|
|
85
|
+ mariadb:
|
|
|
86
|
+ ## Whether to deploy a mariadb server to satisfy the applications database requirements. To use an external database set this to false and configure the externalDatabase parameters
|
|
|
87
|
+ enabled: true
|
|
|
88
|
+
|
|
|
89
|
+ auth:
|
|
|
90
|
+ database: nextcloud
|
|
|
91
|
+ username: nextcloud
|
|
|
92
|
+ password: changeme
|