File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
pkg/oc/bootstrap/clusteradd/components/template-service-broker Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,10 @@ func (c *TemplateServiceBrokerComponentOptions) Install(dockerClient dockerhelpe
41
41
imageTemplate .Latest = false
42
42
43
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 ,
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 ,
47
48
}
48
49
glog .V (2 ).Infof ("instantiating template service broker template with parameters %v" , params )
49
50
You can’t perform that action at this time.
0 commit comments