Skip to content

Commit 7f6237c

Browse files
Merge pull request openshift#2354 from mtulio/SPLAT-2137-ccm-nlb-sg
SPLAT-2137: FG for Service Type LB NLB with Security Group
2 parents b29811a + 4c65cf1 commit 7f6237c

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1818
| AWSClusterHostedDNS| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
1919
| AWSDedicatedHosts| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
20+
| AWSServiceLBNetworkSecurityGroup| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
2021
| AutomatedEtcdBackup| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
2122
| AzureDedicatedHosts| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
2223
| AzureMultiDisk| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -814,4 +814,12 @@ var (
814814
enhancementPR("https://github.com/openshift/enhancements/pull/1793").
815815
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
816816
mustRegister()
817+
818+
FeatureGateAWSServiceLBNetworkSecurityGroup = newFeatureGate("AWSServiceLBNetworkSecurityGroup").
819+
reportProblemsToJiraComponent("Cloud Compute / Cloud Controller Manager").
820+
contactPerson("mtulio").
821+
productScope(ocpSpecific).
822+
enhancementPR("https://github.com/openshift/enhancements/pull/1802").
823+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
824+
mustRegister()
817825
)

payload-manifests/featuregates/featureGate-Hypershift-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
{
2020
"name": "AWSDedicatedHosts"
2121
},
22+
{
23+
"name": "AWSServiceLBNetworkSecurityGroup"
24+
},
2225
{
2326
"name": "AutomatedEtcdBackup"
2427
},

payload-manifests/featuregates/featureGate-Hypershift-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
{
5757
"name": "AWSEFSDriverVolumeMetrics"
5858
},
59+
{
60+
"name": "AWSServiceLBNetworkSecurityGroup"
61+
},
5962
{
6063
"name": "AdditionalRoutingCapabilities"
6164
},

payload-manifests/featuregates/featureGate-Hypershift-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171
{
7272
"name": "AWSEFSDriverVolumeMetrics"
7373
},
74+
{
75+
"name": "AWSServiceLBNetworkSecurityGroup"
76+
},
7477
{
7578
"name": "AdditionalRoutingCapabilities"
7679
},

payload-manifests/featuregates/featureGate-SelfManagedHA-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
{
2020
"name": "AWSDedicatedHosts"
2121
},
22+
{
23+
"name": "AWSServiceLBNetworkSecurityGroup"
24+
},
2225
{
2326
"name": "AutomatedEtcdBackup"
2427
},

payload-manifests/featuregates/featureGate-SelfManagedHA-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
{
4242
"name": "AWSEFSDriverVolumeMetrics"
4343
},
44+
{
45+
"name": "AWSServiceLBNetworkSecurityGroup"
46+
},
4447
{
4548
"name": "AdditionalRoutingCapabilities"
4649
},

payload-manifests/featuregates/featureGate-SelfManagedHA-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
{
5757
"name": "AWSEFSDriverVolumeMetrics"
5858
},
59+
{
60+
"name": "AWSServiceLBNetworkSecurityGroup"
61+
},
5962
{
6063
"name": "AdditionalRoutingCapabilities"
6164
},

0 commit comments

Comments
 (0)