Boolean
The boolean column type renders true/false values as friendly yes/no text in tables and cards. Use it for readiness, feature flags, or any binary state.
Example
boolean-example.yamlapiVersion: mission-control.flanksource.com/v1
kind: View
metadata:
name: readiness-checks
namespace: default
spec:
description: Example view that renders a boolean column for readiness
display:
title: Component Readiness
icon: status
queries:
components:
configs:
search: "@order=name"
types:
- Kubernetes::Deployment
columns:
- name: id
type: string
primaryKey: true
hidden: true
- name: name
type: string
- name: ready
type: boolean
description: Indicates whether the deployment is reporting ready
If you enable filter.type: multiselect on a boolean column, Mission Control builds the options from the cached table so users can quickly include or exclude rows by state without triggering a view refresh.