From 122bf5cf63e5e9a031667eb6edb784520ed77e2e Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Fri, 31 May 2024 17:47:56 -0300 Subject: [PATCH] add new k8s logo Signed-off-by: Marcos Lilljedahl --- handlers/www/k8s/landing.html | 277 ++++++++++++++++++++++------------ 1 file changed, 178 insertions(+), 99 deletions(-) diff --git a/handlers/www/k8s/landing.html b/handlers/www/k8s/landing.html index 7607492..4a41524 100644 --- a/handlers/www/k8s/landing.html +++ b/handlers/www/k8s/landing.html @@ -1,152 +1,231 @@ - - + - - - - + + + + Play with Kubernetes - + - + -
- +

Play with Kubernetes

-

A simple, interactive and fun playground to learn Kubernetes

+

+ A simple, interactive and fun playground to learn Kubernetes +

-
-

Start

- - - +

+ Start +

+ + +
-

Play with Kubernetes is a labs site provided by Docker and created by Tutorius. Play with Kubernetes is a playground which allows users to run K8s clusters in a matter of seconds. It gives the experience of having a free Alpine Linux Virtual Machine in browser. Under the hood Docker-in-Docker (DinD) is used to give the effect of multiple VMs/PCs.

-

If you want to learn more about Kubernetes, consider the Play with Kubernetes Classroom which provides more directed learning using an integrated Play with Kubernetes commandline.

+

+ Play with Kubernetes is a labs site provided by + Docker and created by Tutorius. + Play with Kubernetes is a playground which allows users to run K8s + clusters in a matter of seconds. It gives the experience of having a + free Alpine Linux Virtual Machine in browser. Under the hood + Docker-in-Docker (DinD) is used to give the effect of multiple + VMs/PCs. +

+

+ If you want to learn more about Kubernetes, consider the + Play with Kubernetes Classroom + which provides more directed learning using an integrated Play with + Kubernetes commandline. +

© Play with Kubernetes 2017 - 2023

-
- - - + + + + var stack = getParameterByName("stack"); + if (stack) { + document.getElementById("stack").value = stack; + } + var stackName = getParameterByName("stack_name"); + if (stackName) { + document.getElementById("stack_name").value = stackName; + } + var imageName = getParameterByName("image_name"); + if (imageName) { + document.getElementById("image_name").value = imageName; + } + document.getElementById("landingForm").submit(); + }; + }, + ]); + -