feat(syncthing): Only expose on tailnet
This commit is contained in:
parent
6f3a7a3c44
commit
8fc6961362
1 changed files with 20 additions and 10 deletions
|
@ -1,15 +1,29 @@
|
||||||
{
|
{
|
||||||
kubernetes.resources = {
|
kubernetes.resources = {
|
||||||
|
serviceAccounts.syncthing = { };
|
||||||
|
|
||||||
deployments.syncthing.spec = {
|
deployments.syncthing.spec = {
|
||||||
selector.matchLabels.app = "syncthing";
|
selector.matchLabels.app = "syncthing";
|
||||||
|
|
||||||
|
strategy = {
|
||||||
|
type = "RollingUpdate";
|
||||||
|
|
||||||
|
rollingUpdate = {
|
||||||
|
maxSurge = 0;
|
||||||
|
maxUnavailable = 1;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
template = {
|
template = {
|
||||||
metadata.labels.app = "syncthing";
|
metadata.labels.app = "syncthing";
|
||||||
|
|
||||||
spec = {
|
spec = {
|
||||||
|
serviceAccountName = "syncthing";
|
||||||
|
|
||||||
containers.syncthing = {
|
containers.syncthing = {
|
||||||
image = "lscr.io/linuxserver/syncthing:1.23.6";
|
image = "lscr.io/linuxserver/syncthing:1.23.6";
|
||||||
ports.web.containerPort = 8384;
|
ports.web.containerPort = 8384;
|
||||||
|
imagePullPolicy = "Always";
|
||||||
|
|
||||||
env = {
|
env = {
|
||||||
PUID.value = "33";
|
PUID.value = "33";
|
||||||
|
@ -60,19 +74,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
lab = {
|
lab = {
|
||||||
ingresses.syncthing = {
|
|
||||||
host = "sync.kun.is";
|
|
||||||
entrypoint = "localsecure";
|
|
||||||
|
|
||||||
service = {
|
|
||||||
name = "syncthing";
|
|
||||||
portName = "web";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
longhorn.persistentVolumeClaim.config = {
|
longhorn.persistentVolumeClaim.config = {
|
||||||
volumeName = "syncthing";
|
volumeName = "syncthing";
|
||||||
storage = "400Mi";
|
storage = "400Mi";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tailscale = {
|
||||||
|
enable = true;
|
||||||
|
allowedServiceAccounts = [ "syncthing" ];
|
||||||
|
deploymentsWithSidecarContainers.syncthing.hostName = "syncthing";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue