Skip to content

Commit c368740

Browse files
Merge pull request openshift#2403 from bitoku/image-volume
OCPNODE-3121: Make FeatureGateImageVolume TechPreview
2 parents 0528f2f + affbfc1 commit c368740

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
| HighlyAvailableArbiter| | | <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> |
3838
| ImageModeStatusReporting| | | <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> |
3939
| ImageStreamImportMode| | | <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> |
40+
| ImageVolume| | | <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> |
4041
| IngressControllerDynamicConfigurationManager| | | <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> |
4142
| InsightsConfig| | | <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> |
4243
| InsightsConfigAPI| | | <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
@@ -827,4 +827,12 @@ var (
827827
enhancementPR("https://github.com/openshift/enhancements/pull/1802").
828828
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
829829
mustRegister()
830+
831+
FeatureGateImageVolume = newFeatureGate("ImageVolume").
832+
reportProblemsToJiraComponent("Node").
833+
contactPerson("haircommander").
834+
productScope(kubernetes).
835+
enhancementPR("https://github.com/openshift/enhancements/pull/1792").
836+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
837+
mustRegister()
830838
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@
9494
{
9595
"name": "ImageStreamImportMode"
9696
},
97+
{
98+
"name": "ImageVolume"
99+
},
97100
{
98101
"name": "IngressControllerDynamicConfigurationManager"
99102
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@
158158
{
159159
"name": "ImageStreamImportMode"
160160
},
161+
{
162+
"name": "ImageVolume"
163+
},
161164
{
162165
"name": "IngressControllerDynamicConfigurationManager"
163166
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@
164164
{
165165
"name": "ImageStreamImportMode"
166166
},
167+
{
168+
"name": "ImageVolume"
169+
},
167170
{
168171
"name": "IngressControllerDynamicConfigurationManager"
169172
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@
9797
{
9898
"name": "ImageStreamImportMode"
9999
},
100+
{
101+
"name": "ImageVolume"
102+
},
100103
{
101104
"name": "IngressControllerDynamicConfigurationManager"
102105
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@
143143
{
144144
"name": "ImageStreamImportMode"
145145
},
146+
{
147+
"name": "ImageVolume"
148+
},
146149
{
147150
"name": "IngressControllerDynamicConfigurationManager"
148151
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@
149149
{
150150
"name": "ImageStreamImportMode"
151151
},
152+
{
153+
"name": "ImageVolume"
154+
},
152155
{
153156
"name": "IngressControllerDynamicConfigurationManager"
154157
},

0 commit comments

Comments
 (0)