forked from kubernetes-sigs/headlamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
People put labels on things, and it would be good to use the labels.
Describe the solution you'd like
filtering with labels.
- filtering by labels in list view
What users will benefit from this feature?
All the people who use labels. I think lots of people use labels (most?).
Additional context
- Requested in a slack thread.
- This is one of the top requested features for Kubernetes dashboard: Allow the user to search for labels kubernetes-retired/dashboard#3160
- This was also requested by a user in person.
Similar to kubectl (see here for reference).
For example, here's a manifest for a Pod that has two labels environment: production and app: nginx:
apiVersion: v1
kind: Pod
metadata:
name: label-demo
labels:
environment: production
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80kubectl get pods -l environment=production
Reactions are currently unavailable