Skip to content

2.0.2 - Bad

Compare
Choose a tag to compare
@marcinbojko marcinbojko released this 26 Jul 18:00
· 3 commits to master since this release
c5ca63c

Codename: BAD - https://www.youtube.com/watch?v=dsUXAEzaC3Q

  • [BREAKING_CHANGE] for packer >= 1.9.0 hyperv-iso module was moved from core to plugins. Proper change was already set in config.pkr.hcl, but you have to remember to run packer init --upgrade config.pkr.hcl before running packer build command

    packer {
    required_plugins {
      windows-update = {
        version = "0.14.1"
        source = "github.com/rgl/windows-update"
    }
      hyperv = {
        version = ">= 1.1.0"
        source  = "github.com/hashicorp/hyperv"
      }
    }
    }
  • [Extra] extra scripts and playbooks optimizations

  • [Extra] ks.cgf files for all RHEL 9 clones - switching timezone to UTC during build

  • [Extra] ansible-lint fixes over playbooks

  • [Extra] resized partitions (/boot and /boot/EFI) to fit bigger kernel and initrd files as well as more kernels in Oracle Linux UEK. This will allow for UEK an standard kernels to coexist.

    part /boot/efi --fstype="vfat" --size=400
    
    part /boot --fstype="ext4" --size=2048
    
    part swap --fstype="swap" --size=8192
    
    part / --fstype="ext4" --grow --size=1
  • [RockyLinux] added RockyLinux 9.2 support

  • [RockyLinux] added RockyLinux 9.2 Docker support

  • [RockyLinux] added RockyLinux 9.2 Vagrant support

  • [OracleLinux] added OracleLinux 9.2 support

  • [OracleLinux] added OracleLinux 9.2 Docker support

  • [OracleLinux] added OracleLinux 9.2 Vagrant support

  • [AlmaLinux] added AlmaLinux 9.2 support

  • [AlmaLinux] added AlmaLinux 9.2 Docker support

  • [AlmaLinux] added AlmaLinux 9.2 Vagrant support