Chart v0.4.8 fails deployment: port name "sequentialthinking" exceeds 15 character limit #48
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Devcontainer chart v0.4.8 fails to deploy due to Kubernetes port name validation error.
Error Details
Root Cause
The port name
"sequentialthinking"(18 characters) exceeds Kubernetes' maximum port name length of 15 characters.Impact
failedstatusEnvironment
Expected Fix
Port name should be shortened to ≤15 characters, e.g.:
"seqthinking"(11 chars)"sequential"(10 chars)"seq-thinking"(12 chars)Workaround
Rolling back to v0.4.7 or v0.4.5 until fixed.
@claude please fix