You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple example showing how Kubernetes applications can be managed using kpt. Users can customize the app via configuration files instead of changing code.
3
+
This is a simple e-commerce application example packaged using **kpt**.
5
4
6
-
## Structure
7
-
-`deployment.yaml` → Application Deployment
8
-
-`service.yaml` → Service to expose the app
9
-
-`Kptfile` → kpt package metadata
5
+
---
10
6
11
-
## Deployment
12
-
Apply the Kubernetes resources:
7
+
## 📌 Overview
13
8
9
+
This project demonstrates how Kubernetes applications can be managed and customized using the **kpt toolchain**.
10
+
11
+
Instead of modifying code, users can change configuration using YAML files.
12
+
13
+
---
14
+
15
+
## 🚀 Features
16
+
17
+
- Simple Kubernetes Deployment using **nginx** (version pinned for reproducibility)
18
+
- Service to expose the application internally
19
+
- Easy-to-understand structure for beginners
20
+
- Ready to extend with custom configuration
21
+
22
+
---
23
+
24
+
## 📂 Structure
25
+
26
+
-`deployment.yaml` → Defines the application Deployment
27
+
-`service.yaml` → Exposes the application via a Service
0 commit comments