mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
7 lines
292 B
Text
7 lines
292 B
Text
local base = import "../base.libsonnet";
|
|
local k = import "k.libsonnet";
|
|
|
|
base + {
|
|
// Insert user-specified overrides here. For example if a component is named "nginx-deployment", you might have something like:
|
|
// "nginx-deployment"+: k.deployment.mixin.metadata.labels({foo: "bar"})
|
|
}
|