KubeDNS Shepherd is a Kubernetes controller that manages the DNS configuration of workloads, ensuring an efficient and reliable way to configure DNS within your Kubernetes cluster. This project is essential for those looking to optimize DNS resolutions and configurations within their Kubernetes environments.
Deploy the KubeDNS Shepherd to the cluster:
helm repo add kubedns-shepherd https://eminaktas.github.io/kubedns-shepherd/
helm repo update
helm install kubedns-shepherd kubedns-shepherd/kubedns-shepherd --namespace kubedns-shepherd-system --create-namespace
NOTE: If you encounter RBAC errors, you may need to grant yourself cluster-admin privileges or be logged in as admin.
Create instances of your solution: You can apply any example from the config/sample:
NOTE: Ensure that the samples have default values to test them out.
Delete the instances (CRs) from the cluster:
kubectl delete -k config/samples/
Uninstall the KubeDNS Shepherd from the cluster:
helm uninstall kubedns-shepherd --namespace kubedns-shepherd-system
apiVersion: config.kubedns-shepherd.io/v1alpha1
kind: DNSClass
metadata:
name: example
spec:
disabledNamespaces:
- kube-system
allowedDNSPolicies:
- None
- ClusterFirst
- ClusterFirstWithHostNet
dnsPolicy: None
dnsConfig:
nameservers:
- 10.96.0.10
searches:
- "svc.cluster.local"
- "{{ .podNamespace }}.svc.cluster.local"
options:
- name: ndots
value: "2"
- name: edns0
disabledNamespaces
: Specifies the namespaces where the DNSClass rule should not be applied.allowedDNSPolicies
: Specifies the DNS policies allowed for the namespaces.dnsPolicy
: Specifies the DNS policy for Pods. Refer to the Kubernetes documentation for more details.dnsConfig
: Specifies the DNS configuration for Pods. Refer to the Kubernetes documentation for more details.
KubeDNS Shepherd supports dynamic parameters. Here are the supported keys, which should be used within {{ }}
:
.podNamespace
: Adds the configured pod's namespace..clusterDomain
: Adds the discovered cluster domain.
Nameservers can also be configured automatically by controller if they are not defined by users in the DNSClass
.
- Issue: DNS resolutions in some services were failing intermittently.
- Solution: Optimize the environment by using this controller to adjust
ndots
and/orsearches
options for pods or add a dot.
at the end of the FQDN.
- Issue: Kubernetes Pods experienced failures in DNS queries for the first attempts due to the
ndots
option set to 5 inresolv.conf
. - Solution: Optimize the environment by using this controller to adjust
ndots
andsearches
options inresolv.conf
.
Please read our Contributing Guidelines before contributing.
More information can be found in our Development Guide.
Please read our Code of Conduct before engaging with our community.
This project is licensed under the Apache-2.0 License.