17 lines
338 B
Nix
17 lines
338 B
Nix
{ pkgs, ... }:
|
|
let
|
|
identity = import ./initca.nix {
|
|
inherit pkgs;
|
|
name = "linkerd-identity-ca";
|
|
hosts = [ "identity.linkerd.cluster.local" ];
|
|
};
|
|
|
|
webhook = import ./initca.nix {
|
|
inherit pkgs;
|
|
name = "linkerd-webhook-ca";
|
|
hosts = [ "webhook.linkerd.cluster.local" ];
|
|
};
|
|
in {
|
|
inherit identity webhook;
|
|
}
|