Skip to content
Open
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 templates/dkron-worker-agent-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
data:
dkron.yml: |-
kubernetes: true
retry-join: ["provider=k8s label_selector=\"app=dkron-server\""]
retry-join: ["provider=k8s namespace={{.Values.namespace}} label_selector=\"app={{.Values.statefulSetName}}\""]
# Uncomment below to set a tag for a worker
tags:
worker: cron
2 changes: 1 addition & 1 deletion templates/role.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: dkron
name: dkron-server
namespace: {{.Values.namespace}}
labels:
app: dkron
Expand Down
2 changes: 1 addition & 1 deletion templates/rolebinding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ subjects:
name: dkron
namespace: {{.Values.namespace}}
roleRef:
kind: ClusterRole
kind: Role
name: dkron-server
apiGroup: rbac.authorization.k8s.io