128 lines
2.7 KiB
Markdown
128 lines
2.7 KiB
Markdown
---
|
|
# You can also start simply with 'default'
|
|
theme: seriph
|
|
# random image from a curated Unsplash collection by Anthony
|
|
# like them? see https://unsplash.com/collections/94734566/slidev
|
|
background: https://cover.sli.dev
|
|
# some information about your slides (markdown enabled)
|
|
title: Minimal Viable Kubernetes
|
|
info: |
|
|
## MVK
|
|
Kubernetes for minimalists.
|
|
|
|
Learn more at [mvk.headshed.dev](https://mvk.headshed.dev)
|
|
# apply unocss classes to the current slide
|
|
class: text-center
|
|
# https://sli.dev/features/drawing
|
|
drawings:
|
|
persist: false
|
|
# slide transition: https://sli.dev/guide/animations.html#slide-transitions
|
|
transition: slide-left
|
|
# enable MDC Syntax: https://sli.dev/features/mdc
|
|
mdc: true
|
|
# open graph
|
|
seoMeta:
|
|
# By default, Slidev will use ./og-image.png if it exists,
|
|
# or generate one from the first slide if not found.
|
|
ogImage: auto
|
|
# ogImage: https://cover.sli.dev
|
|
---
|
|
|
|
# Minimal Viable Kubernetes
|
|
|
|
Kubernetes for the impatient and impoverished
|
|
|
|
Jon Brookes 2025
|
|
|
|
[https://headshed.dev/n25](https://headshed.dev/n25)
|
|
|
|
<div @click="$slidev.nav.next" class="mt-12 py-1" hover:bg="white op-10">
|
|
Press Space for next page <carbon:arrow-right />
|
|
</div>
|
|
|
|
<div class="abs-br m-6 text-xl">
|
|
<button @click="$slidev.nav.openInEditor()" title="Open in Editor" class="slidev-icon-btn">
|
|
<carbon:edit />
|
|
</button>
|
|
<a href="https://codeberg.org/marshyon/n25.git" target="_blank" class="slidev-icon-btn">
|
|
<carbon:logo-github />
|
|
</a>
|
|
</div>
|
|
|
|
<!--
|
|
This is an introduction to Minimal Viable Kubernetes (MVK). What it is, why it is and tooling around it.
|
|
-->
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/intro-slide.md
|
|
---
|
|
|
|
<!--
|
|
You can have `style` tag in markdown to override the style for the current page.
|
|
Learn more: https://sli.dev/features/slide-scope-style
|
|
-->
|
|
|
|
<style>
|
|
h1 {
|
|
background-color: #2B90B6;
|
|
background-image: linear-gradient(45deg, #4EC5D4 10%, #146b8c 20%);
|
|
background-size: 100%;
|
|
-webkit-background-clip: text;
|
|
-moz-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
-moz-text-fill-color: transparent;
|
|
}
|
|
</style>
|
|
|
|
<!--
|
|
Here is another comment.
|
|
-->
|
|
|
|
---
|
|
src: ./pages/config-slide.md
|
|
---
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/plugins-slide.md
|
|
---
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/usage-slide.md
|
|
---
|
|
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/run-slide.md
|
|
---
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/diagram.md
|
|
---
|
|
|
|
---
|
|
transition: fade-out
|
|
src: ./pages/infctl-summary.md
|
|
---
|
|
|
|
|
|
|
|
|
|
---
|
|
layout: center
|
|
class: text-center
|
|
---
|
|
|
|
<img class="w-32 h-32 mx-auto" alt="qr code for https://headshed.dev/n25/" src="/n25-qr.png">
|
|
|
|
[Documentation](https://mvk.headshed.dev) · [GitHub](https://codeberg.org/headshed/infctl-cli)
|
|
|
|
#### Jon Brookes
|
|
|
|
[https://headshed.dev/n25/](https://headshed.dev/n25/)
|
|
|
|
<PoweredBySlidev mt-10 />
|