You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> 1. Log in to the [Red Hat Customer Portal](https://access.redhat.com/downloads) (or sign up for a free [Red Hat Developer Account](https://developers.redhat.com))
29
+
> 2. Navigate to **Red Hat Enterprise Linux 9** and download `rhel-9.6-x86_64-dvd.iso`
30
+
> 3. Host the ISO on an internal HTTP/HTTPS server reachable by iDRAC
Terraform uses the **Dell Redfish provider** to configure a **one-time boot from Virtual Media (CD)** and **force a reboot**.
46
+
47
+
### Terraform Installation
48
+
49
+
Install Terraform on your client machine if not already installed: https://developer.hashicorp.com/terraform/install
50
+
51
+
```bash
52
+
terraform version
53
+
```
54
+
55
+
### Terraform Variables
56
+
57
+
Provide the following in [iac/terraform.tfvars](../../ubuntu-22.04/iac/terraform.tfvars). For all available variables and their defaults, see [iac/variables.tf](../../ubuntu-22.04/iac/variables.tf).
58
+
59
+
```bash
60
+
idrac_endpoint = "https://100.67.x.x"
61
+
idrac_user = "root"
62
+
idrac_password = "calvin"
63
+
idrac_ssl_insecure = true
64
+
```
65
+
66
+
### Apply Terraform
67
+
```bash
68
+
terraform init
69
+
terraform apply
70
+
```
71
+
72
+
After `terraform apply`, the machine will reboot and the RHEL installer starts automatically from the mounted ISO. Follow the on-screen prompts to complete the OS installation.
73
+
74
+
---
75
+
76
+
## 3. System Requirements
14
77
15
78
| Requirement | Description |
16
79
|--------------|-------------|
@@ -22,7 +85,7 @@ The script:
22
85
23
86
---
24
87
25
-
## 2. Enterprise Inference Deployment
88
+
## 4. Enterprise Inference Deployment
26
89
27
90
Once OS is installed, Download the deploy-enterprise-inference.sh script to your machine using either wget or curl.
0 commit comments