You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command deploys Clowder on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. This will also install MongoDB, RabbitMQ, elasticsearch as well as some extractors.
@@ -36,61 +36,71 @@ The command deploys Clowder on the Kubernetes cluster in the default configurati
36
36
To uninstall/delete the `my-release` deployment:
37
37
38
38
```bash
39
-
$ helm delete my-release
39
+
helm uninstall my-release
40
40
```
41
41
42
42
The command removes all the Kubernetes components associated with the chart and deletes the release.
43
43
44
44
## Configuration
45
45
46
-
Needs to be written
47
-
48
46
The following table lists the configurable parameters of the Clowder chart and their default values.
| replicaCount | Number of instances to run of clowder. | 1
53
54
| memory | Memory for the clowder application in MB. | 4096
54
55
| commKey | Administrator key. This key will give administrator level access to Clowder and is not associated with any user. | ""
55
56
| secretKey | Secret key used for cookies. This should be set the same for all clowder instances in a replicated setup. Best is for kubernetes to generate a random key. | ""
56
-
| initialAdmins | List of initial admins in clowder, this is a list of email addresses and these will always be admins. | ""
57
+
| initialAdmins | List of initial admins in clowder, this is a list of email addresses and these will always be admins. | []
57
58
| registerThroughAdmins | Should the admin be required to approve all new users. Setting this to false will result in all new users immediately be given access to Clowder. | true
58
59
| idleTimeoutInMinutes | Number of minutes you stay logged into clowder without any interactions. | 30
60
+
| tempfolder | Folder used to save files by clowder, before being send to storage location. | /home/clowder/data/tmp
61
+
| helpmenu | List of additional menu entries to be added to the clowder help menu. | []
62
+
| userid | the id of the user that runs the clowder process, this is helpful if you want to write to a shared storage as a specific user. | 10001
63
+
| groupid | the id of the groups that runs the clowder process, this is helpful if you want to write to a shared storage as a specific group. | 0
64
+
| replicaCount | Number of instances to run of clowder. | 1
65
+
| monitor.replicaCount | number of instances to run of monitor. | 1
66
+
67
+
### Extra Clowder Options
68
+
69
+
These options can be used to set any other clowder variables, or plugins.
0 commit comments