-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwidgets.yaml
More file actions
34 lines (34 loc) · 928 Bytes
/
Copy pathwidgets.yaml
File metadata and controls
34 lines (34 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Widget CRs for the discovered-kind fixture (see 00-discovered-crd.yaml).
# One healthy, one failing — statuses are set in the manifest (the CRD has
# no status subresource), so readiness renders without a real controller.
apiVersion: example.com/v1
kind: Widget
metadata:
name: widget-healthy
namespace: flux-resources
labels: {app.kubernetes.io/managed-by: flux9s-dev}
spec:
size: large
status:
conditions:
- type: Ready
status: "True"
reason: Reconciled
message: Widget is operational
lastTransitionTime: "2026-07-16T00:00:00Z"
---
apiVersion: example.com/v1
kind: Widget
metadata:
name: widget-broken
namespace: flux-resources
labels: {app.kubernetes.io/managed-by: flux9s-dev}
spec:
size: small
status:
conditions:
- type: Ready
status: "False"
reason: ProcessingError
message: widget assembly failed
lastTransitionTime: "2026-07-16T00:00:00Z"