Fix invalid service names for Kubernetes (#1234)

closes #1232
This commit is contained in:
Anbraten
2022-10-05 13:39:48 +02:00
committed by GitHub
parent da997fa34a
commit f1339412eb
3 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ type (
// UnmarshalYAML implements the Unmarshaler interface.
func (c *Containers) UnmarshalYAML(value *yaml.Node) error {
switch value.Kind {
// We support mapps ...
// We support maps ...
case yaml.MappingNode:
c.Containers = make([]*Container, 0, len(value.Content)/2+1)
// We cannot use decode on specific values