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
Copy file name to clipboardExpand all lines: docs/learn/projects.md
+48-21Lines changed: 48 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,46 +5,57 @@ sidebar_position: 5
5
5
6
6
# Projects
7
7
8
-
The Projects feature in Headlamp allows you to group and manage Kubernetes resources across multiple clusters. A project combines one or more clusters under a single namespace, providing a unified view and management interface. This is particularly useful for teams working on multi-cluster deployments, as it enables easier resource organization and access control.
8
+
Headlamp Projects make Kubernetes easier to manage by grouping related resources into a single, application-centric view that is designed with developers in mind. Instead of navigating cluster-wide lists or searching for labels, Projects let you organize workloads across one or more namespaces and even multiple clusters into a logical group. This approach gives developers clarity on their application as a whole, making collaboration, troubleshooting, and onboarding much simpler.
9
9
10
-
By default, Headlamp provides a cluster-centric view of your Kubernetes resources. However, with Projects, you can shift to a namespace-centric perspective that spans multiple clusters. This allows you to see all resources associated with a specific project in one place, regardless of which cluster they reside in.
10
+
## Why Use Projects
11
+
12
+
Kubernetes applications often span multiple resources and namespaces, which can make management feel fragmented. Projects solve this by:
13
+
14
+
- Providing a cluster-scoped view of everything that belongs to your application
15
+
16
+
- Reducing complexity for developers and new users
17
+
18
+
- Supporting multi-cluster environments without extra configuration
19
+
20
+
- Respecting Kubernetes RBAC so users only see resources they have permission to access
21
+
22
+
Projects are built on native Kubernetes resources with no custom CRDs required. Headlamp adds a visual layer that brings these resources together, lowering the barrier to entry and making Kubernetes more approachable.
11
23
12
24
## Creating a Project
13
25
14
26
### Option 1: Create a Project in the UI
15
27
16
28
1. From the home dashboard, open **Projects**.
17
29
2. Click **Create Project**.
18
-
3. Fill in the required details:
30
+
3. Fill in these details:
19
31
20
32
-**Project Name** — A unique name for your project.
21
33
-**Cluster(s)** — Select one or more clusters to include.
22
34
-**Namespace** — Choose or create the namespace associated with this project.
23
35
24
-
4. Click **Create** to finalize setup.
36
+
4. Click **Create** to finalize.
25
37
26
38
Once created, the project appears in your list.
27
39
Selecting it opens a detailed view that includes tabs for **Overview**, **Resources**, **Access**, and **Map**.
You can also add resources to a project by importing a YAML configuration file. This associates existing clusters and resources into the project’s namespace.
34
-
Resources defined in your YAML file are added to the **project’s namespace** automatically.
47
+
You can also associate resources with a project by importing a YAML file:
35
48
36
49
1. In the **Create Project** dialog, select **From YAML**.
37
-
2. Fill in the required details:
50
+
2. Fill in these details:
38
51
39
52
-**Project Name** — A unique name for your project.
40
-
-**Cluster(s)** — Select a cluster to add resources to.
53
+
-**Cluster(s)** — Select one or more clusters to include.
41
54
42
-
3. Choose one of the following options:
43
-
-**Upload File** – Import a YAML file from your computer.
44
-
-**Use URL** – Paste a link to a hosted YAML file.
45
-
4. Click **Create** once the configuration loads.
55
+
3. Upload a file or paste a URL to a hosted YAML file.
56
+
4. Click **Create** to finalize.
46
57
47
-
Once created, your projects will be listed in the "Projects" section.
58
+

48
59
49
60
## Working with Projects
50
61
@@ -54,26 +65,42 @@ After creating a project, you can explore it using the available tabs in the Pro
Provides a high-level summary of the project — similar to a namespace view, but extended across multiple clusters.
58
-
Here you can see general information like labels, annotations, and linked clusters.
68
+
Teams often struggle to understand application context because labels, annotations, and cluster details are scattered across multiple views. The Overview tab solves this by providing a single, project-scoped snapshot that brings labels, annotations, linked clusters, and included namespaces together. This clarity helps teams align quickly and reduces time spent piecing information together.
Lists most of the same resources you’d see in a cluster view, scoped to your project namespace.
65
-
Some resource types may not appear (like Pods in certain cluster configurations).
66
-
This tab aggregates resources from all clusters associated with the project.
74
+
Finding the right resources across clusters and namespaces can be slow and error-prone when using cluster-wide views. The Resources tab eliminates this friction by listing deployments, pods, services, and other objects scoped to the project. Everything is aggregated across associated clusters, so developers can navigate faster and focus on the application instead of searching through unrelated data.
Displays and manages access controls for the project, similar to how you’d manage permissions within a namespace.
80
+
Managing permissions in Kubernetes can be confusing, and developers often do not know where they have access. The Access tab provides confidence and safety by showing who can interact with project resources. Headlamp respects Kubernetes RBAC, so users only see and manage what they are allowed to, reducing mistakes and improving security.
Shows a visual map of the resources within your project.
79
-
This view uses the same resource map as in cluster mode, but filters results to only display items belonging to your project namespace.
86
+
Understanding dependencies and relationships through lists alone is difficult, which slows troubleshooting and planning. The Map tab gives teams a visual representation of how resources within the project connect, such as services to pods and configurations. This makes it easier to spot broken links, missing dependencies, and unhealthy workloads, speeding up issue resolution and improving application reliability.
87
+
88
+
## Use Cases
89
+
90
+
### Multi-environment management
91
+
92
+
Teams often juggle development, test, and production with resources spread across clusters and namespaces, which leads to drift, mistakes, and slow handoffs. Projects give each environment a clear and scoped home so the team sees only what belongs to that environment. By grouping resources across namespaces and even clusters under a single project, you reduce confusion, prevent accidental changes in the wrong place, and create a shared context for releases and rollbacks.
93
+
94
+
### Developer onboarding
95
+
96
+
New developers usually face a wall of Kubernetes complexity with scattered views, YAML hunting, and uncertainty about where they have access. Projects provide an application centric space that shows only the resources that matter, while honoring Kubernetes RBAC so people see what they are allowed to work with. A lead can create a project in a few clicks, and a new developer can sign in, find the app, deploy changes, and monitor results without navigating cluster internals.
97
+
98
+
### Troubleshooting and monitoring
99
+
100
+
Triage slows down when logs, events, metrics, and relationships are spread across tools and cluster wide views. Projects scope operational data to the application boundary so teams can focus on relevant signals instead of sifting through noise. With resources, logs, events, metrics, and the map all filtered to the project, developers can spot broken links, understand dependencies, and resolve issues faster with greater confidence.
101
+
102
+
## Get Started Today
103
+
104
+
Headlamp Projects make Kubernetes simpler, and more application focused. Create a project, link the right namespaces, and give your team a clear, scoped space to collaborate and manage workloads without cluster-wide complexity.
105
+
106
+
Open Headlamp, select Projects, and start organizing your applications for faster onboarding, easier troubleshooting, and better team alignment.
0 commit comments