What’s the best way to build RHEL servers in a work environment?

0
3
Asked By MellowCedar42 On

How do organizations typically provision RHEL servers? I'm comparing approaches such as Kickstart, Red Hat Satellite, Ansible, Packer-built images, and infrastructure-as-code tools, and I'd like to understand what workflows work well in practice.

3 Answers

Answered By BlueHarbor19 On

Terraform and Ansible make a solid combination: use Terraform to deploy the machines and Ansible to configure them afterward. For larger RHEL environments, it’s worth researching Satellite and image-based provisioning too, rather than choosing a tool before understanding the requirements.

Answered By OrbitNoodle7 On

A common workflow is to use Packer to create a standardized image, including the Kickstart configuration, then use Ansible for initial bootstrapping and system configuration. Terraform can handle provisioning the resulting servers or other infrastructure.

Answered By QuietMaple5 On

Packer can package the base image and include the Kickstart file, while Ansible handles the repeatable configuration steps. The right setup depends on your environment, so take some time to compare the available options before committing to a design.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.