|
1 |
| -Thank you for installing {{ .Chart.Name }}. |
2 |
| - |
3 |
| -Your release is named {{ .Release.Name }}. |
4 |
| - |
5 |
| -To learn more about the release, try: |
6 |
| - |
7 |
| - $ helm status {{ .Release.Name }} |
8 |
| - $ helm get all {{ .Release.Name }} |
9 |
| - |
10 |
| -IMPORTANT: This is a development deployment. For production use, you MUST change the following default credentials: |
11 |
| - |
12 |
| -1. Keycloak Admin: adminUser: admin, adminPassword: admin |
13 |
| -2. OpenCloud Admin: adminPassword: admin |
14 |
| -3. PostgreSQL: user: keycloak, password: keycloak |
15 |
| -4. MinIO: rootUser: opencloud, rootPassword: opencloud-secret-key |
16 |
| -5. OnlyOffice Database: sql.dbUser: onlyoffice, sql.dbPass: onlyoffice |
17 |
| -6. OnlyOffice Secret Keys: secret.inbox/outbox/session.string: B8LjkNqGxn6gf8bkuBUiMwyuCFwFddnu |
18 |
| -7. RabbitMQ: url: amqp://guest:guest@localhost |
19 |
| - |
20 |
| -Using default credentials in production environments poses significant security risks. |
21 |
| - |
22 |
| -The following services have been deployed: |
23 |
| - |
24 |
| -1. OpenCloud (Main Application): |
25 |
| - - Service: {{ include "opencloud.opencloud.fullname" . }} |
26 |
| - - Port: 9200 |
27 |
| - - Storage Driver: decomposeds3 |
28 |
| - - System Storage Driver: decomposed |
29 |
| - - S3 Storage: {{ if .Values.opencloud.storage.s3.external.enabled }}{{ .Values.opencloud.storage.s3.external.endpoint }}{{ else if .Values.opencloud.storage.s3.internal.enabled }}MinIO ({{ include "opencloud.minio.fullname" . }}){{ else }}Not configured{{ end }} |
30 |
| - - S3 Bucket: {{ if .Values.opencloud.storage.s3.external.enabled }}{{ .Values.opencloud.storage.s3.external.bucket }}{{ else if .Values.opencloud.storage.s3.internal.enabled }}{{ .Values.opencloud.storage.s3.internal.bucketName }}{{ else }}Not configured{{ end }} |
31 |
| - |
32 |
| -{{- if .Values.keycloak.enabled }} |
33 |
| -2. Keycloak (Authentication): |
34 |
| - - Service: {{ include "opencloud.keycloak.fullname" . }} |
35 |
| - - Port: 8080 |
36 |
| - - Username: {{ .Values.keycloak.adminUser }} |
37 |
| - - Password: {{ .Values.keycloak.adminPassword }} |
38 |
| -{{- end }} |
39 |
| - |
40 |
| -{{- if .Values.opencloud.storage.s3.internal.enabled }} |
41 |
| -3. MinIO (Object Storage): |
42 |
| - - Service: {{ include "opencloud.minio.fullname" . }} |
43 |
| - - API Port: 9000 |
44 |
| - - Console Port: 9001 |
45 |
| - - Username: {{ .Values.opencloud.storage.s3.internal.rootUser }} |
46 |
| - - Password: {{ .Values.opencloud.storage.s3.internal.rootPassword }} |
47 |
| -{{- end }} |
48 |
| - |
49 |
| -{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
50 |
| -4. OnlyOffice Collaboration Service: |
51 |
| - - Service: {{ include "opencloud.fullname" . }}-collaboration |
52 |
| - - HTTP Port: 9300 |
53 |
| - - gRPC Port: 9301 |
54 |
| -{{- end }} |
55 |
| - |
56 |
| - |
57 |
| -{{- if .Values.httpRoute.enabled }} |
58 |
| -IMPORTANT: This chart includes HTTPRoute resources that route traffic to the OpenCloud, Keycloak, and MinIO services. |
59 |
| -All HTTPRoutes are configured to use the Gateway named "{{ .Values.httpRoute.gateway.name }}" in the |
60 |
| -{{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }} namespace. |
61 |
| - |
62 |
| -Make sure the Gateway exists and is properly configured to accept traffic for the following domains: |
63 |
| -- OpenCloud: {{ include "opencloud.domain" . }} (Service: {{ include "opencloud.opencloud.fullname" . }}, Port: 9200) |
64 |
| -{{- if .Values.keycloak.enabled }} |
65 |
| -- Keycloak: {{ include "opencloud.keycloak.domain" . }} (Service: {{ include "opencloud.keycloak.fullname" . }}, Port: 8080) |
66 |
| -{{- end }} |
67 |
| -{{- if .Values.opencloud.storage.s3.internal.enabled }} |
68 |
| -- MinIO Console: {{ include "opencloud.minio.domain" . }} (Service: {{ include "opencloud.minio.fullname" . }}, Port: 9001) |
69 |
| -{{- end }} |
70 |
| -{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
71 |
| -- OnlyOffice Collaboration: {{ .Values.global.domain.wopi }} (Service: {{ include "opencloud.fullname" . }}-collaboration, Port: 9300) |
72 |
| -{{- end }} |
73 |
| - |
74 |
| -{{- else }} |
75 |
| -IMPORTANT: The HTTPRoutes are disabled. You need to configure your own ingress controller |
76 |
| -to expose these services externally. |
77 |
| - |
78 |
| -Example domains for your ingress configuration: |
79 |
| -- OpenCloud: {{ include "opencloud.domain" . }} (Service: {{ include "opencloud.opencloud.fullname" . }}, Port: 9200) |
80 |
| -{{- if .Values.keycloak.enabled }} |
81 |
| -- Keycloak: {{ include "opencloud.keycloak.domain" . }} (Service: {{ include "opencloud.keycloak.fullname" . }}, Port: 8080) |
82 |
| -{{- end }} |
83 |
| -{{- if .Values.opencloud.storage.s3.internal.enabled }} |
84 |
| -- MinIO Console: {{ include "opencloud.minio.domain" . }} (Service: {{ include "opencloud.minio.fullname" . }}, Port: 9001) |
85 |
| -{{- end }} |
86 |
| -{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
87 |
| -- OnlyOffice Collaboration: {{ .Values.global.domain.wopi }} (Service: {{ include "opencloud.fullname" . }}-collaboration, Port: 9300) |
88 |
| -{{- end }} |
89 |
| -{{- end }} |
90 |
| - |
91 |
| -For more information, please refer to the OpenCloud documentation: |
92 |
| - https://docs.opencloud.eu/ |
| 1 | +Thank you for installing {{ .Chart.Name }}. |
| 2 | + |
| 3 | +Your release is named {{ .Release.Name }}. |
| 4 | + |
| 5 | +To learn more about the release, try: |
| 6 | + |
| 7 | + $ helm status {{ .Release.Name }} |
| 8 | + $ helm get all {{ .Release.Name }} |
| 9 | + |
| 10 | +IMPORTANT: This is a development deployment. For production use, you MUST change the following default credentials: |
| 11 | + |
| 12 | +1. Keycloak Admin: adminUser: admin, adminPassword: admin |
| 13 | +2. OpenCloud Admin: adminPassword: admin |
| 14 | +3. PostgreSQL: user: keycloak, password: keycloak |
| 15 | +4. MinIO: rootUser: opencloud, rootPassword: opencloud-secret-key |
| 16 | +5. OnlyOffice Database: sql.dbUser: onlyoffice, sql.dbPass: onlyoffice |
| 17 | +6. RabbitMQ: url: amqp://guest:guest@localhost |
| 18 | + |
| 19 | +Using default credentials in production environments poses significant security risks. |
| 20 | + |
| 21 | +The following services have been deployed: |
| 22 | + |
| 23 | +1. OpenCloud (Main Application): |
| 24 | + - Service: {{ include "opencloud.opencloud.fullname" . }} |
| 25 | + - Port: 9200 |
| 26 | + - Storage Driver: decomposeds3 |
| 27 | + - System Storage Driver: decomposed |
| 28 | + - S3 Storage: {{ if .Values.opencloud.storage.s3.external.enabled }}{{ .Values.opencloud.storage.s3.external.endpoint }}{{ else if .Values.opencloud.storage.s3.internal.enabled }}MinIO ({{ include "opencloud.minio.fullname" . }}){{ else }}Not configured{{ end }} |
| 29 | + - S3 Bucket: {{ if .Values.opencloud.storage.s3.external.enabled }}{{ .Values.opencloud.storage.s3.external.bucket }}{{ else if .Values.opencloud.storage.s3.internal.enabled }}{{ .Values.opencloud.storage.s3.internal.bucketName }}{{ else }}Not configured{{ end }} |
| 30 | + |
| 31 | +{{- if .Values.keycloak.internal.enabled }} |
| 32 | +2. Keycloak (Authentication): |
| 33 | + - Service: {{ include "opencloud.keycloak.fullname" . }} |
| 34 | + - Port: 8080 |
| 35 | + - Username: {{ .Values.keycloak.internal.adminUser }} |
| 36 | + - Password: {{ .Values.keycloak.internal.adminPassword }} |
| 37 | +{{- end }} |
| 38 | + |
| 39 | +{{- if .Values.opencloud.storage.s3.internal.enabled }} |
| 40 | +3. MinIO (Object Storage): |
| 41 | + - Service: {{ include "opencloud.minio.fullname" . }} |
| 42 | + - API Port: 9000 |
| 43 | + - Console Port: 9001 |
| 44 | + - Username: {{ .Values.opencloud.storage.s3.internal.rootUser }} |
| 45 | + - Password: {{ .Values.opencloud.storage.s3.internal.rootPassword }} |
| 46 | +{{- end }} |
| 47 | + |
| 48 | +{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
| 49 | +4. OnlyOffice Collaboration Service: |
| 50 | + - Service: {{ include "opencloud.fullname" . }}-collaboration |
| 51 | + - HTTP Port: 9300 |
| 52 | + - gRPC Port: 9301 |
| 53 | +{{- end }} |
| 54 | + |
| 55 | + |
| 56 | +{{- if .Values.httpRoute.enabled }} |
| 57 | +IMPORTANT: This chart includes HTTPRoute resources that route traffic to the OpenCloud, Keycloak, and MinIO services. |
| 58 | +All HTTPRoutes are configured to use the Gateway named "{{ .Values.httpRoute.gateway.name }}" in the |
| 59 | +{{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }} namespace. |
| 60 | + |
| 61 | +Make sure the Gateway exists and is properly configured to accept traffic for the following domains: |
| 62 | +- OpenCloud: {{ include "opencloud.domain" . }} (Service: {{ include "opencloud.opencloud.fullname" . }}, Port: 9200) |
| 63 | +{{- if .Values.keycloak.internal.enabled }} |
| 64 | +- Keycloak: {{ include "opencloud.keycloak.domain" . }} (Service: {{ include "opencloud.keycloak.fullname" . }}, Port: 8080) |
| 65 | +{{- end }} |
| 66 | +{{- if .Values.opencloud.storage.s3.internal.enabled }} |
| 67 | +- MinIO Console: {{ include "opencloud.minio.domain" . }} (Service: {{ include "opencloud.minio.fullname" . }}, Port: 9001) |
| 68 | +{{- end }} |
| 69 | +{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
| 70 | +- OnlyOffice Collaboration: {{ .Values.global.domain.wopi }} (Service: {{ include "opencloud.fullname" . }}-collaboration, Port: 9300) |
| 71 | +{{- end }} |
| 72 | + |
| 73 | +{{- else }} |
| 74 | +IMPORTANT: The HTTPRoutes are disabled. You need to configure your own ingress controller |
| 75 | +to expose these services externally. |
| 76 | + |
| 77 | +Example domains for your ingress configuration: |
| 78 | +- OpenCloud: {{ include "opencloud.domain" . }} (Service: {{ include "opencloud.opencloud.fullname" . }}, Port: 9200) |
| 79 | +{{- if .Values.keycloak.internal.enabled }} |
| 80 | +- Keycloak: {{ include "opencloud.keycloak.domain" . }} (Service: {{ include "opencloud.keycloak.fullname" . }}, Port: 8080) |
| 81 | +{{- end }} |
| 82 | +{{- if .Values.opencloud.storage.s3.internal.enabled }} |
| 83 | +- MinIO Console: {{ include "opencloud.minio.domain" . }} (Service: {{ include "opencloud.minio.fullname" . }}, Port: 9001) |
| 84 | +{{- end }} |
| 85 | +{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }} |
| 86 | +- OnlyOffice Collaboration: {{ .Values.global.domain.wopi }} (Service: {{ include "opencloud.fullname" . }}-collaboration, Port: 9300) |
| 87 | +{{- end }} |
| 88 | +{{- end }} |
| 89 | + |
| 90 | +For more information, please refer to the OpenCloud documentation: |
| 91 | + https://docs.opencloud.eu/ |
0 commit comments