Skip to content

Commit

Permalink
Also lower case the service name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorg88 committed Feb 19, 2025
1 parent b7ec2d0 commit 9f7e26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mpyl/steps/deploy/k8s/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def to_service(self, deployment: Deployment) -> V1Service:
kind="Service",
metadata=V1ObjectMeta(
annotations=self._to_annotations(),
name=deployment.name,
name=deployment.name.lower(),
labels=self.to_labels(),
),
spec=V1ServiceSpec(
Expand Down

0 comments on commit 9f7e26c

Please sign in to comment.