Skip to content

Commit

Permalink
Merge pull request #2902 from spadgett/edit-env-var-msg
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

Bug 1477133 - Show link to owner on pod env tab

Link to the env tab of the owning resource.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1477133

/assign @benjaminapetersen
  • Loading branch information
openshift-merge-robot committed Mar 19, 2018
2 parents efea731 + e9dc498 commit 327c51a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/views/browse/pod.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ <h1 class="contains-actions">
</uib-tab>
<uib-tab heading="Environment" active="selectedTab.environment">
<uib-tab-heading>Environment</uib-tab-heading>
<p ng-if="dcName">
<span class="pficon pficon-info" aria-hidden="true"></span>
Environment variables can be edited on deployment config
<a ng-href="{{dcName | navigateResourceURL : 'DeploymentConfig' : pod.metadata.namespace}}?tab=environment">{{dcName}}</a>.
</p>
<p ng-if="!dcName && controllerRef">
<span class="pficon pficon-info" aria-hidden="true"></span>
Environment variables were set by {{controllerRef.kind | humanizeKind}}
<a ng-href="{{controllerRef.name | navigateResourceURL : controllerRef.kind : pod.metadata.namespace}}?tab=environment">{{controllerRef.name}}</a>.
</p>
<edit-environment-variables api-object="pod" ng-readonly="true"></edit-environment-variables>
</uib-tab>
<uib-tab ng-if="metricsAvailable" heading="Metrics" active="selectedTab.metrics">
Expand Down
10 changes: 10 additions & 0 deletions dist/scripts/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -3036,6 +3036,16 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"</uib-tab>\n" +
"<uib-tab heading=\"Environment\" active=\"selectedTab.environment\">\n" +
"<uib-tab-heading>Environment</uib-tab-heading>\n" +
"<p ng-if=\"dcName\">\n" +
"<span class=\"pficon pficon-info\" aria-hidden=\"true\"></span>\n" +
"Environment variables can be edited on deployment config\n" +
"<a ng-href=\"{{dcName | navigateResourceURL : 'DeploymentConfig' : pod.metadata.namespace}}?tab=environment\">{{dcName}}</a>.\n" +
"</p>\n" +
"<p ng-if=\"!dcName && controllerRef\">\n" +
"<span class=\"pficon pficon-info\" aria-hidden=\"true\"></span>\n" +
"Environment variables were set by {{controllerRef.kind | humanizeKind}}\n" +
"<a ng-href=\"{{controllerRef.name | navigateResourceURL : controllerRef.kind : pod.metadata.namespace}}?tab=environment\">{{controllerRef.name}}</a>.\n" +
"</p>\n" +
"<edit-environment-variables api-object=\"pod\" ng-readonly=\"true\"></edit-environment-variables>\n" +
"</uib-tab>\n" +
"<uib-tab ng-if=\"metricsAvailable\" heading=\"Metrics\" active=\"selectedTab.metrics\">\n" +
Expand Down

0 comments on commit 327c51a

Please sign in to comment.