Hello, I am new to Confluence,
If I need collaborative editing to be enabled, should i enable it from values.yaml file or it could be handled from confluence UI?
and If I should enable it from values.yaml file can someone give me the configurations of this part because I follow documentation, but it doesn't work me.
thanks
Hi @Ahmed Attya
Can you set the Synchrony service type to ClusterIP, which is suitable for most Kubernetes deployments.
Additionally, it adds the SYNCHRONY_SERVICE_URL environment variable to Confluence, specifying the Synchrony service URL.
Furthermore, this configuration sets the replica count for both Confluence and Synchrony to 2, allowing for improved scalability and performance.
Config:
synchrony:
enabled: true
service:
type: ClusterIP
confluence:
additionalEnvironmentVariables:
- name: SYNCHRONY_SERVICE_URL
value: "http://{{ .Release.Name }}-synchrony:80"
replicaCount: 2
synchrony:
replicaCount: 2
After making these changes, apply them using the Helm upgrade command
helm upgrade <release-name> atlassian-data-center/confluence \
--values <path-to-values-yaml> \
--wait \
--namespace <namespace>
Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Humashankar VJ
I got this behavior:
Readiness probe failed: Get "http://10.52.191.233:8091/synchrony/heartbeat": dial tcp 10.52.191.233:8091: connect connection refused
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ahmed Attya
Can you check that the Synchrony service is running and accessible within your Kubernetes cluster ?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.