mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-05-06 01:08:24 +00:00
15 lines
487 B
YAML
Vendored
15 lines
487 B
YAML
Vendored
apiVersion: apiextensions.k8s.io/v1 # Hack because controller-gen complains if we don't have this
|
|
name: "[Stable] FeatureGate"
|
|
crd: 0000_10_config-operator_01_featuregate.crd.yaml
|
|
tests:
|
|
onCreate:
|
|
- name: Should be able to create a minimal FeatureGate
|
|
initial: |
|
|
apiVersion: config.openshift.io/v1
|
|
kind: FeatureGate
|
|
spec: {} # No spec is required for a FeatureGate
|
|
expected: |
|
|
apiVersion: config.openshift.io/v1
|
|
kind: FeatureGate
|
|
spec: {}
|