Recent content by daks

  1. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    I have a solution which seems to work: change the boot_command first part from "<esc>", "<esc><wait>" to "<wait><esc><wait>". I'm currently testing that it still works for all clusters. It doesn't change the fact that I don't understand why I have a different behaviour between almost identical...
  2. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    Yes I tried and it doesn't change anything. The problem is, because of this unexpected boot menu, the key sequence supposed to configure debian-installer boot activates "Speech synthesis" instead of the automated install based on Preseed. The installation is then blocked, see image.
  3. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    I tried to capture a video of what happen. It's not perfect but you can see it here https://file.re/2022/02/01/capture-video-2022-02-01-153213/ (only available for 1 day)
  4. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    Yes, exactly, then after some seconds debian-installer is run (maybe after the "Esc" key by Packer). The strange thing is that it occurs on some clusters, but on others this menu do not appear. This is my main issue: the fact that all clusters do not have the same behaviour.
  5. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    My configuration in HCL format is like this source "proxmox-iso" "debian" { boot_command = ["<esc>", "<esc><wait>", "install ", "preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/${var.debian_preseed_file} ", "debian-installer=en_US ", "auto ", "locale=en_US "...
  6. D

    [SOLVED] template creation with Packer: boot options menu appears on some cluster and not other

    Hello, We are in the process of installing and configuring 4 clusters of 3 nodes and automating templates creation using Packer. We have a strange behaviour where for some clusters Packer template creation works fine and for others we are faced with a bug during the boot process. First, some...