9 lines
233 B
Jsonnet
9 lines
233 B
Jsonnet
|
|
local kube = import "k8s/configs/base.libsonnet";
|
||
|
|
|
||
|
|
{
|
||
|
|
annotations(filePath, templatePath): {
|
||
|
|
"infra.workspacePath": kube.asWorkspacePath(filePath),
|
||
|
|
"infra.templates.workspacePath": kube.asWorkspacePath(templatePath),
|
||
|
|
},
|
||
|
|
}
|