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