You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
7 years ago
|
local params = std.extVar("__ksonnet/params");
|
||
|
local globals = import "globals.libsonnet";
|
||
|
local envParams = params + {
|
||
|
components +: {
|
||
|
// Insert component parameter overrides here. Ex:
|
||
|
// guestbook +: {
|
||
|
// name: "guestbook-dev",
|
||
|
// replicas: params.global.replicas,
|
||
|
// },
|
||
|
},
|
||
|
};
|
||
|
|
||
|
{
|
||
|
components: {
|
||
|
[x]: envParams.components[x] + globals, for x in std.objectFields(envParams.components)
|
||
|
},
|
||
|
}
|