Files
bank-of-holos/structures.schema.cue
Jeff McCune d3500fa5e5 bank: refactor bank-secrets to namespaces
Organize the project into multiple namespaces.  Introduce a new informal
structural concept of a stack.  The Bank of Holos stack is managed using
multiple projects because projects are a security boundary.
2024-12-02 15:03:05 -08:00

10 lines
273 B
CUE

package holos
// #NamedObjects represents a collection of objects useful primarily to get a
// handle on the name of some resource.
#NamedObjects: [NAME=string]: {
metadata: name: NAME
metadata: labels?: [string]: string
metadata: annotations?: [string]: string
}