34 lines
715 B
HTML
34 lines
715 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ingress Migrator</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Ingress Migrator</h1>
|
|
|
|
<div class="card">
|
|
<form method="post" class="form-grid">
|
|
<div class="field">
|
|
<label>From ingressClass</label>
|
|
<input name="from_class" value="nginx">
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label>To ingressClass</label>
|
|
<input name="to_class" value="haproxy">
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label>Namespace (optional)</label>
|
|
<input name="namespace">
|
|
</div>
|
|
|
|
<button type="submit">Run Migration</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|