forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecret.html
107 lines (106 loc) · 5.26 KB
/
secret.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<div class="middle">
<div class="middle-header">
<div class="container-fluid">
<breadcrumbs breadcrumbs="breadcrumbs"></breadcrumbs>
<alerts alerts="alerts"></alerts>
<div ng-if="!loaded" class="mar-top-xl">Loading...</div>
<div ng-if="loaded && error" class="empty-state-message text-center">
<h2>The secret details could not be loaded.</h2>
<p>{{error | getErrorDetails}}</p>
</div>
<div ng-if="loaded && !error">
<h1 class="contains-actions">
<div class="pull-right dropdown">
<!--
`canIAddToProject` returns true if you can update any resource.
We'll use this as a best-effort check to see if we should show the
button.
-->
<button ng-if="project.metadata.name | canIAddToProject"
type="button"
class="btn btn-default hidden-xs"
ng-disabled="!secret.data"
ng-click="addToApplication()">
Add to Application
</button>
<button type="button" class="dropdown-toggle btn btn-default actions-dropdown-btn hidden-xs" data-toggle="dropdown" ng-hide="!('secrets' | canIDoAny)">
Actions
<span class="caret"></span>
</button>
<!-- Check `canIAddToProject` for the mobile menu since "Add to Application" uses it. -->
<a href=""
ng-if="project.metadata.name | canIAddToProject"
class="dropdown-toggle actions-dropdown-kebab visible-xs-inline"
data-toggle="dropdown"><i class="fa fa-ellipsis-v" aria-hidden="true"></i><span class="sr-only">Actions</span></a>
<ul class="dropdown-menu dropdown-menu-right actions action-button">
<li ng-if="(project.metadata.name | canIAddToProject)" class="visible-xs">
<a href="" role="button" ng-class="{ 'disabled-link': !secret.data }" ng-attr-aria-disabled="{{!secret.data ? 'true' : undefined}}" ng-click="addToApplication()">Add to Application</a>
</li>
<li ng-if="'secrets' | canI : 'update'">
<a ng-href="{{secret | editYamlURL}}" role="button">Edit YAML</a>
</li>
<li ng-if="'secrets' | canI : 'delete'">
<delete-link
kind="Secret"
resource-name="{{secret.metadata.name}}"
project-name="{{secret.metadata.namespace}}"
alerts="alerts">
</delete-link>
</li>
</ul>
</div>
{{secret.metadata.name}}
<small class="meta">created <span am-time-ago="secret.metadata.creationTimestamp"></span></small>
</h1>
</div>
</div>
</div><!-- /middle-header-->
<div class="middle-content">
<div class="container-fluid">
<div ng-if="secret" class="row">
<div class="col-sm-12">
<div class="resource-details">
<h2 class="mar-top-none">
{{secret.type}}
<small class="mar-left-sm"><a href="" ng-if="secret.data" ng-click="view.showSecret = !view.showSecret">{{view.showSecret ? "Hide" : "Reveal"}} Secret</a></small>
</h2>
<dl class="secret-data left">
<div ng-repeat="(secretDataName, secretData) in decodedSecretData" class="image-source-item">
<div ng-switch="secretDataName">
<div ng-switch-when=".dockercfg">
<ng-include src=" 'views/_config-file-params.html' "></ng-include>
</div>
<div ng-switch-when=".dockerconfigjson">
<ng-include src=" 'views/_config-file-params.html' "></ng-include>
</div>
<div ng-switch-default>
<dt ng-attr-title="{{secretDataName}}">{{secretDataName}}</dt>
<dd ng-if="view.showSecret">
<copy-to-clipboard
clipboard-text="secretData"
multiline="secretData | isMultiline : true"
display-wide="true">
</copy-to-clipboard>
<div ng-if="decodedSecretData.$$nonprintable[secretDataName]" class="help-block">
This secret value contains non-printable characters and is displayed as a Base64-encoded string.
</div>
</dd>
<dd ng-if="!view.showSecret">*****</dd>
</div>
</div>
</div>
</dl>
<div ng-if="!secret.data" class="empty-state-message text-center">
<h2>No data.</h2>
<p>This secret has no data.</p>
</div>
<annotations annotations="secret.metadata.annotations"></annotations>
</div>
</div><!-- /col-* -->
</div>
</div>
<overlay-panel class="add-config-to-application" show-panel="addToApplicationVisible" show-close="true" handle-close="closeAddToApplication">
<add-config-to-application project="project" api-object="secret" on-cancel="closeAddToApplication" on-complete="closeAddToApplication"></add-config-to-application>
</overlay-panel>
</div><!-- /middle-content -->
</div>