forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecret.html
85 lines (84 loc) · 4.01 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
<project-header class="top-header"></project-header>
<project-page>
<!-- Middle section -->
<div class="middle-section">
<div class="middle-container">
<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">
<h1>
<div class="pull-right dropdown" ng-hide="!('secrets' | canIDoAny)">
<button type="button" class="dropdown-toggle btn btn-default actions-dropdown-btn hidden-xs" data-toggle="dropdown">
Actions
<span class="caret"></span>
</button>
<a href=""
class="dropdown-toggle actions-dropdown-kebab visible-xs-inline"
data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i><span class="sr-only">Actions</span></a>
<ul class="dropdown-menu actions action-link">
<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-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>
<annotations annotations="secret.metadata.annotations"></annotations>
</div><!-- /col-* -->
</div>
</div>
</div><!-- /middle-content -->
</div><!-- /middle-container -->
</div><!-- /middle-section -->
</project-page>