@@ -69,6 +69,11 @@ func TestSingleNodeInstallation(t *testing.T) {
6969 if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
7070 t .Fatalf ("fail to install helmvm on node %s: %v" , tc .Nodes [0 ], err )
7171 }
72+ t .Log ("creating deployment mounting pvc" )
73+ line = []string {"deploy-with-pvc.sh" }
74+ if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
75+ t .Fatalf ("fail to create deployment with pvc: %v" , err )
76+ }
7277}
7378
7479func TestMultiNodeInstallation (t * testing.T ) {
@@ -122,6 +127,11 @@ func TestSingleNodeInstallationRockyLinux8(t *testing.T) {
122127 if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
123128 t .Fatalf ("fail to install helmvm on node %s: %v" , tc .Nodes [0 ], err )
124129 }
130+ t .Log ("creating deployment mounting pvc" )
131+ line = []string {"deploy-with-pvc.sh" }
132+ if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
133+ t .Fatalf ("fail to create deployment with pvc: %v" , err )
134+ }
125135}
126136
127137func TestSingleNodeInstallationDebian12 (t * testing.T ) {
@@ -145,6 +155,11 @@ func TestSingleNodeInstallationDebian12(t *testing.T) {
145155 if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
146156 t .Fatalf ("fail to install helmvm on node %s: %v" , tc .Nodes [0 ], err )
147157 }
158+ t .Log ("creating deployment mounting pvc" )
159+ line = []string {"deploy-with-pvc.sh" }
160+ if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
161+ t .Fatalf ("fail to create deployment with pvc: %v" , err )
162+ }
148163}
149164
150165func TestSingleNodeInstallationCentos8Stream (t * testing.T ) {
@@ -172,4 +187,9 @@ func TestSingleNodeInstallationCentos8Stream(t *testing.T) {
172187 if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
173188 t .Fatalf ("fail to install helmvm on node %s: %v" , tc .Nodes [0 ], err )
174189 }
190+ t .Log ("creating deployment mounting pvc" )
191+ line = []string {"deploy-with-pvc.sh" }
192+ if _ , _ , err := RunCommandOnNode (t , tc , 0 , line ); err != nil {
193+ t .Fatalf ("fail to create deployment with pvc: %v" , err )
194+ }
175195}
0 commit comments