Skip to main content
configmap.yaml1.2 KB
View on GitHub
apiVersion: v1
kind: ConfigMap
metadata:
name: custom-html
namespace: default
data:
index.html: |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rickroll</title>
<style>
body, html {
font-family: 'Optimistic Text', -apple-system, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
margin: 0;
padding: 0;
height: 100%;
width: 100%;
background: #030711;
color: #ccc;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
iframe {
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<h1>Brought to you by Atmos</h1>
<iframe src="https://player.vimeo.com/video/375468729?h=d063a6fe74" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</body>
</html>