Kidns serve as local dns server with ingress urls from kubernetes and proxy traffic to ingress pods(nginx).
- Need installed Rust
- Run
cargo build --release
- Extract binary from
target/release/kidns
to your path
dns:
server:
# by default will be '8.8.8.8' if not set
public: 8.8.8.8
port: 53
# if empty, dns disabled
host: 0.0.0.0
# can be set as 'k8s' to load kubernetes ingress url
# also can load urls from file('filename')
# or can be used both, separated by comma(',')
cache:
- k8s
# local_cache can include ipv4, ipv6 with or without port
- local_cache.conf
# if not set, k8s data will not be loaded
k8s:
# default(look to ~/.kube/config) or path to yaml file
# if not set or empty by default is set 'default'
# if set file in bin directory no need full path
- config: config
pod:
# namespace where is located nginx pods
namespace: edge-services
label: app.kubernetes.io/name=ingress-nginx
port:
http: 80
https: 443
# namespace where need to load ingress urls, ex. your app
ingress-namespace: app-namespace
# if not set, proxy will be disabled
proxy:
host: 0.0.0.0
port:
http: 80
https: 443
# if not set, local tls disabled
root-ca:
key: ca-root.key
cert: ca-root.crt
log-level: info
- If you want to use dns, add value of
dns.server.host
to your OS DNS configuration. - If you want to use default dns port
53
, need to run app with admin privilegies. - If you want to use proxy port
80
or443
, need to run app with admin privilegies.
- Edit
generate-sa-context.sh
file and replaceAPP_NAMESPACE, INGRESS_NAMESPACE, SERVICE_ACCOUNT, CLUSTER_NAME
with your. - Edit
service-account.yaml
file and replace with your config.
- Edit
docker-compose.yaml
file, volumes section:
volumes:
- "<path-to-config(kubernetes config yaml file)>:/kidns/config:ro"
- "<path-to-config.yaml>:/kidns/config.yaml:ro"
- Run
docker compose up