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

Add configurable controller reconcile interval #452

Merged
merged 1 commit into from
Jun 13, 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
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ spec:
- "--tenant-service-address=tenant-service.{{ .Release.Namespace }}.svc.cluster.local:50051"
- "--storage-service-address=storage-service.{{ .Release.Namespace }}.svc.cluster.local:50051"
- "--role-service-address=role-service.{{ .Release.Namespace }}.svc.cluster.local:50051"
- "--controller-reconcile-interval={{ .Values.authorization.controllerReconcileInterval }}"
env:
- name: NAMESPACE
value: {{ include "custom.namespace" . }}
Expand Down
3 changes: 3 additions & 0 deletions charts/csm-authorization/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ authorization:
opa: openpolicyagent/opa
opaKubeMgmt: openpolicyagent/kube-mgmt:0.11

# controllerReconcileInterval: interval for the authorization controllers to reconcile with Redis.
controllerReconcileInterval: 5m

# Base hostname for the ingress rules that expose the services
# the proxy-server ingress will use this hostname
# the role-service ingress will use role.hostname
Expand Down
Loading