-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (53 loc) · 1.88 KB
/
index.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
<html>
<head>
<title>Docker Credentials converter</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="docker-credentials.js"></script>
<script type="text/javascript" src="glue.js"></script>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="UTF-8">
<meta name="description" content="Convert real-time between docker registry
credentials, config.json and kubernetes secret yaml.">
<meta name="keywords" content="Kubernetes, Docker, Registry, Authentication,
Credentials, Secrets, ImagePullSecret, Private Registry, Converter,
config.json">
<meta name="author" content="Polyverse Corporation">
</head>
<body>
<h1><center>Registry creds <-> config.json <-> Kubernetes Secret YAML</center></h1>
<hr/>
<table>
<thead>
<tr>
<th>Docker Registry Credentials</th>
<th>Docker config.json</th>
<th>Kubernetes Secret YAML</th>
</tr>
<thead>
<tbody>
<tr>
<td style="vertical-align: top;">
<table>
<thead>
<tr>
<th>Registry</th>
<th>Username</th>
<th>Password</th>
<th>Email</th>
<th></th>
</tr>
</thead>
<tbody id="credsrowsholder">
</tbody>
</table>
<input type="button" value="Add Credential" id="addcredrow"></input>
</td>
<td><textarea id="configjson" rows="25" cols="50"></textarea></td>
<td><textarea id="imagepullsecret" rows="25" cols="50"></textarea></td>
</tr>
</tbody>
</table>
<hr/>
<span class="footer"><a href="https://github.com/polyverse/docker-creds-converter">Source code on Github</a> under <a href="https://github.com/polyverse/docker-creds-converter/blob/master/LICENSE">Apache 2.0 license</a>.</span>
</body>
</html>