@@ -10,22 +10,28 @@ This repository is created to **welcome contributions from the community**. It d
10
10
11
11
## 📦 Installing the Helm Charts
12
12
13
- Currently only deployment from the file system is supported:
13
+ (please add)
14
+
15
+ ## 📦 Installing the DEV Helm Charts
16
+
17
+ Spin up a temporary local instance of OpenCloud using a single Docker image.
18
+
19
+ This version deploys opencloud as a single Docker image as described here:
20
+ https://docs.opencloud.eu/docs/admin/getting-started/docker/docker
21
+
22
+ Deployment from the file system:
14
23
15
24
```
16
- $ helm install opencloud -n opencloud --create-namespace ./charts/opencloud --set=adminPassword="<MY-SECURE-PASSWORD>" --set=url="<PUBLIC-URL>"
25
+ $ helm install opencloud -n opencloud --create-namespace ./charts/opencloud-dev --set=adminPassword="<MY-SECURE-PASSWORD>" --set=url="<PUBLIC-URL>"
17
26
```
18
27
19
- It is important the the public-url is reachable, and forwarded to the backend-service opencloud-service:443,
28
+ It is important that the public-url is reachable, and forwarded to the backend-service opencloud-service:443,
20
29
otherwise login will not be possible or the message "missing or invalid config" is shown.
21
30
22
- An example ingress for nginx with cert-manager annotations is in ./inwork/opencloud-ingress.yaml.
23
-
24
-
25
31
For testing with the default settings port-forwarding from localhost can be used:
26
32
27
33
```
28
- $ helm install opencloud -n opencloud --create-namespace ./charts/opencloud
34
+ $ helm install opencloud -n opencloud --create-namespace ./charts/opencloud-dev
29
35
30
36
Release "opencloud" does not exist. Installing it now.
31
37
NAME: opencloud
@@ -58,7 +64,7 @@ Now you can login with the default admin / admin
58
64
If you want to change the public URL you can upgrade the deployment with the following command:
59
65
60
66
```
61
- $ helm upgrade opencloud -n opencloud ./charts/opencloud --set=url="<NEW-PUBLIC-URL>"
67
+ $ helm upgrade opencloud -n opencloud ./charts/opencloud-dev --set=url="<NEW-PUBLIC-URL>"
62
68
63
69
Release "opencloud" has been upgraded. Happy Helming!
64
70
NAME: opencloud
@@ -73,18 +79,15 @@ The opencloud deployment will be restarted and is availble after a few seconds c
73
79
74
80
If you want to uninstall opencloud this can be done with
75
81
76
- ATTENTION: all you data will be lost, PVCs are not kept at the moment.
77
-
78
82
```
79
83
$ helm uninstall -n opencloud opencloud
80
84
81
85
release "opencloud" uninstalled
82
86
```
83
87
88
+ The data PVC is configured to be kept, so it will survive uninstall and install of opencloud-dev
84
89
85
90
86
- (please add)
87
-
88
91
## 💡 Contributing
89
92
90
93
We encourage contributions from the community! If you'd like to contribute:
0 commit comments