-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RayService] Trim Redis Cleanup job less than 63 chars #2846
Changes from all commits
29e595b
0c1e368
c219805
d965072
5177fe3
909ad73
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -205,6 +205,11 @@ func CheckName(s string) string { | |
return s | ||
} | ||
|
||
// TrimJobName uses CheckLabel to trim Kubernetes job to constrains | ||
func TrimJobName(jobName string) string { | ||
return CheckLabel(jobName) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In a follow-up PR, I would create a private function |
||
} | ||
|
||
// CheckLabel makes sure the label value does not start with a punctuation and the total length is < 63 char | ||
func CheckLabel(s string) string { | ||
maxLenght := 63 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,20 @@ func TestGcsFaultToleranceOptions(t *testing.T) { | |
}, | ||
createSecret: true, | ||
}, | ||
{ | ||
name: "Long RayCluster Name", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @rueian @aviadshimoni do you know if this e2e test actually exercises the clean-up job? I guess it does because at the end it waits for RayCluster deletion to succeed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it does. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks! |
||
redisPassword: "", | ||
rayClusterFn: func(namespace string) *rayv1ac.RayClusterApplyConfiguration { | ||
// Intentionally using a long name to test job name trimming | ||
return rayv1ac.RayCluster("raycluster-with-a-very-long-name-exceeding-k8s-limit", namespace).WithSpec( | ||
newRayClusterSpec().WithGcsFaultToleranceOptions( | ||
rayv1ac.GcsFaultToleranceOptions(). | ||
WithRedisAddress("redis:6379"), | ||
), | ||
) | ||
}, | ||
createSecret: false, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note for future: the job name is only relevant when RayClusters are being deleted, so changing the name here is not a breaking change for existing KubeRay deployments since no existing RayCluster should rely on this name