68 lines
1.1 KiB
HTML
68 lines
1.1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Gen-iTech CI/CD Demo</title>
|
||
|
|
<style>
|
||
|
|
body{
|
||
|
|
background:#0f172a;
|
||
|
|
color:white;
|
||
|
|
font-family:Arial;
|
||
|
|
display:flex;
|
||
|
|
justify-content:center;
|
||
|
|
align-items:center;
|
||
|
|
height:100vh;
|
||
|
|
margin:0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.card{
|
||
|
|
text-align:center;
|
||
|
|
background:#1e293b;
|
||
|
|
padding:50px;
|
||
|
|
border-radius:15px;
|
||
|
|
box-shadow:0 0 20px rgba(0,0,0,.4);
|
||
|
|
}
|
||
|
|
|
||
|
|
h1{
|
||
|
|
color:#22c55e;
|
||
|
|
font-size:48px;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2{
|
||
|
|
color:#38bdf8;
|
||
|
|
}
|
||
|
|
|
||
|
|
p{
|
||
|
|
font-size:20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer{
|
||
|
|
margin-top:30px;
|
||
|
|
color:#94a3b8;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<div class="card">
|
||
|
|
|
||
|
|
<h1>🚀 Gen-iTech CI/CD Test</h1>
|
||
|
|
|
||
|
|
<h2>Helm Chart + Argo CD Deployment</h2>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
Application deployed successfully using
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
<strong>Gitea → Jenkins → Harbor → Argo CD → Kubernetes</strong>
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div class="footer">
|
||
|
|
Version 1.0
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|