fix(plugin): address kubernetes greptile follow-up

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Dotta
2026-05-13 11:26:24 -05:00
committed by Chris Farhood
parent a98c5cdfa9
commit a6c2e0392b
7 changed files with 97 additions and 12 deletions
@@ -12,6 +12,10 @@ describe("manifest", () => {
it("keeps namespace inputs within the Kubernetes DNS label length limit", () => {
expect(configSchema.properties.namespacePrefix.maxLength).toBe(20);
expect(configSchema.properties.paperclipServerNamespace.maxLength).toBe(63);
expect(configSchema.properties.paperclipServerNamespace.pattern).toBe(
"^[a-z0-9]([-a-z0-9]*[a-z0-9])?$",
);
expect(configSchema.properties.companySlug.maxLength).toBe(43);
});