Skip to content

Commit c50012b

Browse files
Merge pull request #530 from openshift-cherrypick-robot/cherry-pick-522-to-release-4.7
[release-4.7] Do not install and enable stalld service
2 parents ca598b4 + 97dc2d4 commit c50012b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build/assets/tuned/openshift-node-performance

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ governor=performance # latency-performance
2525
energy_perf_bias=performance # latency-performance
2626
min_perf_pct=100 # latency-performance
2727

28+
# Disable the stalld service until bugs https://bugzilla.redhat.com/show_bug.cgi?id=1912118 and
29+
# https://bugzilla.redhat.com/show_bug.cgi?id=1903302 will be fixed
2830
[service]
29-
service.stalld=start,enable
31+
service.stalld=stop,disable
3032

3133
[vm]
3234
transparent_hugepages=never # network-latency

functests/1_performance/performance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ var _ = Describe("[rfe_id:27368][performance]", func() {
192192
})
193193

194194
It("[test_id:35363][crit:high][vendor:[email protected]][level:acceptance] stalld daemon is running on the host", func() {
195+
Skip("until bugs https://bugzilla.redhat.com/show_bug.cgi?id=1912118 and https://bugzilla.redhat.com/show_bug.cgi?id=1903302 fixed")
195196
for _, node := range workerRTNodes {
196197
tuned := tunedForNode(&node)
197198
_, err := pods.ExecCommandOnPod(tuned, []string{"pidof", "stalld"})
198199
Expect(err).ToNot(HaveOccurred())
199200
}
200201
})
201-
202202
})
203203

204204
Context("Additional kernel arguments added from perfomance profile", func() {

0 commit comments

Comments
 (0)