Skip to content

Commit bea3245

Browse files
committed
up: fix tsb image template parameter
1 parent a864658 commit bea3245

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkg/oc/bootstrap/clusteradd/components/template-service-broker/template_service_broker.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ func (c *TemplateServiceBrokerComponentOptions) Install(dockerClient dockerhelpe
4141
imageTemplate.Latest = false
4242

4343
params := map[string]string{
44-
"OPENSHIFT_TSB_IMAGE": imageTemplate.ExpandOrDie("template-service-broker"),
45-
"LOGLEVEL": fmt.Sprintf("%d", c.InstallContext.ComponentLogLevel()),
46-
"NAMESPACE": tsbNamespace,
44+
"IMAGE": imageTemplate.ExpandOrDie("template-service-broker"),
45+
"LOGLEVEL": fmt.Sprintf("%d", c.InstallContext.ComponentLogLevel()),
46+
"OPENSHIFT_PULL_POLICY": c.InstallContext.ImagePullPolicy(),
47+
"NAMESPACE": tsbNamespace,
4748
}
4849
glog.V(2).Infof("instantiating template service broker template with parameters %v", params)
4950

0 commit comments

Comments
 (0)