1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00

OCPBUGS-35366: Update upi references to api-internal

** Updated the UPI references in docs and scripts to use api-internal to the name to match those of the
capg and terraform resources.
This commit is contained in:
Brent Barbachem
2024-06-12 13:32:37 -04:00
parent 30e01b0f00
commit 905b5731ea
2 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ def GenerateConfig(context):
'type': "HTTPS"
}
}, {
'name': context.properties['infra_id'] + '-api-internal-backend-service',
'name': context.properties['infra_id'] + '-api-internal',
'type': 'compute.v1.regionBackendService',
'properties': {
'backends': backends,
@@ -40,7 +40,7 @@ def GenerateConfig(context):
'name': context.properties['infra_id'] + '-api-internal-forwarding-rule',
'type': 'compute.v1.forwardingRule',
'properties': {
'backendService': '$(ref.' + context.properties['infra_id'] + '-api-internal-backend-service.selfLink)',
'backendService': '$(ref.' + context.properties['infra_id'] + '-api-internal.selfLink)',
'IPAddress': '$(ref.' + context.properties['infra_id'] + '-cluster-ip.selfLink)',
'loadBalancingScheme': 'INTERNAL',
'ports': ['6443','22623'],