Skip to content

Commit 1b55c08

Browse files
author
Your Name
committed
Bump up Version
1 parent 8eb9e89 commit 1b55c08

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

charts/opencloud-full/deployments/timoni/configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ data:
8484
###############################################################################
8585
COLLABORA_URI: "https://collabora.opencloud.test"
8686
COLLABORA_ICON_URI: "https://collabora.opencloud.test/favicon.ico"
87-
COLLABORA_ENABLED: "false"
87+
COLLABORA_ENABLED: "true"
8888
COLLABORA_INSECURE: "true"
8989
COLLABORA_DISABLE_PROOF: "false"
9090
COLLABORA_INGRESS_ENABLED: "false"
@@ -97,7 +97,7 @@ data:
9797
ONLYOFFICE_URI: "https://onlyoffice.opencloud.test"
9898
ONLYOFFICE_DOMAIN: "onlyoffice.opencloud.test"
9999
ONLYOFFICE_ICON_URI: "https://onlyoffice.opencloud.test/web-apps/apps/documenteditor/main/resources/img/favicon.ico"
100-
ONLYOFFICE_ENABLED: "true"
100+
ONLYOFFICE_ENABLED: "false"
101101
ONLYOFFICE_INSECURE: "true"
102102
ONLYOFFICE_DISABLE_PROOF: "false"
103103
ONLYOFFICE_INGRESS_ENABLED: "false"

charts/opencloud-full/deployments/timoni/sa.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Service account opencloud namespace
12
# 1) ServiceAccount — Flux will impersonate this
23
apiVersion: v1
34
kind: ServiceAccount
@@ -30,3 +31,38 @@ roleRef:
3031
apiGroup: rbac.authorization.k8s.io
3132
kind: Role
3233
name: flux-full-access
34+
---
35+
# Service account openldap namespace
36+
# 1) ServiceAccount — Flux will impersonate this
37+
apiVersion: v1
38+
kind: ServiceAccount
39+
metadata:
40+
name: flux
41+
namespace: openldap # <- target namespace
42+
---
43+
# 2) Role — full power *inside* that namespace
44+
apiVersion: rbac.authorization.k8s.io/v1
45+
kind: Role
46+
metadata:
47+
name: flux-full-access
48+
namespace: openldap
49+
rules:
50+
- apiGroups: ["*"] # core & all groups
51+
resources: ["*"] # every namespaced resource
52+
verbs: ["*"] # get, list, create, delete, …
53+
---
54+
# 3) RoleBinding — ties the Role to the SA
55+
apiVersion: rbac.authorization.k8s.io/v1
56+
kind: RoleBinding
57+
metadata:
58+
name: flux-full-access-binding
59+
namespace: openldap
60+
subjects:
61+
- kind: ServiceAccount
62+
name: flux
63+
namespace: openldap
64+
roleRef:
65+
apiGroup: rbac.authorization.k8s.io
66+
kind: Role
67+
name: flux-full-access
68+

0 commit comments

Comments
 (0)