mirror of
https://github.com/outbackdingo/bank-of-holos.git
synced 2026-01-27 10:18:27 +00:00
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.
10 lines
273 B
CUE
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
|
|
}
|