Skip to content

Commit f988273

Browse files
committed
pis testing
1 parent 59d86be commit f988273

File tree

6 files changed

+179
-0
lines changed

6 files changed

+179
-0
lines changed

test/extended/machine_config/helpers.go

+12
Original file line numberDiff line numberDiff line change
@@ -292,3 +292,15 @@ func WaitForOneMasterNodeToBeReady(oc *exutil.CLI) error {
292292
}, 5*time.Minute, 10*time.Second).Should(o.BeTrue())
293293
return nil
294294
}
295+
296+
func getNodesForPool(ctx context.Context, oc *exutil.CLI, pool *mcfgv1.MachineConfigPool) (*corev1.NodeList, error) {
297+
selector, err := metav1.LabelSelectorAsSelector(pool.Spec.NodeSelector)
298+
if err != nil {
299+
return nil, fmt.Errorf("invalid label selector: %w", err)
300+
}
301+
nodes, err := oc.KubeClient().CoreV1().Nodes().List(ctx, metav1.ListOptions{LabelSelector: selector.String()})
302+
if err != nil {
303+
return nil, fmt.Errorf("couldnt get nodes for mcp: %w", err)
304+
}
305+
return nodes, nil
306+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
package machine_config
2+
3+
import (
4+
"context"
5+
"fmt"
6+
"io/ioutil"
7+
"path/filepath"
8+
"strings"
9+
"time"
10+
11+
g "github.com/onsi/ginkgo/v2"
12+
o "github.com/onsi/gomega"
13+
mcfgv1alpha1 "github.com/openshift/api/machineconfiguration/v1alpha1"
14+
mcClient "github.com/openshift/client-go/machineconfiguration/clientset/versioned"
15+
exutil "github.com/openshift/origin/test/extended/util"
16+
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
17+
18+
"k8s.io/apimachinery/pkg/util/wait"
19+
"sigs.k8s.io/yaml"
20+
)
21+
22+
// This test is [Serial] because it modifies the cluster/machineconfigurations.operator.openshift.io object in each test.
23+
var _ = g.Describe("[sig-mco][OCPFeatureGate:PinnedImages][OCPFeatureGate:MachineConfigNode][Serial]", func() {
24+
defer g.GinkgoRecover()
25+
var (
26+
MCOMachineConfigurationBaseDir = exutil.FixturePath("testdata", "machine_config", "machineconfigurations")
27+
pinnedImageSetFixture = filepath.Join(MCOMachineConfigurationBaseDir, "pis.yaml")
28+
oc = exutil.NewCLIWithoutNamespace("machine-config")
29+
)
30+
31+
g.It("Should update boot images on all MachineSets when configured [apigroup:machineconfiguration.openshift.io]", func() {
32+
SimplePISTest(oc, pinnedImageSetFixture)
33+
})
34+
})
35+
36+
func SimplePISTest(oc *exutil.CLI, fixture string) {
37+
clientSet, err := mcClient.NewForConfig(oc.KubeFramework().ClientConfig())
38+
o.Expect(err).NotTo(o.HaveOccurred())
39+
40+
pis, err := getPISFromFixture(fixture)
41+
o.Expect(err).NotTo(o.HaveOccurred())
42+
43+
err = oc.Run("apply").Args("-f", fixture).Execute()
44+
o.Expect(err).NotTo(o.HaveOccurred(), "Applied PIS")
45+
46+
waitTime := time.Minute * 20
47+
ctx, cancel := context.WithTimeout(context.Background(), waitTime)
48+
defer cancel()
49+
50+
waitForPISStatusSuccess(ctx, oc, clientSet, pis.Name)
51+
52+
}
53+
54+
func waitForPISStatusSuccess(ctx context.Context, oc *exutil.CLI, clientSet *mcClient.Clientset, pisName string) error {
55+
return wait.PollUntilContextCancel(ctx, time.Second, true, func(ctx context.Context) (done bool, err error) {
56+
// Wait for PIS object to get created
57+
appliedPIS, err := clientSet.MachineconfigurationV1alpha1().PinnedImageSets().Get(context.TODO(), pisName, metav1.GetOptions{})
58+
if err != nil {
59+
return false, fmt.Errorf("PIS Object not created yet: %w", err)
60+
}
61+
62+
pool, err := clientSet.MachineconfigurationV1().MachineConfigPools().Get(ctx, appliedPIS.Labels["machineconfiguration.openshift.io/role"], metav1.GetOptions{})
63+
if err != nil {
64+
return true, fmt.Errorf("failed to get MCP mentioned in PIS: %w", err)
65+
}
66+
67+
nodes, err := getNodesForPool(ctx, oc, pool)
68+
doneNodes := 0
69+
for _, node := range nodes.Items {
70+
mcn, err := clientSet.MachineconfigurationV1alpha1().MachineConfigNodes().Get(ctx, node.Name, metav1.GetOptions{})
71+
if err != nil {
72+
return true, fmt.Errorf("failed to get mcn: %w", err)
73+
}
74+
for _, cond := range mcn.Status.Conditions {
75+
if mcfgv1alpha1.StateProgress(cond.Type) == mcfgv1alpha1.MachineConfigNodePinnedImageSetsDegraded && cond.Status == "True" {
76+
return true, fmt.Errorf("PIS degraded for MCN %s with reason: %s and message: %s", mcn.Name, cond.Reason, cond.Message)
77+
}
78+
79+
if mcfgv1alpha1.StateProgress(cond.Type) == mcfgv1alpha1.MachineConfigNodePinnedImageSetsProgressing && cond.Status == "True" {
80+
return false, nil
81+
}
82+
}
83+
for _, img := range appliedPIS.Spec.PinnedImages {
84+
crictlStatus, err := exutil.DebugNodeRetryWithOptionsAndChroot(oc, node.Name, "openshift-machine-config-operator", "crictl", "inspecti", img.Name)
85+
if err != nil {
86+
return false, fmt.Errorf("failed to execute `crictl inspecti %s` on node %s: %w", img.Name, node.Name, err)
87+
}
88+
if !strings.Contains(crictlStatus, "imageSpec") {
89+
return false, fmt.Errorf("Image %s not present on node %s: %w", img.Name, node.Name, err)
90+
}
91+
}
92+
doneNodes += 1
93+
}
94+
if doneNodes == len(nodes.Items) {
95+
return true, nil
96+
}
97+
98+
return false, nil
99+
})
100+
}
101+
102+
func getPISFromFixture(path string) (*mcfgv1alpha1.PinnedImageSet, error) {
103+
data, err := ioutil.ReadFile(path)
104+
if err != nil {
105+
return nil, err
106+
}
107+
108+
ob := new(mcfgv1alpha1.PinnedImageSet)
109+
err = yaml.Unmarshal(data, ob)
110+
if err != nil {
111+
return nil, err
112+
}
113+
114+
return ob, err
115+
}

test/extended/testdata/bindata.go

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apiVersion: machineconfiguration.openshift.io/v1alpha1
2+
kind: PinnedImageSet
3+
metadata:
4+
name: test-pinned
5+
labels:
6+
machineconfiguration.openshift.io/role: "master"
7+
spec:
8+
pinnedImages:
9+
- name: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:86d26e7ebcccd6f07a75db5b1e56283b25c2ee1c6a755d6ffc5a4d59beb9c504
10+
- name: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e43b2ef4fbc42dbcbea5d67f57f3feed38f6b45fb712c99acb06490103e277a9
11+
- name: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:479f8a99cbe432551448776965aac1f44501c08aa01539d77ab5976fdbbe1c83

test/extended/util/annotate/generated/zz_generated.annotations.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zz_generated.manifests/test-reporting.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ spec:
9898
- testName: '[sig-imageregistry][OCPFeatureGate:ImageStreamImportMode][Serial]
9999
ImageStream API import mode should be PreserveOriginal or Legacy depending
100100
on desired.architecture field in the CV [apigroup:image.openshift.io]'
101+
- featureGate: MachineConfigNode
102+
tests:
103+
- testName: '[sig-mco][OCPFeatureGate:PinnedImages][OCPFeatureGate:MachineConfigNode][Serial]
104+
Should update boot images on all MachineSets when configured [apigroup:machineconfiguration.openshift.io]'
101105
- featureGate: ManagedBootImages
102106
tests:
103107
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should degrade
@@ -456,6 +460,10 @@ spec:
456460
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
457461
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
458462
when the VMI attached to a secondary UDN is migrated between nodes'
463+
- featureGate: PinnedImages
464+
tests:
465+
- testName: '[sig-mco][OCPFeatureGate:PinnedImages][OCPFeatureGate:MachineConfigNode][Serial]
466+
Should update boot images on all MachineSets when configured [apigroup:machineconfiguration.openshift.io]'
459467
- featureGate: SELinuxMount
460468
tests:
461469
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]

0 commit comments

Comments
 (0)