We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75cfa3a + bea3245 commit be66ee3Copy full SHA for be66ee3
pkg/oc/bootstrap/clusteradd/components/template-service-broker/template_service_broker.go
@@ -41,9 +41,10 @@ func (c *TemplateServiceBrokerComponentOptions) Install(dockerClient dockerhelpe
41
imageTemplate.Latest = false
42
43
params := map[string]string{
44
- "OPENSHIFT_TSB_IMAGE": imageTemplate.ExpandOrDie("template-service-broker"),
45
- "LOGLEVEL": fmt.Sprintf("%d", c.InstallContext.ComponentLogLevel()),
46
- "NAMESPACE": tsbNamespace,
+ "IMAGE": imageTemplate.ExpandOrDie("template-service-broker"),
+ "LOGLEVEL": fmt.Sprintf("%d", c.InstallContext.ComponentLogLevel()),
+ "OPENSHIFT_PULL_POLICY": c.InstallContext.ImagePullPolicy(),
47
+ "NAMESPACE": tsbNamespace,
48
}
49
glog.V(2).Infof("instantiating template service broker template with parameters %v", params)
50
0 commit comments