mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-25 19:07:18 +00:00
15 lines
323 B
Text
15 lines
323 B
Text
local params = std.extVar("__ksonnet/params");
|
|
local globals = import "globals.libsonnet";
|
|
local envParams = params + {
|
|
components +: {
|
|
"guestbook-ui" +: {
|
|
type: "LoadBalancer",
|
|
},
|
|
},
|
|
};
|
|
|
|
{
|
|
components: {
|
|
[x]: envParams.components[x] + globals, for x in std.objectFields(envParams.components)
|
|
},
|
|
}
|