Skip to content

Commit

Permalink
Use a shorter name for the KubeletConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Artyom Lukianov committed Jan 5, 2020
1 parent 4e7b6d9 commit 3bb4d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions pkg/controller/performanceprofile/components/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ const (
// RoleWorker defines the worker role
RoleWorker = "worker"
// RoleWorkerPerformance defines the worker role for performance sensitive workflows
RoleWorkerPerformance = "worker-performance"
// RoleWorkerPerformance = "worker-performance"
// Use shorter role name, see https://bugzilla.redhat.com/show_bug.cgi?id=1787907
RoleWorkerPerformance = "performance"
)

const (
Expand All @@ -27,4 +29,4 @@ const (
const (
// FeatureGateLatencySensetiveName defines the latency sensetive feature gate name
FeatureGateLatencySensetiveName = "latency-sensetive"
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
const expectedMachineConfigSelectorValues = `
values:
- worker
- worker-performance-test
- performance-test
`

var _ = Describe("Machine Config Pool", func() {
Expand Down

0 comments on commit 3bb4d65

Please sign in to comment.