Files
virtual-kubelet/vendor/github.com/vmware/vic/isos/vicadmin/auth.html
Loc Nguyen 513cebe7b7 VMware vSphere Integrated Containers provider (#206)
* Add Virtual Kubelet provider for VIC

Initial virtual kubelet provider for VMware VIC.  This provider currently
handles creating and starting of a pod VM via the VIC portlayer and persona
server.  Image store handling via the VIC persona server.  This provider
currently requires the feature/wolfpack branch of VIC.

* Added pod stop and delete.  Also added node capacity.

Added the ability to stop and delete pod VMs via VIC.  Also retrieve
node capacity information from the VCH.

* Cleanup and readme file

Some file clean up and added a Readme.md markdown file for the VIC
provider.

* Cleaned up errors, added function comments, moved operation code

1. Cleaned up error handling.  Set standard for creating errors.
2. Added method prototype comments for all interface functions.
3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder.

* Add mocking code and unit tests for podcache, podcreator, and podstarter

Used the unit test framework used in VIC to handle assertions in the provider's
unit test.  Mocking code generated using OSS project mockery, which is compatible
with the testify assertion framework.

* Vendored packages for the VIC provider

Requires feature/wolfpack branch of VIC and a few specific commit sha of
projects used within VIC.

* Implementation of POD Stopper and Deleter unit tests (#4)

* Updated files for initial PR
2018-06-04 15:41:32 -07:00

64 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html itemscope="" itemtype="http://schema.org/Organization" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>VCH Admin</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Styles -->
<link rel="stylesheet" href="css/clarity-ui.min.css">
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="body" class="page-community layout-community">
<div class="main-nav">
<header class="header">
<div class="branding">
<a href="http://www.vmware.com"><img src="images/vmw-logo.svg" class="logo"></a>
<span class="title">vSphere Integrated Containers</span>
</div>
<a role="button" class="github btn btn-primary" href="http://www.github.com/vmware/vic">
<i class="icon-github-circled" style="vertical-align: middle;"></i>
View on Github
</a>
</header>
</div>
<div class="main-container">
<main class="content-area">
<section>
<div class="row ">
<div class="col-md-6 center">
<div class="card card-block text-xs-center">
<h2 class="card-title">{{.Hostname}} Login</h2>
<h3 class="error-message"> {{.InvalidLogin}}</h3>
<form method="post">
<label for="username">vSphere or ESXi Username:</label>
<input type="text" name="username" autofocus><br />
<label for="password">vSphere or ESXi Password:</label>
<input type="password" name="password" autocomplete="off"><br /><br/>
<input type="submit" value="Log in">
</form>
</div>
<div class="card card-block text-xs-center">
<p class="card-text">Appliance System Time: {{.SystemTime}}</p>
</div>
</div>
</div>
</section>
</main>
</div>
</body>
</html>