I want to have a central, cluster-wide bind9 provider. I am currently using the following setup:
apiVersion: bindy.firestoned.io/v1beta1
kind: ClusterBind9Provider
metadata:
name: public-dns
spec:
namespace: dns-system
However, I cant find a way to apply
bindy.firestoned.io/allow-zone-namespaces: '*'
to the managed bind9instance. I worked around it by setting replicas: 0 and creating a custom one with the annotation applied, but that's not the way it should do, should it?
What I would expect:
apiVersion: bindy.firestoned.io/v1beta1
kind: ClusterBind9Provider
metadata:
name: public-dns
spec:
namespace: dns-system
primary:
annotations:
bindy.firestoned.io/allow-zone-namespaces: '*'
I want to have a central, cluster-wide bind9 provider. I am currently using the following setup:
However, I cant find a way to apply
to the managed bind9instance. I worked around it by setting
replicas: 0and creating a custom one with the annotation applied, but that's not the way it should do, should it?What I would expect: