gce: Limit health check names to 63 chars

This commit is contained in:
Ciprian Hacman 2024-02-25 08:40:18 +02:00
parent dc22ce9c03
commit 97a0800b88
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ func (c *GCEModelContext) NameForTargetPool(id string) string {
}
func (c *GCEModelContext) NameForHealthCheck(id string) string {
return c.SafeObjectName(id)
return c.SafeSuffixedObjectName(id)
}
func (c *GCEModelContext) NameForBackendService(id string) string {