Skip to content

Commit

Permalink
Add TechPreviewNoUpgrade gate to SignatureStores
Browse files Browse the repository at this point in the history
  • Loading branch information
PratikMahajan committed Nov 29, 2023
1 parent 45f44a7 commit 2959d3d
Show file tree
Hide file tree
Showing 7 changed files with 946 additions and 57 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
api-approved.openshift.io: https://github.com/openshift/api/pull/495
include.release.openshift.io/self-managed-high-availability: "true"
include.release.openshift.io/single-node-developer: "true"
release.openshift.io/feature-set: TechPreviewNoUpgrade
name: clusterversions.config.openshift.io
spec:
group: config.openshift.io
Expand Down
10 changes: 10 additions & 0 deletions config/v1/feature_gates.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,4 +341,14 @@ var (
ResponsiblePerson: "padillon",
OwningProduct: ocpSpecific,
}

FeatureGateSignatureStores = FeatureGateName("SignatureStores")
signatureStores = FeatureGateDescription{
FeatureGateAttributes: FeatureGateAttributes{
Name: FeatureGateSignatureStores,
},
OwningJiraComponent: "over-the-air-updates",
ResponsiblePerson: "lmohanty",
OwningProduct: ocpSpecific,
}
)
56 changes: 1 addition & 55 deletions config/v1/stable.clusterversion.testsuite.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: apiextensions.k8s.io/v1 # Hack because controller-gen complains if we don't have this
name: "[Stable] ClusterVersion"
crd: 0000_00_cluster-version-operator_01_clusterversion.crd.yaml
crd: 0000_00_cluster-version-operator_01_clusterversion-Default.crd.yaml
tests:
onCreate:
- name: Should be able to create a minimal ClusterVersion
Expand Down Expand Up @@ -162,60 +162,6 @@ tests:
additionalEnabledCapabilities:
- marketplace
expectedError: the `marketplace` capability requires the `OperatorLifecycleManager` capability, which is neither explicitly or implicitly enabled in this cluster, please enable the `OperatorLifecycleManager` capability
- name: Should be able to set a custom signature store
initial: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores:
- "https://osus.ocp.com"
expected: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores:
- "https://osus.ocp.com"
- name: Should be able to set multiple custom signature store
initial: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores:
- "https://osus1.ocp.com"
- "https://osus2.ocp.com"
expected: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores:
- "https://osus1.ocp.com"
- "https://osus2.ocp.com"
- name: Invalid custom signature store should throw error
initial: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores:
- "osus1.ocp.com"
expectedError: "signatureStores must contain only valid absolute URLs per the Go net/url standard"
- name: Should be able to unset the signature stores
initial: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores: []
expected: |
apiVersion: config.openshift.io/v1
kind: ClusterVersion
spec:
clusterID: foo
signatureStores: []
onUpdate:
- name: Should not allow image to be set if architecture set
initial: |
Expand Down
Loading

0 comments on commit 2959d3d

Please sign in to comment.