CoreOS / systemd ไม่เคารพการเปลี่ยนแปลงที่ได้รับการแก้ไข


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คำสั่งรีสตาร์ทที่ฉันสามารถออกได้หรือไม่?

คำตอบ:



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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.