@@ -13,13 +13,15 @@ import (
13
13
14
14
docker "github.com/fsouza/go-dockerclient"
15
15
"github.com/golang/glog"
16
+ kapi "k8s.io/kubernetes/pkg/api"
16
17
"k8s.io/kubernetes/pkg/util/homedir"
17
18
18
19
"github.com/openshift/origin/pkg/bootstrap/docker/dockerhelper"
19
20
"github.com/openshift/origin/pkg/bootstrap/docker/errors"
20
21
dockerexec "github.com/openshift/origin/pkg/bootstrap/docker/exec"
21
22
"github.com/openshift/origin/pkg/bootstrap/docker/host"
22
23
"github.com/openshift/origin/pkg/bootstrap/docker/run"
24
+ defaultsapi "github.com/openshift/origin/pkg/build/admission/defaults/api"
23
25
cliconfig "github.com/openshift/origin/pkg/cmd/cli/config"
24
26
configapi "github.com/openshift/origin/pkg/cmd/server/api"
25
27
_ "github.com/openshift/origin/pkg/cmd/server/api/install"
@@ -64,6 +66,7 @@ type Helper struct {
64
66
image string
65
67
containerName string
66
68
routingSuffix string
69
+ serverIP string
67
70
}
68
71
69
72
// StartOptions represent the parameters sent to the start command
@@ -84,6 +87,9 @@ type StartOptions struct {
84
87
MetricsHost string
85
88
LoggingHost string
86
89
PortForwarding bool
90
+ HTTPProxy string
91
+ HTTPSProxy string
92
+ NoProxy []string
87
93
}
88
94
89
95
// NewHelper creates a new OpenShift helper
@@ -176,6 +182,9 @@ func (h *Helper) DetermineNodeHost(hostConfigDir string, names ...string) (strin
176
182
177
183
// ServerIP retrieves the Server ip through the openshift start command
178
184
func (h * Helper ) ServerIP () (string , error ) {
185
+ if len (h .serverIP ) > 0 {
186
+ return h .serverIP , nil
187
+ }
179
188
result , _ , _ , err := h .runHelper .New ().Image (h .image ).
180
189
DiscardContainer ().
181
190
Privileged ().
@@ -184,7 +193,8 @@ func (h *Helper) ServerIP() (string, error) {
184
193
if err != nil {
185
194
return "" , err
186
195
}
187
- return strings .TrimSpace (result ), nil
196
+ h .serverIP = strings .TrimSpace (result )
197
+ return h .serverIP , nil
188
198
}
189
199
190
200
// OtherIPs tries to find other IPs besides the argument IP for the Docker host
@@ -223,6 +233,15 @@ func (h *Helper) Start(opt *StartOptions, out io.Writer) (string, error) {
223
233
224
234
binds := openShiftContainerBinds
225
235
env := []string {}
236
+ if len (opt .HTTPProxy ) > 0 {
237
+ env = append (env , fmt .Sprintf ("HTTP_PROXY=%s" , opt .HTTPProxy ))
238
+ }
239
+ if len (opt .HTTPSProxy ) > 0 {
240
+ env = append (env , fmt .Sprintf ("HTTPS_PROXY=%s" , opt .HTTPSProxy ))
241
+ }
242
+ if len (opt .NoProxy ) > 0 {
243
+ env = append (env , fmt .Sprintf ("NO_PROXY=%s" , strings .Join (opt .NoProxy , "," )))
244
+ }
226
245
if opt .UseSharedVolume {
227
246
binds = append (binds , fmt .Sprintf ("%[1]s:%[1]s:shared" , opt .HostVolumesDir ))
228
247
env = append (env , "OPENSHIFT_CONTAINERIZED=false" )
@@ -305,7 +324,7 @@ func (h *Helper) Start(opt *StartOptions, out io.Writer) (string, error) {
305
324
if err != nil {
306
325
return "" , errors .NewError ("could not copy OpenShift configuration" ).WithCause (err )
307
326
}
308
- err = h .updateConfig (configDir , opt . RouterIP , opt . MetricsHost , opt . LoggingHost )
327
+ err = h .updateConfig (configDir , opt )
309
328
if err != nil {
310
329
cleanupConfig ()
311
330
return "" , errors .NewError ("could not update OpenShift configuration" ).WithCause (err )
@@ -494,7 +513,7 @@ func GetConfigFromContainer(client *docker.Client) (*configapi.MasterConfig, err
494
513
return config , nil
495
514
}
496
515
497
- func (h * Helper ) updateConfig (configDir , routerIP , metricsHost , loggingHost string ) error {
516
+ func (h * Helper ) updateConfig (configDir string , opt * StartOptions ) error {
498
517
cfg , configPath , err := h .GetConfigFromLocalDir (configDir )
499
518
if err != nil {
500
519
return err
@@ -503,15 +522,52 @@ func (h *Helper) updateConfig(configDir, routerIP, metricsHost, loggingHost stri
503
522
if len (h .routingSuffix ) > 0 {
504
523
cfg .RoutingConfig .Subdomain = h .routingSuffix
505
524
} else {
506
- cfg .RoutingConfig .Subdomain = fmt .Sprintf ("%s.xip.io" , routerIP )
525
+ cfg .RoutingConfig .Subdomain = fmt .Sprintf ("%s.xip.io" , opt .RouterIP )
526
+ }
527
+
528
+ if len (opt .MetricsHost ) > 0 && cfg .AssetConfig != nil {
529
+ cfg .AssetConfig .MetricsPublicURL = fmt .Sprintf ("https://%s/hawkular/metrics" , opt .MetricsHost )
507
530
}
508
531
509
- if len (metricsHost ) > 0 && cfg .AssetConfig != nil {
510
- cfg .AssetConfig .MetricsPublicURL = fmt .Sprintf ("https://%s/hawkular/metrics " , metricsHost )
532
+ if len (opt . LoggingHost ) > 0 && cfg .AssetConfig != nil {
533
+ cfg .AssetConfig .LoggingPublicURL = fmt .Sprintf ("https://%s" , opt . LoggingHost )
511
534
}
512
535
513
- if len (loggingHost ) > 0 && cfg .AssetConfig != nil {
514
- cfg .AssetConfig .LoggingPublicURL = fmt .Sprintf ("https://%s" , loggingHost )
536
+ if len (opt .HTTPProxy ) > 0 || len (opt .HTTPSProxy ) > 0 || len (opt .NoProxy ) > 0 {
537
+ if cfg .AdmissionConfig .PluginConfig == nil {
538
+ cfg .AdmissionConfig .PluginConfig = map [string ]configapi.AdmissionPluginConfig {}
539
+ }
540
+
541
+ var buildDefaults * defaultsapi.BuildDefaultsConfig
542
+ buildDefaultsConfig , ok := cfg .AdmissionConfig .PluginConfig [defaultsapi .BuildDefaultsPlugin ]
543
+ if ! ok {
544
+ buildDefaultsConfig = configapi.AdmissionPluginConfig {}
545
+ }
546
+ if buildDefaultsConfig .Configuration != nil {
547
+ buildDefaults = buildDefaultsConfig .Configuration .(* defaultsapi.BuildDefaultsConfig )
548
+ }
549
+ if buildDefaults == nil {
550
+ buildDefaults = & defaultsapi.BuildDefaultsConfig {}
551
+ buildDefaultsConfig .Configuration = buildDefaults
552
+ }
553
+ buildDefaults .GitHTTPProxy = opt .HTTPProxy
554
+ buildDefaults .GitHTTPSProxy = opt .HTTPSProxy
555
+ buildDefaults .GitNoProxy = strings .Join (opt .NoProxy , "," )
556
+ varsToSet := map [string ]string {
557
+ "HTTP_PROXY" : opt .HTTPProxy ,
558
+ "http_proxy" : opt .HTTPProxy ,
559
+ "HTTPS_PROXY" : opt .HTTPSProxy ,
560
+ "https_proxy" : opt .HTTPSProxy ,
561
+ "NO_PROXY" : strings .Join (opt .NoProxy , "," ),
562
+ "no_proxy" : strings .Join (opt .NoProxy , "," ),
563
+ }
564
+ for k , v := range varsToSet {
565
+ buildDefaults .Env = append (buildDefaults .Env , kapi.EnvVar {
566
+ Name : k ,
567
+ Value : v ,
568
+ })
569
+ }
570
+ cfg .AdmissionConfig .PluginConfig [defaultsapi .BuildDefaultsPlugin ] = buildDefaultsConfig
515
571
}
516
572
517
573
cfg .JenkinsPipelineConfig .TemplateName = "jenkins-persistent"
0 commit comments