2020-10-08 10:51:50 -07:00
{{ define "hero" }}
2021-04-20 00:37:26 -07:00
{{ 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" >
2022-06-01 10:58:20 -07:00
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
2021-04-20 00:37:26 -07:00
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" >
2020-10-08 10:51:50 -07:00
{{ partial "convert" (dict "from" "kube" "examples" .Params.examples) }}
< / div >
< / section >
{{ end }}
{{ define "main" }}
{{ partial "get-started.html" . }}
2022-06-01 10:58:20 -07:00
2021-04-27 12:09:07 -07:00
< section class = "py-16 px-4" >
2020-10-08 10:51:50 -07:00
< 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" >
2022-06-01 10:58:20 -07:00
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.
2020-10-08 10:51:50 -07:00
< / p >
2021-04-20 00:37:26 -07:00
< div class = "md:flex mx-auto max-w-5xl mb-8 pt-8 text-center" >
2020-10-08 10:51:50 -07:00
< div class = "md:w-1/2 p-4" >
2022-06-01 10:58:20 -07:00
< img class = "inline-block w-24 mb-4" src = "/icons/icon-why-dev-lang.svg" / >
< h4 class = "mt-2 text-3xl" > Pulumi + Kubernetes< / h4 >
2020-10-08 10:51:50 -07:00
< p class = "text-gray-600 mb-8" >
2022-06-01 10:58:20 -07:00
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.
2020-10-08 10:51:50 -07:00
< / p >
2022-06-01 10:58:20 -07:00
< a class = "btn-primary" href = "{{ relref . " / topics / kubernetes . md " } } " > Learn more < / a >
2020-10-08 10:51:50 -07:00
< / div >
< div class = "md:w-1/2 p-4" >
2022-06-01 10:58:20 -07:00
< img class = "inline-block w-24 mb-4" src = "/icons/icon-why-dev-model.svg" / >
< h4 class = "mt-2" > Check Out the Tool< / h4 >
2020-10-08 10:51:50 -07:00
< 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
2022-06-01 10:58:20 -07:00
< a href = "https://github.com/pulumi/kube2pulumi" > open source< / a > and you can download it to tackle more complex conversions.
2020-10-08 10:51:50 -07:00
< / p >
2022-06-01 10:58:20 -07:00
< a class = "btn-secondary" href = "https://github.com/pulumi/kube2pulumi" > Get it now < / a >
2020-10-08 10:51:50 -07:00
< / div >
< / div >
< / div >
< / div >
< / section >
2021-07-28 07:49:15 -07:00
{{ partial "hand-raise-section" . }}
2020-10-08 10:51:50 -07:00
{{ end }}