1

Я использую CoreOS в среде openstack и использую cloud-config.yml для начальной загрузки хоста.

#cloud-config
write_files:
  - path: /etc/systemd/resolved.conf
    permissions: 0644
    owner: root
    content: |
      #  This file is part of systemd.
      #
      #  systemd is free software; you can redistribute it and/or modify it
      #  under the terms of the GNU Lesser General Public License as published by
      #  the Free Software Foundation; either version 2.1 of the License, or
      #  (at your option) any later version.
      #
      # Entries in this file show the compile time defaults.
      # You can change settings by editing this file.
      # Defaults can be restored by simply deleting this file.
      #
      # See resolved.conf(5) for details

      [Resolve]
      DNS=10.8.20.40
      # FallbackDNS=
      # LLMNR=yes

но это не отражает DNS-сервер при первой загрузке. Если я перезагружаю хост CoreOS, он работает. Как я могу получить изменения DNS при первой загрузке? Могу ли я выполнить команду перезагрузки systemctl ?

2 ответа2

0

CoreOS не реализует все ловушки cloud-init. Однако имеет то, что называется units

Для настройки DNS используйте сетевой блок, как описано здесь: https://coreos.com/os/docs/latest/network-config-with-networkd.html#cloud-config

0

Лучшее решение, которое я нашел, - это создать собственный файл /etc/resolv.conf через раздел write_files как показано в этом примере cloud-config

#cloud-config
write_files:
  - path: "/etc/resolv.conf"
    permissions: "0644"
    owner: "root"
    content: |
      nameserver 8.8.8.8

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .