-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (61 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
80 lines (61 loc) · 1.67 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Kubernetes Native Java</title>
</head>
<body>
<div class="splash">
<h1> Hello, <EM>Kubernetes Native Java</EM>! </h1>
<PRE><CODE>
---
apiVersion: v1
kind: Greeting
metadata:
name: greeting
spec:
message: "Hello, world!"
</CODE></PRE>
<P><a href="https://twitter.com/starbuxman">I</a> love <a href="https://twitter.com/SpringBoot">Spring Boot</a>.
It is one of the most productive ways to build applications intended for <strong>production</strong>.
</P>
<P> I <EM>love</EM> production. <EM>You </EM> should love production.
Production is the happiest place on Earth! It's better than Disneyland. And for most folks these days, <a href="https://twitter.com/KubernetesIO">Kubernetes</a> <EM>is</EM> production.
Join me, and we'll look at ways to write software intended for production.
</p>
<P>
Follow <a href="https://twitter.com/k8s_native_Java">@k8s_native_java</a> for more!
</p>
</div>
<img src="spring-k8s.png" class ="bg" />
<style type="text/css">
* {
font-family: sans-serif;
line-height: 1.3em;
}
code {
font-family: monospace;
}
a {
color : black ;
}
body {
display: grid;
grid-template-columns: 10vw auto 10vw;
grid-template-rows: 5vh auto auto ;
}
.bg {
z-index: -10;
grid-column: 2 ;
grid-row: 3 ;
width : 100%;
justify-content: center;
}
.splash {
grid-column: 2;
grid-row: 2;
}
</style>
</body>
</html>