mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-10 04:56:49 +00:00
28 lines
445 B
CUE
28 lines
445 B
CUE
package main
|
|
|
|
import (
|
|
podinfo "github.com/stefanprodan/podinfo/cue/podinfo"
|
|
)
|
|
|
|
resources: (podinfo.#Application & {
|
|
input: {
|
|
meta: {
|
|
name: "podinfo"
|
|
annotations: {
|
|
"app.kubernetes.io/part-of": "podinfo"
|
|
}
|
|
}
|
|
image: {
|
|
repository: "ghcr.io/stefanprodan/podinfo"
|
|
tag: "6.1.2"
|
|
}
|
|
resources: requests: cpu: "100m"
|
|
hpa: {
|
|
enabled: true
|
|
minReplicas: 2
|
|
maxReplicas: 4
|
|
cpu: 99
|
|
}
|
|
}
|
|
}).out
|