1
0
mirror of https://github.com/rancher/os.git synced 2025-07-15 07:41:39 +00:00
os/docs/os/networking/dns/index.md
Sven Dowideit 5dd11c3ddc use page.baseurl to avoid embedding the RancherOS version in every link
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-08-17 07:12:45 +10:00

740 B

title redirect_from
Configuring DNS in RancherOS
os/v1.1/en/configuration/networking/#dns

DNS


If you wanted to configure the DNS through the cloud config file, you'll need to place DNS configurations within the rancher key.

#cloud-config

#Remember, any changes for rancher will be within the rancher key
rancher:
  network:
    dns:
      search:
        - mydomain.com
        - example.com

Using ros config, you can set the nameservers, and search, which directly map to the fields of the same name in /etc/resolv.conf.

$ sudo ros config set rancher.network.dns.search "['mydomain.com','example.com']"
$ sudo ros config get rancher.network.dns.search
- mydomain.com
- example.com