Skip to content

Commit 02d266d

Browse files
committed
Show environment variables coming from the builder image in the Environment tab
Fixes openshift/origin#11388
1 parent 589a660 commit 02d266d

File tree

2 files changed

+51
-10
lines changed

2 files changed

+51
-10
lines changed

app/scripts/controllers/buildConfig.js

+26
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ angular.module('openshiftConsole')
1111
$filter,
1212
$routeParams,
1313
AlertMessageService,
14+
APIService,
1415
BuildsService,
1516
DataService,
1617
LabelFilter,
@@ -23,6 +24,7 @@ angular.module('openshiftConsole')
2324
$scope.alerts = {};
2425
$scope.breadcrumbs = [];
2526
$scope.forms = {};
27+
$scope.expand = {imageEnv: false};
2628

2729
if ($routeParams.isPipeline) {
2830
$scope.breadcrumbs.push({
@@ -99,6 +101,8 @@ angular.module('openshiftConsole')
99101
$scope.forms.bcEnvVars.$setPristine();
100102
};
101103

104+
var lastLoadedBuildFromImageKey;
105+
102106
var buildConfigResolved = function(buildConfig, action) {
103107
$scope.loaded = true;
104108
$scope.buildConfig = buildConfig;
@@ -110,6 +114,28 @@ angular.module('openshiftConsole')
110114
$scope.imageSourcesPaths.push($filter('destinationSourcePair')(imageSource.paths));
111115
});
112116
}
117+
var buildFrom = _.get(buildStrategy(buildConfig), 'from', {});
118+
// We don't want to reload the image every time the BC updates, only load again if the from changes
119+
var buildFromImageKey = buildFrom.kind + "/" + buildFrom.name + "/" + (buildFrom.namespace || $scope.projectName);
120+
if (lastLoadedBuildFromImageKey !== buildFromImageKey) {
121+
if (_.includes(["ImageStreamTag", "ImageStreamImage"], buildFrom.kind)) {
122+
lastLoadedBuildFromImageKey = buildFromImageKey;
123+
DataService.get(APIService.kindToResource(buildFrom.kind), buildFrom.name, {namespace: buildFrom.namespace || $scope.projectName}).then(function(imageStreamImage){
124+
$scope.BCEnvVarsFromImage = _.map(_.get(imageStreamImage, 'image.dockerImageMetadata.Config.Env'),
125+
function(entry) {
126+
var pair = entry.split('=');
127+
return {
128+
name: _.head(pair),
129+
value:_.last(pair)
130+
};
131+
}
132+
);
133+
});
134+
}
135+
else {
136+
$scope.BCEnvVarsFromImage = [];
137+
}
138+
}
113139
copyBuildConfigAndEnsureEnv(buildConfig);
114140
if (action === "DELETED") {
115141
$scope.alerts["deleted"] = {

app/views/browse/build-config.html

+25-10
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,21 @@ <h3>Triggers</h3>
365365
<uib-tab heading="Environment" active="selectedTab.environment" ng-if="buildConfig && !(buildConfig | isJenkinsPipelineStrategy)">
366366
<uib-tab-heading>Environment</uib-tab-heading>
367367
<h3>Environment Variables</h3>
368+
<div style="margin-top: -5px;" ng-if="BCEnvVarsFromImage.length">
369+
The builder image has additional environment variables defined. Variables defined below will overwrite any from the image with the same name.
370+
<a href="" ng-click="expand.imageEnv = true" ng-if="!expand.imageEnv">View image environment variables</a>
371+
<a href="" ng-click="expand.imageEnv = false" ng-if="expand.imageEnv">Hide image environment variables</a>
372+
</div>
373+
<key-value-editor
374+
ng-if="expand.imageEnv"
375+
entries="BCEnvVarsFromImage"
376+
key-placeholder="Name"
377+
value-placeholder="Value"
378+
is-readonly
379+
cannot-add
380+
cannot-sort
381+
cannot-delete
382+
show-header></key-value-editor>
368383
<ng-form name="forms.bcEnvVars">
369384
<div ng-if="'buildconfigs' | canI : 'update'">
370385
<key-value-editor
@@ -376,6 +391,16 @@ <h3>Environment Variables</h3>
376391
key-validator-error-tooltip="A valid environment variable name is an alphanumeric (a-z and 0-9) string beginning with a letter that may contain underscores."
377392
add-row-link="Add environment variable"
378393
show-header></key-value-editor>
394+
<key-value-editor
395+
ng-if="!('buildconfigs' | canI : 'update')"
396+
entries="envVars"
397+
key-placeholder="Name"
398+
value-placeholder="Value"
399+
is-readonly
400+
cannot-add
401+
cannot-sort
402+
cannot-delete
403+
show-header></key-value-editor>
379404
<button
380405
class="btn btn-default"
381406
ng-click="saveEnvVars()"
@@ -387,16 +412,6 @@ <h3>Environment Variables</h3>
387412
class="mar-left-sm"
388413
style="vertical-align: -2px;">Clear changes</a>
389414
</div>
390-
<key-value-editor
391-
ng-if="!('buildconfigs' | canI : 'update')"
392-
entries="envVars"
393-
key-placeholder="Name"
394-
value-placeholder="Value"
395-
is-readonly
396-
cannot-add
397-
cannot-sort
398-
cannot-delete
399-
show-header></key-value-editor>
400415
</ng-form>
401416
</uib-tab>
402417
</uib-tabset>

0 commit comments

Comments
 (0)