Điểm:0

cloud-init seems to be ignoring write-files script

lá cờ ng

H!

I am trying to configure VMs with cloud-init, using the terraform Libvirt provider. For some reason I don't understand, setting hostname works, but writing and running a script for additional configuration is completely ignored. Would appreciate if anyone can explain what I'm doing incorrectly. My yaml:

    #cloud-config
    local-hostname: ${hostname}
    instance-hostname: ${hostname}
    write_files:
      - content: |
          #/bin/bash
          hostnamectl set-hostname ${hostname}
          NET_INT=$(ip link | awk -F: '$0 !~ "lo|vir|wl|^[^0-9]"{print $2;getline}')
          nmcli con mod $NET_INT ipv4.dns "X.X.X.X"
          nmcli con mod $NET_INT ipv4.dns-search "dom.internal"
          ipa-client-install --hostname=${hostname} \
          --server=XXX.services.dom.internal \
          --mkhomedir --domain=services.dom.internal \
          --realm=SERVICES.DOM.INTERNAL --no-ntp --principal=someguy \
          --password=XXXXX --enable-dns-updates --unattended
          ipa-client-automount --unattended
        path: /tmp/setup.sh
        permissions: '0755'
        owner: root
     runcmd:
       -  /tmp/setup.sh

(hopefully) relevant .tf bits:

data "template_file" "custom_config" {
   template = file("${path.module}/meta_data.yaml")

   vars = {
      hostname = "${var.vm_name}.dom.internal"
   }
}

resource "libvirt_cloudinit_disk" "commoninit" {
   name = "commoninit.iso"
   meta_data =  data.template_file.custom_config.rendered

   pool = "pool"
}

resource "libvirt_domain" "centos8_vm" {

  name = "${var.vm_name}"
  cloudinit = libvirt_cloudinit_disk.commoninit.id
  qemu_agent = true
SinaOwolabi avatar
lá cờ ng
yaml là một nỗi đau. Ồ

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.