Skip to content

Commit

Permalink
use correct squash image name (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdraft authored Mar 12, 2019
1 parent e0f7f63 commit 7c73905
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog/v0.5.3/containerversion.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
- type: FIX
description: Fix name of Squash image.
issueLink: https://github.com/solo-io/squash/issues/136
3 changes: 1 addition & 2 deletions pkg/install/squash.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"fmt"

sqOpts "github.com/solo-io/squash/pkg/options"
"github.com/solo-io/squash/pkg/version"
"gopkg.in/yaml.v2"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
Expand Down Expand Up @@ -124,7 +123,7 @@ func InstallSquash(cs *kubernetes.Clientset, namespace, containerRepo, container
Containers: []v1.Container{
{
Name: SquashName,
Image: fmt.Sprintf("%v/%v:%v", containerRepo, containerVersion, version.SquashImageTag),
Image: fmt.Sprintf("%v/%v:%v", containerRepo, SquashImageName, containerVersion),
VolumeMounts: []v1.VolumeMount{
{
Name: volumeName,
Expand Down

0 comments on commit 7c73905

Please sign in to comment.