Skip to content

Commit

Permalink
Fix strawberry container name (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmi-feo authored Nov 4, 2024
1 parent 989a87e commit 8f41ba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/components/strawberry_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (c *StrawberryController) syncComponents(ctx context.Context) (err error) {
deployment.Spec.Template.Spec.Containers = []corev1.Container{
{
Image: c.microservice.getImage(),
Name: consts.UIContainerName,
Name: consts.StrawberryContainerName,
EnvFrom: c.getEnvSource(),
Command: []string{
"/usr/bin/chyt-controller",
Expand Down
1 change: 1 addition & 0 deletions pkg/consts/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const (
PrepareLocationsContainerName = "prepare-locations"
PrepareSecretContainerName = "prepare-secret"
UIContainerName = "yt-ui"
StrawberryContainerName = "strawberry"
)

const (
Expand Down

0 comments on commit 8f41ba4

Please sign in to comment.