Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[designate] Use pod-local coordination by default for central #7370

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openstack/designate/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for Kubernetes to deploy Openstack Designate (DNSaaS)
name: designate
version: 0.3.14
version: 0.3.15
appVersion: "xena"
dependencies:
- condition: percona_cluster.enabled
Expand Down
4 changes: 4 additions & 0 deletions openstack/designate/templates/central-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ spec:
name: container-init
{{- include "utils.proxysql.volume_mount" . | indent 12 }}
{{- include "utils.trust_bundle.volume_mount" . | indent 12 }}
{{- if .Values.coordination.central.enabled }}
{{- include "utils.coordination.volume_mount" . | indent 12 }}
{{- end }}
{{- tuple . .Values.central_workers | include "utils.proxysql.container" | indent 8 }}
{{- include "jaeger_agent_sidecar" . | indent 8 }}
volumes:
Expand All @@ -103,6 +105,8 @@ spec:
configMap:
name: designate-bin
defaultMode: 0755
{{- if .Values.coordination.central.enabled }}
{{- include "utils.coordination.volumes" . | indent 8 }}
{{- end }}
{{- include "utils.proxysql.volumes" . | indent 8 }}
{{- include "utils.trust_bundle.volumes" . | indent 8 }}
3 changes: 3 additions & 0 deletions openstack/designate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,9 @@ osprofiler:
enabled: false

coordinationBackend: "file"
coordination:
central:
enabled: false

owner-info:
support-group: network-api
Expand Down