Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions test/extended/machine_config/OWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ approvers:
- dkhater-redhat
- yuqi-zhang
- cheesesashimi
- umohnani8
- LorbusChris
- RishabhSaini
- isabella-janssen
reviewers:
- djoshy
- dkhater-redhat
- yuqi-zhang
- cheesesashimi
- umohnani8
- LorbusChris
- RishabhSaini
- isabella-janssen
834 changes: 834 additions & 0 deletions test/extended/machine_config/helpers.go

Large diffs are not rendered by default.

440 changes: 440 additions & 0 deletions test/extended/machine_config/machine_config_node.go

Large diffs are not rendered by default.

143 changes: 143 additions & 0 deletions test/extended/testdata/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
labels:
machineconfiguration.openshift.io/role: master
name: 90-master-testfile
spec:
config:
ignition:
version: 3.2.0
storage:
files:
- contents:
source: data:,hello%20world%0A
mode: 420
path: /home/core/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
labels:
machineconfiguration.openshift.io/role: master
name: 91-master-testfile-invalid
spec:
config:
ignition:
version: 3.2.0
storage:
files:
- contents:
source: data:,hello%20world%0A
mode: 420
path: /home/core
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
labels:
machineconfiguration.openshift.io/role: worker
name: 91-worker-testfile-invalid
spec:
config:
ignition:
version: 3.2.0
storage:
files:
- contents:
source: data:,hello%20world%0A
mode: 420
path: /home/core
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfigPool
metadata:
name: infra
spec:
machineConfigSelector:
matchExpressions:
- {key: machineconfiguration.openshift.io/role, operator: In, values: [worker,infra]}
nodeSelector:
matchLabels:
node-role.kubernetes.io/infra: ""

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions zz_generated.manifests/test-reporting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ spec:
- testName: '[sig-imageregistry][OCPFeatureGate:ImageStreamImportMode][Serial]
ImageStream API import mode should be PreserveOriginal or Legacy depending
on desired.architecture field in the CV [apigroup:image.openshift.io]'
- featureGate: MachineConfigNodes
tests:
- testName: '[sig-mco][OCPFeatureGate:MachineConfigNodes] [Serial]Should have
MCN properties matching associated node properties [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:MachineConfigNodes] [Serial]Should properly
transition through MCN conditions on node update [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:MachineConfigNodes] [Serial][Slow]Should
properly create and remove MCN on node creation and deletion [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:MachineConfigNodes] [Serial][Slow]Should
properly report MCN conditions on node degrade [apigroup:machineconfiguration.openshift.io]'
- featureGate: ManagedBootImages
tests:
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should degrade
Expand Down