Skip to content

Commit

Permalink
Merge pull request #150 from schemahero/0.8.1
Browse files Browse the repository at this point in the history
Use the manager image
  • Loading branch information
marccampbell committed Apr 7, 2020
2 parents 9709c8e + 6d2c6a5 commit b20740d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/installer/manager.go
Expand Up @@ -196,6 +196,7 @@ func manager(isEnterprise bool, namespace string) *appsv1.StatefulSet {
schemaheroTag = strings.TrimPrefix(schemaheroTag, "v")
}
schemaHeroImage := fmt.Sprintf("schemahero/schemahero:%s", schemaheroTag)
schemaHeroManagerImage := fmt.Sprintf("schemahero/schemahero-manager:%s", schemaheroTag)

if isEnterprise {
env = append(env, corev1.EnvVar{
Expand Down Expand Up @@ -253,7 +254,7 @@ func manager(isEnterprise bool, namespace string) *appsv1.StatefulSet {
},
Containers: []corev1.Container{
{
Image: schemaHeroImage,
Image: schemaHeroManagerImage,
ImagePullPolicy: corev1.PullAlways,
Name: "manager",
Command: []string{"/manager"},
Expand Down

0 comments on commit b20740d

Please sign in to comment.