Skip to content

Commit 24e766a

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

File tree

6 files changed

+166
-91
lines changed

6 files changed

+166
-91
lines changed

app/scripts/controllers/buildConfig.js

+22
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ angular.module('openshiftConsole')
1111
$filter,
1212
$routeParams,
1313
AlertMessageService,
14+
APIService,
1415
BuildsService,
16+
ImagesService,
1517
DataService,
1618
LabelFilter,
1719
ProjectsService,
@@ -23,6 +25,7 @@ angular.module('openshiftConsole')
2325
$scope.alerts = {};
2426
$scope.breadcrumbs = [];
2527
$scope.forms = {};
28+
$scope.expand = {imageEnv: false};
2629

2730
if ($routeParams.isPipeline) {
2831
$scope.breadcrumbs.push({
@@ -99,6 +102,8 @@ angular.module('openshiftConsole')
99102
$scope.forms.bcEnvVars.$setPristine();
100103
};
101104

105+
var lastLoadedBuildFromImageKey;
106+
102107
var buildConfigResolved = function(buildConfig, action) {
103108
$scope.loaded = true;
104109
$scope.buildConfig = buildConfig;
@@ -110,6 +115,23 @@ angular.module('openshiftConsole')
110115
$scope.imageSourcesPaths.push($filter('destinationSourcePair')(imageSource.paths));
111116
});
112117
}
118+
var buildFrom = _.get(buildStrategy(buildConfig), 'from', {});
119+
// We don't want to reload the image every time the BC updates, only load again if the from changes
120+
var buildFromImageKey = buildFrom.kind + "/" + buildFrom.name + "/" + (buildFrom.namespace || $scope.projectName);
121+
if (lastLoadedBuildFromImageKey !== buildFromImageKey) {
122+
if (_.includes(["ImageStreamTag", "ImageStreamImage"], buildFrom.kind)) {
123+
lastLoadedBuildFromImageKey = buildFromImageKey;
124+
DataService.get(APIService.kindToResource(buildFrom.kind), buildFrom.name, {namespace: buildFrom.namespace || $scope.projectName}, {errorNotification: false}).then(function(imageStreamImage){
125+
$scope.BCEnvVarsFromImage = ImagesService.getEnvironment(imageStreamImage);
126+
}, function() {
127+
// We may not be able to fetch the image info as the end user, don't reveal any errors
128+
$scope.BCEnvVarsFromImage = [];
129+
});
130+
}
131+
else {
132+
$scope.BCEnvVarsFromImage = [];
133+
}
134+
}
113135
copyBuildConfigAndEnsureEnv(buildConfig);
114136
if (action === "DELETED") {
115137
$scope.alerts["deleted"] = {

app/scripts/controllers/create/createFromImage.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ angular.module("openshiftConsole")
1515
HPAService,
1616
QuotaService,
1717
SecretsService,
18+
ImagesService,
1819
TaskList,
1920
failureObjectNameFilter,
2021
$filter,
@@ -150,15 +151,7 @@ angular.module("openshiftConsole")
150151
var imageName = scope.imageTag;
151152
DataService.get("imagestreamtags", imageStream.metadata.name + ":" + imageName, {namespace: scope.namespace}).then(function(imageStreamTag){
152153
scope.image = imageStreamTag.image;
153-
scope.DCEnvVarsFromImage = _.map(
154-
_.get(imageStreamTag, 'image.dockerImageMetadata.Config.Env'),
155-
function(entry) {
156-
var pair = entry.split('=');
157-
return {
158-
name: _.head(pair),
159-
value:_.last(pair)
160-
};
161-
});
154+
scope.DCEnvVarsFromImage = ImagesService.getEnvironment(imageStreamTag);
162155
var ports = ApplicationGenerator.parsePorts(imageStreamTag.image);
163156
if (ports.length === 0) {
164157
scope.routing.include = false;

app/scripts/services/images.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,34 @@ angular.module("openshiftConsole")
213213
return resources;
214214
};
215215

216+
var getEnvironment = function(imageStreamImage) {
217+
return _.map(_.get(imageStreamImage, 'image.dockerImageMetadata.Config.Env'),
218+
function(entry) {
219+
var ind = entry.indexOf('=');
220+
var key = "";
221+
var value = "";
222+
if (ind > 0) {
223+
key = entry.substring(0, ind);
224+
if (ind + 1 < entry.length) {
225+
value = entry.substring(ind + 1);
226+
}
227+
}
228+
else {
229+
key = entry;
230+
}
231+
return {
232+
name: key,
233+
value: value
234+
};
235+
}
236+
);
237+
};
238+
216239
return {
217240
findImage: findImage,
218241
getVolumes: getVolumes,
219242
runsAsRoot: runsAsRoot,
220-
getResources: getResources
243+
getResources: getResources,
244+
getEnvironment: getEnvironment
221245
};
222246
});

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">Show 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)