Skip to content

Commit 9f43eb8

Browse files
author
Nanci Lancaster
authored
Merge branch 'vmware-tanzu:develop' into develop
2 parents 06d54ab + 0f819b4 commit 9f43eb8

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: "Breaking Tradition: The Future of Package Management with Kubernetes"
3+
slug: kubecon-na21-keynote-blog
4+
date: 2021-10-14
5+
author: Vibhas Kumar
6+
excerpt: "Hello KubeCon attendees! We were thrilled to share Carvel on the keynote stage..."
7+
image: /img/logo.svg
8+
tags: ['Vibhas']
9+
---
10+
11+
Hello, KubeCon + CloudNativeCon attendees! We were thrilled to share [Carvel on the keynote stage](https://sched.co/ocSC) with you all. This blog post will help you learn more and get started with the Carvel tool suiteCarvel’s package manager, kapp-controller.
12+
13+
## The Future of Package Management
14+
15+
Package management on Kubernetes should be simple and without any thorns. Earlier this year we introduced [kapp-controller](/kapp-controller/) as a package manager for Kubernetes focusing on the following two key principles:
16+
17+
* Leveraging declarative APIs so users can focus on their desired state and let the system get them there. This also enables easy updates to the software by just updating configuration files and letting Kubernetes do what it does best in reconciling the state.
18+
19+
* Using immutable bundles of software distributed using OCI registries so that the users know exactly what is running on their cluster and can reproduce the state of a cluster at will. These bundles can also be relocated and deployed in an air-gapped environment.
20+
21+
If you want to learn more about why we created a package manager for Kubernetes, check out our [blog post](/blog/introduction-to-carvel-package-manager-for-kubernetes/) covering this topic.
22+
23+
## When and how would I use kapp-controller?
24+
25+
We built the package manager, kapp-controller, with a **layered approach** in mind so that the users can use the right abstraction depending on their use case. There are a few different use cases you can find yourself in:
26+
27+
1. As a developer, you have developed software that you would like to deploy to a Kubernetes cluster for your own use and keep it updated.
28+
> - You can use the [App CR (Custom Resource)](/kapp-controller/docs/latest/app-spec/) that provides a lightweight and flexible way for you to deploy your own software to Kubernetes.
29+
30+
2. As a cluster operator , you have a collection of different versioned software that you would like to offer to your development teams so that they can easily discover, choose and install on their cluster.
31+
> - We built the [kapp-controller's package management APIs](/kapp-controller/docs/latest/packaging/) that are built on top of App CR to address this so that you can package your software, distribute it, and make it discoverable to your users.
32+
33+
3. As a developer, you want to deploy a package on your cluster that is authored by someone else.
34+
> - You can use the package management APIs to simply add a package repository (collection of packages) authored by someone else, discover and install the package that you want.
35+
36+
In the keynote demo, we used the App CR to deploy our Kubernetes application and used a Git reference as the source for fetching so that our application can stay up to date with the changes in the Git repository. Since our application required Contour’s HTTPProxy, we installed an open-source Contour package that was authored by the community. We were able to do that by just adding a package repository to the cluster and choosing a package and its version to install without caring about its internal details.
37+
38+
## How do I learn more and get started?
39+
40+
We recommend that you get started using the below resources. For any more information, our [kapp-controller overview page](/kapp-controller/) is the right place for you.
41+
42+
* [Install your software with App CR and keep it updated](/kapp-controller/docs/latest/walkthrough/)
43+
* [Install your first package from an OSS Package Repository](/kapp-controller/docs/latest/package-consumption/)
44+
* [Create your first package to distribute it to your users](/kapp-controller/docs/latest/package-authoring/)
45+
46+
## Join us on Slack and GitHub
47+
48+
We are excited about this new adventure and we want to hear from you and learn with you. Here are several ways you can get involved:
49+
50+
* Join Carvel's slack channel, [#carvel in Kubernetes]({{% named_link_url "slack_url" %}}) workspace, and connect with over 900+ Carvel users.
51+
* Find us on [GitHub](https://github.com/vmware-tanzu/carvel). Suggest how we can improve the project, the docs, or share any other feedback.
52+
* Attend our Community Meetings, happening every Thursday at 10:30am PT / 1:30pm ET. Check out the [Community page](/community/) for full details on how to attend.
53+
54+
We look forward to hearing from you and hope you join us in building a strong packaging and distribution story for applications on Kubernetes!

site/netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ HUGO_ENABLEGITINFO = "true"
5555

5656
[[redirects]]
5757
from = "https://carvel.dev/kubecon"
58-
to = "https://carvel.dev/kapp-controller"
58+
to = "https://carvel.dev/blog/kubecon-na21-keynote-blog/"
5959
status = 302
6060
force = true

0 commit comments

Comments
 (0)