Skip to content

Commit ef997d6

Browse files
Merge pull request #524 from openshift-cherrypick-robot/cherry-pick-522-to-release-4.6
[release-4.6] Do not install and enable stalld service
2 parents c76f6a8 + 0597c7a commit ef997d6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build/assets/tuned/openshift-node-performance

+3-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,13 @@ var _ = Describe("[rfe_id:27368][performance]", func() {
177177
})
178178

179179
It("[test_id:35363][crit:high][vendor:[email protected]][level:acceptance] stalld daemon is running on the host", func() {
180+
Skip("until bugs https://bugzilla.redhat.com/show_bug.cgi?id=1912118 and https://bugzilla.redhat.com/show_bug.cgi?id=1903302 fixed")
180181
for _, node := range workerRTNodes {
181182
tuned := tunedForNode(&node)
182183
_, err := pods.ExecCommandOnPod(tuned, []string{"pidof", "stalld"})
183184
Expect(err).ToNot(HaveOccurred())
184185
}
185186
})
186-
187187
})
188188

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

0 commit comments

Comments
 (0)