Skip to content

Commit e149b76

Browse files
Release v1.4.3 (#79)
* Add MTU=9000 fix for VLAN-backed bare metal nodes (Issue #78) - Add butane configs for master and worker nodes to configure MTU=9000 - Update Makefile to generate MachineConfig from butane files - Include new manifest in dynamic_custom_manifest for auto-deployment - Fixes OVN-Kubernetes failures on BM.Standard.E5/E6 shapes with VLAN networking * v1.4.3 * append MachineConfigs properly
1 parent 2ef80e8 commit e149b76

File tree

13 files changed

+327
-13
lines changed

13 files changed

+327
-13
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL = bash
22

3-
PKG_VERSION ?= v1.4.2
3+
PKG_VERSION ?= v1.4.3
44
OCI_DRIVER_VERSION ?= v1.32.0
55

66
PRE_COMMIT := $(shell command -v pre-commit 2> /dev/null)
@@ -66,6 +66,13 @@ ifdef PODMAN
6666
@echo '---' >> custom_manifests/manifests/05-oci-eval-user-data.yml
6767
@podman run -i --rm quay.io/coreos/butane:release --pretty --strict < custom_manifests/butane/oci-eval-user-data-worker.bu >> custom_manifests/manifests/05-oci-eval-user-data.yml
6868
@echo '---' >> custom_manifests/manifests/05-oci-eval-user-data.yml
69+
70+
@podman run -i --rm quay.io/coreos/butane:release --pretty --strict < custom_manifests/butane/vlan-bm-mtu-configure-master.bu > custom_manifests/manifests/07-configure-bm-vlan-mtu.yml
71+
@echo '---' >> custom_manifests/manifests/07-configure-bm-vlan-mtu.yml
72+
@podman run -i --rm quay.io/coreos/butane:release --pretty --strict < custom_manifests/butane/vlan-bm-mtu-configure-worker.bu >> custom_manifests/manifests/07-configure-bm-vlan-mtu.yml
73+
@echo '---' >> custom_manifests/manifests/07-configure-bm-vlan-mtu.yml
74+
75+
6976
else
7077
$(warning podman not installed. Skipping...)
7178
endif
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
variant: openshift
2+
version: 4.16.0
3+
metadata:
4+
name: 00-master-bm-vlan-mtu-9000
5+
labels:
6+
machineconfiguration.openshift.io/role: master
7+
storage:
8+
files:
9+
- mode: 0755
10+
path: "/usr/local/sbin/bm-mtu-configure.sh"
11+
contents:
12+
inline: |
13+
#!/bin/bash
14+
# Configure MTU=9000 on VLAN-backed bare metal interfaces
15+
# This script runs at boot to ensure OVN-Kubernetes has sufficient MTU
16+
# for its Geneve overlay (8900+ 58 bytes encapsulation = 8958 minimum)
17+
#
18+
# Problem: Bare metal shapes with VLAN-backed networking (like BM.Standard.E5.192,
19+
# BM.Standard.E6.256) default to MTU 1500 on RHCOS, causing OVN to fail.
20+
#
21+
# Solution: Dynamically detect VLAN interfaces and set MTU=9000 on parent+VLAN.
22+
# Uses ip commands directly (no NetworkManager dependency).
23+
# Includes guards to skip VM workers and already-configured nodes.
24+
25+
set -euo pipefail
26+
27+
# Guard 1: No VLAN interfaces => no-op (virtual workers)
28+
vlans=$(ip -o link show type vlan | awk '{print $2}' | sed 's/:$//' | sed 's/@.*//' || true)
29+
if [ -z "$vlans" ]; then
30+
echo "[INFO] No VLAN interfaces found, exiting (no-op for VM workers)"
31+
exit 0
32+
fi
33+
34+
echo "[INFO] Found VLAN interfaces: $vlans"
35+
36+
# Process each VLAN interface
37+
for vlan in $vlans; do
38+
# Extract parent interface name
39+
# VLAN interfaces are named: parent.vlanid or parent.vlanid@parent
40+
# Strip everything from first dot onwards to get parent
41+
parent=$(echo "$vlan" | sed 's/\..*//')
42+
43+
if [ -z "$parent" ] || [ "$parent" = "$vlan" ]; then
44+
echo "[WARN] Could not determine parent for $vlan, skipping"
45+
continue
46+
fi
47+
48+
# Get current MTU from actual devices (not NetworkManager)
49+
parent_mtu=$(ip link show "$parent" 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
50+
vlan_mtu=$(ip link show "$vlan" 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
51+
52+
echo "[INFO] $parent: MTU=$parent_mtu, $vlan: MTU=$vlan_mtu"
53+
54+
# Guard 2: Already jumbo => no-op (idempotent)
55+
if [ "$parent_mtu" -ge 9000 ] && [ "$vlan_mtu" -ge 9000 ]; then
56+
echo "[INFO] $parent and $vlan already have MTU >= 9000, no changes needed"
57+
continue
58+
fi
59+
60+
echo "[ACTION] Setting MTU=9000 on $parent and $vlan"
61+
62+
# Set MTU on parent device (if needed)
63+
if [ "$parent_mtu" -lt 9000 ]; then
64+
ip link set dev "$parent" mtu 9000
65+
echo "[SUCCESS] Set MTU=9000 on $parent"
66+
fi
67+
68+
# Set MTU on VLAN device (if needed)
69+
if [ "$vlan_mtu" -lt 9000 ]; then
70+
ip link set dev "$vlan" mtu 9000
71+
echo "[SUCCESS] Set MTU=9000 on $vlan"
72+
fi
73+
74+
echo "[SUCCESS] MTU configuration complete for $parent and $vlan"
75+
done
76+
77+
# Also set br-ex MTU if it exists (OVS bridge created by ovs-configuration.service)
78+
# This handles the case where the script runs after OVS has started
79+
if ip link show br-ex &>/dev/null; then
80+
br_ex_mtu=$(ip link show br-ex 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
81+
if [ "$br_ex_mtu" -lt 9000 ]; then
82+
echo "[ACTION] Setting MTU=9000 on br-ex"
83+
if command -v ovs-vsctl &>/dev/null; then
84+
ovs-vsctl set Interface br-ex mtu_request=9000 && echo "[SUCCESS] Set MTU=9000 on br-ex"
85+
fi
86+
else
87+
echo "[INFO] br-ex already has MTU >= 9000"
88+
fi
89+
fi
90+
91+
echo "[INFO] bm-mtu-configure.sh completed successfully"
92+
exit 0
93+
systemd:
94+
units:
95+
- name: bm-mtu-configure.service
96+
enabled: true
97+
contents: |
98+
[Unit]
99+
Description=Configure MTU=9000 on VLAN-backed bare metal interfaces
100+
Documentation=https://github.com/oracle-quickstart/oci-openshift/issues/78
101+
After=NetworkManager.service oci-eval-user-data.service
102+
Before=ovs-configuration.service kubelet.service
103+
ConditionPathExists=/usr/local/sbin/bm-mtu-configure.sh
104+
105+
[Service]
106+
Type=oneshot
107+
ExecStart=/usr/local/sbin/bm-mtu-configure.sh
108+
RemainAfterExit=yes
109+
StandardOutput=journal+console
110+
StandardError=journal+console
111+
112+
[Install]
113+
WantedBy=multi-user.target
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
variant: openshift
2+
version: 4.16.0
3+
metadata:
4+
name: 00-worker-bm-vlan-mtu-9000
5+
labels:
6+
machineconfiguration.openshift.io/role: worker
7+
storage:
8+
files:
9+
- mode: 0755
10+
path: "/usr/local/sbin/bm-mtu-configure.sh"
11+
contents:
12+
inline: |
13+
#!/bin/bash
14+
# Configure MTU=9000 on VLAN-backed bare metal interfaces
15+
# This script runs at boot to ensure OVN-Kubernetes has sufficient MTU
16+
# for its Geneve overlay (8900+ 58 bytes encapsulation = 8958 minimum)
17+
#
18+
# Problem: Bare metal shapes with VLAN-backed networking (like BM.Standard.E5.192,
19+
# BM.Standard.E6.256) default to MTU 1500 on RHCOS, causing OVN to fail.
20+
#
21+
# Solution: Dynamically detect VLAN interfaces and set MTU=9000 on parent+VLAN.
22+
# Uses ip commands directly (no NetworkManager dependency).
23+
# Includes guards to skip VM workers and already-configured nodes.
24+
25+
set -euo pipefail
26+
27+
# Guard 1: No VLAN interfaces => no-op (virtual workers)
28+
vlans=$(ip -o link show type vlan | awk '{print $2}' | sed 's/:$//' | sed 's/@.*//' || true)
29+
if [ -z "$vlans" ]; then
30+
echo "[INFO] No VLAN interfaces found, exiting (no-op for VM workers)"
31+
exit 0
32+
fi
33+
34+
echo "[INFO] Found VLAN interfaces: $vlans"
35+
36+
# Process each VLAN interface
37+
for vlan in $vlans; do
38+
# Extract parent interface name
39+
# VLAN interfaces are named: parent.vlanid or parent.vlanid@parent
40+
# Strip everything from first dot onwards to get parent
41+
parent=$(echo "$vlan" | sed 's/\..*//')
42+
43+
if [ -z "$parent" ] || [ "$parent" = "$vlan" ]; then
44+
echo "[WARN] Could not determine parent for $vlan, skipping"
45+
continue
46+
fi
47+
48+
# Get current MTU from actual devices (not NetworkManager)
49+
parent_mtu=$(ip link show "$parent" 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
50+
vlan_mtu=$(ip link show "$vlan" 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
51+
52+
echo "[INFO] $parent: MTU=$parent_mtu, $vlan: MTU=$vlan_mtu"
53+
54+
# Guard 2: Already jumbo => no-op (idempotent)
55+
if [ "$parent_mtu" -ge 9000 ] && [ "$vlan_mtu" -ge 9000 ]; then
56+
echo "[INFO] $parent and $vlan already have MTU >= 9000, no changes needed"
57+
continue
58+
fi
59+
60+
echo "[ACTION] Setting MTU=9000 on $parent and $vlan"
61+
62+
# Set MTU on parent device (if needed)
63+
if [ "$parent_mtu" -lt 9000 ]; then
64+
ip link set dev "$parent" mtu 9000
65+
echo "[SUCCESS] Set MTU=9000 on $parent"
66+
fi
67+
68+
# Set MTU on VLAN device (if needed)
69+
if [ "$vlan_mtu" -lt 9000 ]; then
70+
ip link set dev "$vlan" mtu 9000
71+
echo "[SUCCESS] Set MTU=9000 on $vlan"
72+
fi
73+
74+
echo "[SUCCESS] MTU configuration complete for $parent and $vlan"
75+
done
76+
77+
# Also set br-ex MTU if it exists (OVS bridge created by ovs-configuration.service)
78+
# This handles the case where the script runs after OVS has started
79+
if ip link show br-ex &>/dev/null; then
80+
br_ex_mtu=$(ip link show br-ex 2>/dev/null | grep -oP 'mtu \K[0-9]+' || echo 0)
81+
if [ "$br_ex_mtu" -lt 9000 ]; then
82+
echo "[ACTION] Setting MTU=9000 on br-ex"
83+
if command -v ovs-vsctl &>/dev/null; then
84+
ovs-vsctl set Interface br-ex mtu_request=9000 && echo "[SUCCESS] Set MTU=9000 on br-ex"
85+
fi
86+
else
87+
echo "[INFO] br-ex already has MTU >= 9000"
88+
fi
89+
fi
90+
91+
echo "[INFO] bm-mtu-configure.sh completed successfully"
92+
exit 0
93+
systemd:
94+
units:
95+
- name: bm-mtu-configure.service
96+
enabled: true
97+
contents: |
98+
[Unit]
99+
Description=Configure MTU=9000 on VLAN-backed bare metal interfaces
100+
Documentation=https://github.com/oracle-quickstart/oci-openshift/issues/78
101+
After=NetworkManager.service oci-eval-user-data.service
102+
Before=ovs-configuration.service kubelet.service
103+
ConditionPathExists=/usr/local/sbin/bm-mtu-configure.sh
104+
105+
[Service]
106+
Type=oneshot
107+
ExecStart=/usr/local/sbin/bm-mtu-configure.sh
108+
RemainAfterExit=yes
109+
StandardOutput=journal+console
110+
StandardError=journal+console
111+
112+
[Install]
113+
WantedBy=multi-user.target
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Generated by Butane; do not edit
2+
apiVersion: machineconfiguration.openshift.io/v1
3+
kind: MachineConfig
4+
metadata:
5+
labels:
6+
machineconfiguration.openshift.io/role: master
7+
name: 00-master-bm-vlan-mtu-9000
8+
spec:
9+
config:
10+
ignition:
11+
version: 3.4.0
12+
storage:
13+
files:
14+
- contents:
15+
compression: gzip
16+
source: data:;base64,H4sIAAAAAAAC/5xW71PbuBb97r/ivISB5JWElBk6kE46pby2j+kjdBrgfaCZjmJdx1psyasfgeyy//uOZCd2CN1tN59iWzr33HPPvVL7XwczIQ9mzKRRG2dKJmLuNOHi6np0MhgMoCRu/nc67s1YfEccM6YJOVmWQUhLOmExmaiNq1QYmFiLwkI7acAsZkpZWAWSxkNe3ox7n9yMtCRLBikzMC5JRCxIWh8waiNRGsIafCRJC4JakM7YEp3jk8HgBY6OMVv6vSRjVhiXMSuUxAjHJ0fHyIUUucu7UTtq47NWs4zyId7VhE3KCjK4FzbdyEmSvVf6Tsg5Opm4I7y76E8sk5xp3n9/1H95crgftbH+bXx+1T88etUFp4S5LKR7cXWNl0eldF/+e3Y52UfMnPHwlzdjvyJhIusHmhOVOZ/DEP9ZSpaLmGXZEpwsxTZwbKgMJjkM2Y3aFEyTtC/80n6T47UhA1EgVnnOJDfgQlNssyU6UmFcZnzBJJuTBqeCJCcZL7sbIOcyzhwng7ljmhtP3dyJAjcX8NtJl5xYponxZS9euYdDKk6mH0Webo+cQiEK8mlHURsfPRpeDjFWWzmO3kCqnirQWQhtHctWkbrRImPSjHY6okBPIRPyDiZV97DLguA/4hHs/g57vxdaSIudwz/28AhDHHvmYLhzcNB4fNv/d3h+hNWOupFIcIveb2jthDAtTF/DpiQjgOJUoXV7Pv5wOX2OcqKc5PugB2GDhUr+3sm1Tt2WB3oQFoMoEVG0gfnBAzyFHaJiEpVujskYEIvTJwsjHyhkL2S15TW4ioA23j9YzWJbmaTeA8lyCiu2LKbLj3xYbep7RMGh9OaLt+VTAJlYLQrQgvTSpl6CRKscidDGgisLJe9X9pnTik2E6s9op1OqEci36hJ97YcadaMIqMtTbmph6mt323gxWiPUpVsX7/+nX8ZTnCmXeW/a0GE6F5JW2ngVw/b9YPFCyHkrAMRKWiGdl8sXzuf7kSxip3U1tsp0WRzcymkhvJAdH2WzzbrrlL/l1pVGrl1cJ3L45oDT4kC6LMMj5pq83z9jL7cOXz/dDnon0xfBuSG3gYf1xJ8HLRX5acintq/IDcPs2amz2C9Fq96vaLQqnUKfHw5xWg4I/OLymWq0uOCUF8qStN1VjVsN8BZ6c0KYdFPs7oav6xCNb9vl3iAdZlTYuJpUSNkiHHF4MwoY+5AKccrknAwkESf+nepXAU7Prs4vx1NMyIamb47krbCVHJNydNdTuzILOiKpgn5Phsxup7ouNAWghoF8Vf3ypiKT67Oz95PJdMXiKdtWw98NomE+/BXNRj1+jGRpyJ+jWIr4pATr5Z7q6ugpLwSxyouMLJVdvV0OriT5sXqaGRWozXSPHgKQSCCsn9TGGnQubyaYacHnhFgTs/4CtIRamN5GwL4h7SXqri5CKZM8I+N1QMwM4T4lTeFx446UWNLwQcJlyDJtifujaKOJS3K7dQuv9Z3pb/TwXN+XW/7BIKmqugb+Tll/oAsChbKJRLK6hqC3COotTGyzZ1Pyv3qFr835+tQqs8qt+6bpV0fGlsF2d//WQQ0yifAWygxtz4sSv54RpjkiKv9tHd6zvJdbV999+iZd+4/DuNgf3InLsmUrqi4AfwYAAP//4DC51nQLAAA=
17+
mode: 493
18+
path: /usr/local/sbin/bm-mtu-configure.sh
19+
systemd:
20+
units:
21+
- contents: |
22+
[Unit]
23+
Description=Configure MTU=9000 on VLAN-backed bare metal interfaces
24+
Documentation=https://github.com/oracle-quickstart/oci-openshift/issues/78
25+
After=NetworkManager.service oci-eval-user-data.service
26+
Before=ovs-configuration.service kubelet.service
27+
ConditionPathExists=/usr/local/sbin/bm-mtu-configure.sh
28+
29+
[Service]
30+
Type=oneshot
31+
ExecStart=/usr/local/sbin/bm-mtu-configure.sh
32+
RemainAfterExit=yes
33+
StandardOutput=journal+console
34+
StandardError=journal+console
35+
36+
[Install]
37+
WantedBy=multi-user.target
38+
enabled: true
39+
name: bm-mtu-configure.service
40+
---
41+
# Generated by Butane; do not edit
42+
apiVersion: machineconfiguration.openshift.io/v1
43+
kind: MachineConfig
44+
metadata:
45+
labels:
46+
machineconfiguration.openshift.io/role: worker
47+
name: 00-worker-bm-vlan-mtu-9000
48+
spec:
49+
config:
50+
ignition:
51+
version: 3.4.0
52+
storage:
53+
files:
54+
- contents:
55+
compression: gzip
56+
source: data:;base64,H4sIAAAAAAAC/5xW71PbuBb97r/ivISB5JWElBk6kE46pby2j+kjdBrgfaCZjmJdx1psyasfgeyy//uOZCd2CN1tN59iWzr33HPPvVL7XwczIQ9mzKRRG2dKJmLuNOHi6np0MhgMoCRu/nc67s1YfEccM6YJOVmWQUhLOmExmaiNq1QYmFiLwkI7acAsZkpZWAWSxkNe3ox7n9yMtCRLBikzMC5JRCxIWh8waiNRGsIafCRJC4JakM7YEp3jk8HgBY6OMVv6vSRjVhiXMSuUxAjHJ0fHyIUUucu7UTtq47NWs4zyId7VhE3KCjK4FzbdyEmSvVf6Tsg5Opm4I7y76E8sk5xp3n9/1H95crgftbH+bXx+1T88etUFp4S5LKR7cXWNl0eldF/+e3Y52UfMnPHwlzdjvyJhIusHmhOVOZ/DEP9ZSpaLmGXZEpwsxTZwbKgMJjkM2Y3aFEyTtC/80n6T47UhA1EgVnnOJDfgQlNssyU6UmFcZnzBJJuTBqeCJCcZL7sbIOcyzhwng7ljmhtP3dyJAjcX8NtJl5xYponxZS9euYdDKk6mH0Webo+cQiEK8mlHURsfPRpeDjFWWzmO3kCqnirQWQhtHctWkbrRImPSjHY6okBPIRPyDiZV97DLguA/4hHs/g57vxdaSIudwz/28AhDHHvmYLhzcNB4fNv/d3h+hNWOupFIcIveb2jthDAtTF/DpiQjgOJUoXV7Pv5wOX2OcqKc5PugB2GDhUr+3sm1Tt2WB3oQFoMoEVG0gfnBAzyFHaJiEpVujskYEIvTJwsjHyhkL2S15TW4ioA23j9YzWJbmaTeA8lyCiu2LKbLj3xYbep7RMGh9OaLt+VTAJlYLQrQgvTSpl6CRKscidDGgisLJe9X9pnTik2E6s9op1OqEci36hJ97YcadaMIqMtTbmph6mt323gxWiPUpVsX7/+nX8ZTnCmXeW/a0GE6F5JW2ngVw/b9YPFCyHkrAMRKWiGdl8sXzuf7kSxip3U1tsp0WRzcymkhvJAdH2WzzbrrlL/l1pVGrl1cJ3L45oDT4kC6LMMj5pq83z9jL7cOXz/dDnon0xfBuSG3gYf1xJ8HLRX5acintq/IDcPs2amz2C9Fq96vaLQqnUKfHw5xWg4I/OLymWq0uOCUF8qStN1VjVsN8BZ6c0KYdFPs7oav6xCNb9vl3iAdZlTYuJpUSNkiHHF4MwoY+5AKccrknAwkESf+nepXAU7Prs4vx1NMyIamb47krbCVHJNydNdTuzILOiKpgn5Phsxup7ouNAWghoF8Vf3ypiKT67Oz95PJdMXiKdtWw98NomE+/BXNRj1+jGRpyJ+jWIr4pATr5Z7q6ugpLwSxyouMLJVdvV0OriT5sXqaGRWozXSPHgKQSCCsn9TGGnQubyaYacHnhFgTs/4CtIRamN5GwL4h7SXqri5CKZM8I+N1QMwM4T4lTeFx446UWNLwQcJlyDJtifujaKOJS3K7dQuv9Z3pb/TwXN+XW/7BIKmqugb+Tll/oAsChbKJRLK6hqC3COotTGyzZ1Pyv3qFr835+tQqs8qt+6bpV0fGlsF2d//WQQ0yifAWygxtz4sSv54RpjkiKv9tHd6zvJdbV999+iZd+4/DuNgf3InLsmUrqi4AfwYAAP//4DC51nQLAAA=
57+
mode: 493
58+
path: /usr/local/sbin/bm-mtu-configure.sh
59+
systemd:
60+
units:
61+
- contents: |
62+
[Unit]
63+
Description=Configure MTU=9000 on VLAN-backed bare metal interfaces
64+
Documentation=https://github.com/oracle-quickstart/oci-openshift/issues/78
65+
After=NetworkManager.service oci-eval-user-data.service
66+
Before=ovs-configuration.service kubelet.service
67+
ConditionPathExists=/usr/local/sbin/bm-mtu-configure.sh
68+
69+
[Service]
70+
Type=oneshot
71+
ExecStart=/usr/local/sbin/bm-mtu-configure.sh
72+
RemainAfterExit=yes
73+
StandardOutput=journal+console
74+
StandardError=journal+console
75+
76+
[Install]
77+
WantedBy=multi-user.target
78+
enabled: true
79+
name: bm-mtu-configure.service
80+
---

terraform-stacks/add-nodes/schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
title: Add Nodes to OpenShift Cluster on OCI - v1.4.2
1+
title: Add Nodes to OpenShift Cluster on OCI - v1.4.3
22
description: A Terraform Stack for creating resources required for adding nodes to OpenShift Cluster on OCI
3-
schemaVersion: 1.4.2
3+
schemaVersion: 1.4.3
44
version: "20250916"
55
locale: "en"
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
locals {
2-
stack_version = "v1.4.2"
2+
stack_version = "v1.4.3"
33
}

terraform-stacks/create-cluster/schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
title: OpenShift Cluster on OCI - v1.4.2
1+
title: OpenShift Cluster on OCI - v1.4.3
22
description: A Terraform Stack for creating resources required for installing OpenShift on OCI
3-
schemaVersion: 1.4.2
3+
schemaVersion: 1.4.3
44
version: "20250916"
55
locale: "en"
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
locals {
2-
stack_version = "v1.4.2"
2+
stack_version = "v1.4.3"
33
}

terraform-stacks/create-instance-role-tags/schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
title: OpenShift on OCI Instance Role Tags - v1.4.2
1+
title: OpenShift on OCI Instance Role Tags - v1.4.3
22
description: A Terraform Stack for creating OpenShift Instance Role Tags
3-
schemaVersion: 1.4.2
3+
schemaVersion: 1.4.3
44
version: "20250916"
55
locale: "en"
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
locals {
2-
stack_version = "v1.4.2"
2+
stack_version = "v1.4.3"
33
}

0 commit comments

Comments
 (0)