By default, PM work orders are created with a REPORTDATE based on the PMWoGenCronTask run time.
This causes SLA targets (response, resolution, target start/finish) to be calculated from the wrong date.
Seasonal PMs often require SLAs to start from the seasonal start time defined in PM.TARGSTARTTIME.
By merging that time into the REPORTDATE, SLA calculations become accurate and fully aligned with the seasonal schedule—instead of the cron generation timestamp.
To ensure SLAs calculate correctly from the intended seasonal start time, I added an Object Launch Point automation script on WORKORDER with:
Condition: pmnum is not null
Events: Add, Save, Before Save
The script takes the time from PM.TARGSTARTTIME and applies it to the date in REPORTDATE, ensuring the work order uses the correct seasonal seed date before any SLA is applied.
Installing OpenShift on VMware with Assisted Installer (Fully Automated)
If you’re looking to quickly set up OpenShift in a data center environment using VMware, the Assisted Installer is one of the most convenient options. This guide walks you through the process of installing OpenShift 4.19 (or the latest version) with minimal manual steps — once configured, the installation is mostly automatic.
Prerequisites
VMware environment with enough resources (recommended: 16 vCPU, 32 GB RAM, NAT interface for internet access).
A Linux machine with SSH key generated.
Basic DNS or /etc/hosts configuration access.
Step 1: Access the Assisted Installer
Download the ISO from the Assisted Installer portal.
The ISO will be tied to your VM’s public key.
In the portal, select:
Create Cluster (button) → Data Center (tab) → Create Cluster (button)
Step 2: Define Cluster Settings
Cluster name: mycluster
Base domain: mycluster.com
OpenShift version: 4.19(or latest available)
CPU architecture: x86_64
External platform integration: None
Control plane nodes: 1 (Single-node OpenShift) (atleast 3 nodes for HA cluster production grade)
Hosts’ network configuration: DHCP (default)
Click Next.
Step 3: Operators Page
Leave defaults as-is. Click Next.
Step 4: Host Discovery
Select Provisioning Type → Full image file (Download a self-contained ISO).
Add your SSH public key:
On your Linux machine, run:
ssh-agent
cat ~/.ssh/id*.pub
Copy and paste the output into the Assisted Installer.
Skip Proxy and Certificates (set to No).
Click Generate Discovery ISO → Download the ISO.
Create a VM in VMware (16 vCPU, 32 GB RAM, NAT).
Boot the VM with the ISO.
Now, sit back and wait. The installation will run automatically and usually takes about 1 hour.
Step 5: Configure DNS or Hosts File
Before accessing the console, configure your DNS (recommended) or update /etc/hosts on your PC.
This guide explains how to deploy OpenShift on Bare Metal (UPI) in a VMware environment using a Service Node, Bootstrap Node, Control Plane, and Worker Nodes.
In VMware with Service Node,
Bootstrap, and Master/worker nodes.
Log in to Red Hat Console:
Goto - > Clusters -> Data Center
-> Other Datacenter Options -> (Bare Mtail /x86_64)
·SCSI / SATA controllers →
Devices show up as /dev/sdX.
·NVMe controllers →
Devices show up as /dev/nvmeXnY
lsblk
My VMWare Settings (Virtual
Network Editor)
To simulate a production-like isolated OpenShift environment, I used a host-only network as a private subnet accessible via a bastion (service) node. The bastion has an additional NAT interface (vmnet8) to share the host’s internet, acting as a gateway for the OpenShift nodes.