Skip to content

Commit

Permalink
E2E: Align object names with README
Browse files Browse the repository at this point in the history
Following PR #23, the repo's name was changed from
`kubevirt-rt-checkup` to `kubevirt-realtime-checkup`.

In PR #27, a README file was added with object names
conforming to the new name of the repo.

Align the object names with the README file.

Signed-off-by: Orel Misan <[email protected]>
  • Loading branch information
orelmisan committed Dec 18, 2023
1 parent 7a9b5e6 commit e66e770
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/checkup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ import (
)

const (
testServiceAccountName = "rt-checkup-sa"
testServiceAccountName = "realtime-checkup-sa"
testKiagnoseConfigMapAccessRoleName = "kiagnose-configmap-access"
testKubeVirtRTCheckerRoleName = "kubevirt-rt-checker"
testConfigMapName = "rt-checkup-config"
testCheckupJobName = "rt-checkup"
testKubeVirtRTCheckerRoleName = "kubevirt-realtime-checker"
testConfigMapName = "realtime-checkup-config"
testCheckupJobName = "realtime-checkup"
)

var _ = Describe("Checkup execution", func() {
Expand Down Expand Up @@ -310,7 +310,7 @@ func newCheckupJob() *batchv1.Job {
RestartPolicy: corev1.RestartPolicyNever,
Containers: []corev1.Container{
{
Name: "rt-checkup",
Name: "realtime-checkup",
Image: testImageName,
ImagePullPolicy: corev1.PullAlways,
SecurityContext: newSecurityContext(),
Expand Down

0 comments on commit e66e770

Please sign in to comment.