mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-04 01:56:53 +00:00
- set default labels and annotations - fix the service monitor selector - allow setting ingress annotations - remove embedded cert - add cert-manager example for ingress - set CPU scaling as default in HPA - rename app input to config - rename app out to objects Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
13 lines
156 B
CUE
13 lines
156 B
CUE
package main
|
|
|
|
import (
|
|
"tool/cli"
|
|
"encoding/yaml"
|
|
)
|
|
|
|
command: gen: {
|
|
task: print: cli.Print & {
|
|
text: yaml.MarshalStream([ for x in objects {x}])
|
|
}
|
|
}
|