Skip to content

Commit 1b1e986

Browse files
Release v1.4.1 (#76)
* Pull request #80: OSO-503: [Alloy/DRCC] Restricted region CSI driver fix Merge in OSO/openshift-terraform-stack from davidfos/OSO-503 to master Squashed commit of the following: commit d4fc7c7d0402c693378d1b1d81713ccb88bcf61f Author: davidfos <[email protected]> Date: Sun Sep 7 23:09:13 2025 -0700 move manifest templates directly to manifest shared_module commit ef3bd76f30b5a7d65511695e1d7570909aca6808 Author: davidfos <[email protected]> Date: Fri Sep 5 15:06:29 2025 -0700 template csi, conditional region_metadata * [OSO-534] - make v1.4.1
1 parent 7b964e2 commit 1b1e986

File tree

19 files changed

+711
-1264
lines changed

19 files changed

+711
-1264
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@ target/
99
.DS_Store
1010
.secrets
1111
.dev
12+
1213
**/*.zip
1314
dist/
1415

1516
checksums/
1617
**/*.sha256
1718
**/*.SHA256SUMS
1819

20+
**/condensed-manifest.yml
21+
1922
### Terraform ###
2023
# Local .terraform directories
2124
**/.terraform/*

Makefile

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

3-
PKG_VERSION ?= v1.4.0
3+
PKG_VERSION ?= v1.4.1
44
OCI_DRIVER_VERSION ?= v1.32.0
55

66
PRE_COMMIT := $(shell command -v pre-commit 2> /dev/null)
@@ -70,6 +70,8 @@ else
7070
$(warning podman not installed. Skipping...)
7171
endif
7272

73+
74+
# generate individual file checksums and zipped stack checksums
7375
.PHONY: checksums
7476
checksums:
7577
$(info Writing checksums...)
@@ -111,8 +113,8 @@ clean:
111113
rm -rvf checksums
112114
find . -type f -name '*.SHA256SUMS' -print0 | xargs -0 rm -v
113115

114-
# make update-drivers OCI_DRIVER_VERSION=v1.30.0
115-
# Please be sure your KUBECONFIG is set to the cluster you want to modify
116+
# export KUBECONFIG=<path_to_kubeconfig>
117+
# make update-drivers OCI_DRIVER_VERSION=v1.32.0
116118
.PHONY: update-drivers
117119
update-drivers:
118120
ifdef OC

custom_manifests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ View usage during [installation](/README.md#documentation-and-installation-instr
1414
**02-machineconfig-ccm.yml** | MachineConfig that fetches the provider (OCI) id for kubelet from the OCI metadata of the instance. | Always ✅
1515
**02-machineconfig-csi.yml** | MachineConfig that enables the iscsid.service to run. | Always ✅
1616
**03-machineconfig-consistent-device-path.yml** | MachineConfig that ensures consistent device paths when attaching paravirtualized volumes to instances. | Always ✅
17-
**04-cluster-network.yml** | Cluster resource that configures the default Network's internalMasqueradeSubnet xto 169.254.64.0/18 to avoid collisions with iSCSI boot volumes. |Required when using Bare Metal instances with OpenShift versions >= 4.17
17+
**04-cluster-network.yml** | Cluster resource that configures the default Network's internalMasqueradeSubnet to 169.254.64.0/18 to avoid collisions with iSCSI boot volumes. |Required when using Bare Metal instances with OpenShift versions >= 4.17
1818
**05-oci-eval-user-data.yml** | MachineConfig that evaluates and runs [userdata scripts](/terraform-stacks/shared_modules/compute/userdata/) stored in the metadata of instances. | Required when using Bare Metal instances
1919

2020
Previously, the `oci_ccm_config` output from the OCI Resource Manager Stack (RMS) job was used to replace configuration values in `manifests/01-oci-ccm.yml` and `manifests/01-oci-csi.yml`, and then all required manifests were uploaded individually during cluster creation. This workflow is still valid, but the configuration values to be replaced are now located in [manifests/01-oci-driver-configs.yml](./manifests/01-oci-driver-configs.yml).

0 commit comments

Comments
 (0)