From 8a927a7edb78cfe37d12da0393b38b8d0879efcc Mon Sep 17 00:00:00 2001 From: Joerg Schad Date: Mon, 11 Mar 2019 14:06:23 -0700 Subject: [PATCH] Added links to the main GH repo. (#148) --- site/content/_index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/site/content/_index.md b/site/content/_index.md index be5d6bded..d4f5ea3f6 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -5,7 +5,7 @@ type: docs ## What is KUDO? -Kubernetes Universal Declarative Operator (KUDO) provides a declarative approach to building production-grade Kubernetes Operators covering the entire application lifecycle. An operator is a way to package and manage a Kubernetes application using Kubernetes APIs. Building an Operator usually involves implementing a [custom resource and controller](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/), which typically requires thousands of lines of code and a deep understanding of Kubernetes. KUDO instead provides a universal controller that can be configured via a declarative spec (YAML files) to operate any workload. +[Kubernetes Universal Declarative Operator (KUDO)](https://github.com/kudobuilder/kudo) provides a declarative approach to building production-grade Kubernetes Operators covering the entire application lifecycle. An operator is a way to package and manage a Kubernetes application using Kubernetes APIs. Building an Operator usually involves implementing a [custom resource and controller](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/), which typically requires thousands of lines of code and a deep understanding of Kubernetes. KUDO instead provides a universal controller that can be configured via a declarative spec (YAML files) to operate any workload. KUDO-based Operators don't require any code in most cases, which significantly accelerates the development of Operators. It also eliminates sources of error and code duplication. @@ -14,3 +14,7 @@ KUDO-based Operators don't require any code in most cases, which significantly a When you need more than just `kubectl apply -f` to run your application. When you want to provide application lifecycle scripts to application operators, but don’t want to provide scripts/documentation for them to follow. When you don’t want to write your own operator. + +## Where can I learn more about KUDO? + + Please take a look at the [github repo](https://github.com/kudobuilder/kudo) and connect to the community using [Slack](https://kubernetes.slack.com/messages/kudo/) or [Mailing List](https://groups.google.com/d/forum/kudobuilder).