Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply workaround for FIPS installation (#1826) #1853

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ods_ci/tasks/Resources/Provisioning/Hive/AWS/aws-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ items:
name: aws-creds
installConfigSecretTemplateRef:
name: aws-sno-install-config
installerEnv:
- name: OPENSHIFT_INSTALL_SKIP_HOSTCRYPT_VALIDATION
value: 'true'
size: 0
skipMachinePools: true
- apiVersion: v1
Expand Down
3 changes: 3 additions & 0 deletions ods_ci/tasks/Resources/Provisioning/Hive/GCP/gcp-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ items:
name: gcp-creds
installConfigSecretTemplateRef:
name: gcp-sno-install-config
installerEnv:
- name: OPENSHIFT_INSTALL_SKIP_HOSTCRYPT_VALIDATION
value: 'true'
size: 0
skipMachinePools: true
- apiVersion: v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,6 @@ items:
name: ibmcloud-sno-install-config
manifestsSecretRef:
name: ${infrastructure_configurations}[hive_cluster_name]-manifests
installerEnv:
- name: OPENSHIFT_INSTALL_SKIP_HOSTCRYPT_VALIDATION
value: 'true'
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ items:
spec:
baseDomain: ${infrastructure_configurations}[base_domain]
imageSetRef:
name: ${infrastructure_configurations}[image_set] # see line 100
name: ${infrastructure_configurations}[image_set] # see line 102
inventory:
- name: ${infrastructure_configurations}[hive_cluster_name]-conf # see line 72
- name: ${infrastructure_configurations}[hive_cluster_name]-conf # see line 74
platform:
openstack:
cloud: ${infrastructure_configurations}[osp_cloud_name]
credentialsSecretRef:
name: ${infrastructure_configurations}[hive_cluster_name]-cred # see line 91
name: ${infrastructure_configurations}[hive_cluster_name]-cred # see line 93
installConfigSecretTemplateRef:
name: ${infrastructure_configurations}[hive_cluster_name]-sec # see line 30
name: ${infrastructure_configurations}[hive_cluster_name]-sec # see line 32
installerEnv:
- name: OPENSHIFT_INSTALL_SKIP_HOSTCRYPT_VALIDATION
value: 'true'
size: 1
maxSize: 1
runningCount: 1
Expand Down
Loading