Some checks failed
CI / build (push) Failing after 12s
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
25 lines
623 B
Jsonnet
25 lines
623 B
Jsonnet
local base = import "k8s/configs/base.libsonnet";
|
|
local certManager = import "k8s/configs/templates/core/security/cert-manager.libsonnet";
|
|
|
|
local namespace = "cert-manager";
|
|
local ctx = base.NewContext(base.helm);
|
|
|
|
{
|
|
namespace: {
|
|
apiVersion: "v1",
|
|
kind: "Namespace",
|
|
metadata: {
|
|
name: namespace,
|
|
},
|
|
},
|
|
apps: {
|
|
certManager: certManager.App(certManager.Params {
|
|
namespace: namespace,
|
|
name: "cert-manager",
|
|
context: ctx,
|
|
values: {
|
|
# Add any specific values here
|
|
},
|
|
}),
|
|
},
|
|
}
|