Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
2.7 KiB
HTML
Raw Permalink Normal View History

{{ define "hero" }}
{{ partial "hero" (dict "title" "Convert Your Kubernetes YAML to Pulumi") }}
<section class="mx-auto px-4 py-8 lg:p-16">
<p class="text-center mt-4 mb-16 max-w-3xl text-xl text-gray-800 mx-auto">
If you already have some Kubernetes YAML and want to see what it would look like in your favorite language, we've got you covered. This conversion tool will do the
magic of translating your YAML into modern code using Pulumi.
</p>
2021-05-27 15:46:18 -07:00
<div class="container container-2xl mx-auto">
{{ partial "convert" (dict "from" "kube" "examples" .Params.examples) }}
</div>
</section>
{{ end }}
{{ define "main" }}
{{ partial "get-started.html" . }}
2021-04-27 12:09:07 -07:00
<section class="py-16 px-4">
<div class="container mx-auto max-w-5xl md:flex my-8 align-top justify-center text-center">
<div class="md:w3-/12 mr-4">
<h2>Learn More</h2>
<p class="text-xl">
Pulumi is a universal infrastructure as code platform that supports many clouds and many languages. It supports any Terraform provider in addition to great
native providers like Kubernetes.
</p>
<div class="md:flex mx-auto max-w-5xl mb-8 pt-8 text-center">
<div class="md:w-1/2 p-4">
<img class="inline-block w-24 mb-4" src="/icons/icon-why-dev-lang.svg" />
<h4 class="mt-2 text-3xl">Pulumi + Kubernetes</h4>
<p class="text-gray-600 mb-8">
Pulumi is a comprehensive infrastructure as code platform. Instead of using proprietary DSLs, you can use the industry's best languages and tools, with
real sharing and reuse.
</p>
<a class="btn-primary" href="{{ relref . "/topics/kubernetes.md" }}"> Learn more </a>
</div>
<div class="md:w-1/2 p-4">
<img class="inline-block w-24 mb-4" src="/icons/icon-why-dev-model.svg" />
<h4 class="mt-2">Check Out the Tool</h4>
<p class="text-gray-600 mb-8">
2022-07-11 21:14:15 +02:00
The tool that powers this webpage is called <span class="font-mono">kube2pulumi</span>. It's
<a href="https://github.com/pulumi/kube2pulumi">open source</a> and you can download it to tackle more complex conversions.
</p>
<a class="btn-secondary" href="https://github.com/pulumi/kube2pulumi"> Get it now </a>
</div>
</div>
</div>
</div>
</section>
{{ partial "hand-raise-section" . }}
{{ end }}