Add Argo Workflows
This commit is contained in:
parent
fd0a7e2cee
commit
7831696834
3 changed files with 61 additions and 0 deletions
|
@ -26,5 +26,6 @@
|
||||||
./traefik.nix
|
./traefik.nix
|
||||||
./blog.nix
|
./blog.nix
|
||||||
./atticd.nix
|
./atticd.nix
|
||||||
|
./argo.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
55
kubenix-modules/argo.nix
Normal file
55
kubenix-modules/argo.nix
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
kubernetes.resources = {
|
||||||
|
ingresses.argo-workflows = {
|
||||||
|
metadata.annotations = {
|
||||||
|
"cert-manager.io/cluster-issuer" = "letsencrypt";
|
||||||
|
"traefik.ingress.kubernetes.io/router.entrypoints" = "localsecure";
|
||||||
|
};
|
||||||
|
|
||||||
|
spec = {
|
||||||
|
ingressClassName = "traefik";
|
||||||
|
|
||||||
|
rules = [{
|
||||||
|
host = "workflows.kun.is";
|
||||||
|
|
||||||
|
http.paths = [{
|
||||||
|
path = "/";
|
||||||
|
pathType = "Prefix";
|
||||||
|
|
||||||
|
backend.service = {
|
||||||
|
name = "argo-workflows-server";
|
||||||
|
port.number = 2746;
|
||||||
|
};
|
||||||
|
}];
|
||||||
|
}];
|
||||||
|
|
||||||
|
tls = [{
|
||||||
|
secretName = "argo-workflows-tls";
|
||||||
|
hosts = [ "workflows.kun.is" ];
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
clusterRoles.argo-admin.rules = [{
|
||||||
|
apiGroups = [ "argoproj.io" ];
|
||||||
|
verbs = [ "*" ];
|
||||||
|
resources = [ "*" ];
|
||||||
|
}];
|
||||||
|
|
||||||
|
serviceAccounts.argo-admin = { };
|
||||||
|
|
||||||
|
clusterRoleBindings.argo-admin = {
|
||||||
|
subjects = [{
|
||||||
|
kind = "ServiceAccount";
|
||||||
|
name = "argo-admin";
|
||||||
|
namespace = "default";
|
||||||
|
}];
|
||||||
|
|
||||||
|
roleRef = {
|
||||||
|
kind = "ClusterRole";
|
||||||
|
name = "argo-admin";
|
||||||
|
apiGroup = "rbac.authorization.k8s.io";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -35,6 +35,11 @@
|
||||||
chart = nixhelm.chartsDerivations.${system}.jetstack.cert-manager;
|
chart = nixhelm.chartsDerivations.${system}.jetstack.cert-manager;
|
||||||
includeCRDs = false;
|
includeCRDs = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
argo-workflows = {
|
||||||
|
chart = nixhelm.chartsDerivations.${system}.argoproj.argo-workflows;
|
||||||
|
includeCRDs = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue