feat(nextcloud): Move to separate k8s namespace
This commit is contained in:
parent
0d2b2b90f7
commit
2fbc150912
6 changed files with 90 additions and 89 deletions
|
@ -58,6 +58,7 @@ Currently, the applications being deployed like this are:
|
||||||
- `kms`
|
- `kms`
|
||||||
- `atuin`
|
- `atuin`
|
||||||
- `blog`
|
- `blog`
|
||||||
|
- `nextcloud`
|
||||||
|
|
||||||
## Known bugs
|
## Known bugs
|
||||||
|
|
||||||
|
|
|
@ -76,4 +76,6 @@
|
||||||
"${self}/kubenix-modules/atuin.nix" "atuin" "atuin";
|
"${self}/kubenix-modules/atuin.nix" "atuin" "atuin";
|
||||||
kubenix.blog = mkDeployScriptAndManifest
|
kubenix.blog = mkDeployScriptAndManifest
|
||||||
"${self}/kubenix-modules/blog.nix" "blog" "static-websites";
|
"${self}/kubenix-modules/blog.nix" "blog" "static-websites";
|
||||||
|
kubenix.nextcloud = mkDeployScriptAndManifest
|
||||||
|
"${self}/kubenix-modules/nextcloud.nix" "nextcloud" "nextcloud";
|
||||||
})
|
})
|
||||||
|
|
|
@ -2,7 +2,6 @@ let
|
||||||
applications = [
|
applications = [
|
||||||
./inbucket.nix
|
./inbucket.nix
|
||||||
./syncthing.nix
|
./syncthing.nix
|
||||||
./nextcloud.nix
|
|
||||||
./pihole.nix
|
./pihole.nix
|
||||||
./hedgedoc.nix
|
./hedgedoc.nix
|
||||||
./paperless.nix
|
./paperless.nix
|
||||||
|
|
|
@ -66,6 +66,7 @@
|
||||||
radicale = { };
|
radicale = { };
|
||||||
kms = { };
|
kms = { };
|
||||||
atuin = { };
|
atuin = { };
|
||||||
|
nextcloud = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes =
|
nodes =
|
||||||
|
|
|
@ -1,130 +1,116 @@
|
||||||
{
|
{
|
||||||
kubernetes.resources = {
|
kubernetes.resources = {
|
||||||
configMaps = {
|
secrets.database.stringData.databasePassword = "ref+sops://secrets/kubernetes.yaml#/nextcloud/databasePassword";
|
||||||
nextcloud.data = {
|
|
||||||
POSTGRES_USER = "nextcloud";
|
|
||||||
POSTGRES_DB = "nextcloud";
|
|
||||||
POSTGRES_HOST = "lewis.dmz";
|
|
||||||
};
|
|
||||||
|
|
||||||
nextcloud-db-env.data = {
|
|
||||||
POSTGRES_DB = "nextcloud";
|
|
||||||
POSTGRES_USER = "nextcloud";
|
|
||||||
POSTGRES_PASSWORD = "ref+sops://secrets/kubernetes.yaml#/nextcloud/databasePassword";
|
|
||||||
PGDATA = "/pgdata/data";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
secrets.nextcloud.stringData.databasePassword = "ref+sops://secrets/kubernetes.yaml#/nextcloud/databasePassword";
|
|
||||||
|
|
||||||
deployments = {
|
deployments = {
|
||||||
nextcloud = {
|
server.spec = {
|
||||||
metadata.labels = {
|
selector.matchLabels = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "website";
|
component = "server";
|
||||||
};
|
};
|
||||||
|
|
||||||
spec = {
|
strategy = {
|
||||||
selector.matchLabels = {
|
type = "RollingUpdate";
|
||||||
|
|
||||||
|
rollingUpdate = {
|
||||||
|
maxSurge = 0;
|
||||||
|
maxUnavailable = 1;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template = {
|
||||||
|
metadata.labels = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "website";
|
component = "server";
|
||||||
};
|
};
|
||||||
|
|
||||||
strategy = {
|
spec = {
|
||||||
type = "RollingUpdate";
|
volumes.data.persistentVolumeClaim.claimName = "data";
|
||||||
|
|
||||||
rollingUpdate = {
|
containers.nextcloud = {
|
||||||
maxSurge = 0;
|
image = "nextcloud:28";
|
||||||
maxUnavailable = 1;
|
ports.web.containerPort = 80;
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template = {
|
env = {
|
||||||
metadata.labels = {
|
POSTGRES_USER.value = "nextcloud";
|
||||||
app = "nextcloud";
|
POSTGRES_DB.value = "nextcloud";
|
||||||
component = "website";
|
POSTGRES_HOST.value = "lewis.dmz";
|
||||||
};
|
|
||||||
|
|
||||||
spec = {
|
POSTGRES_PASSWORD.valueFrom.secretKeyRef = {
|
||||||
volumes.data.persistentVolumeClaim.claimName = "nextcloud";
|
name = "database";
|
||||||
|
|
||||||
containers.nextcloud = {
|
|
||||||
image = "nextcloud:28";
|
|
||||||
envFrom = [{ configMapRef.name = "nextcloud"; }];
|
|
||||||
ports.web.containerPort = 80;
|
|
||||||
|
|
||||||
env.POSTGRES_PASSWORD.valueFrom.secretKeyRef = {
|
|
||||||
name = "nextcloud";
|
|
||||||
key = "databasePassword";
|
key = "databasePassword";
|
||||||
};
|
};
|
||||||
|
|
||||||
volumeMounts = [{
|
|
||||||
name = "data";
|
|
||||||
mountPath = "/var/www/html";
|
|
||||||
}];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
securityContext = {
|
volumeMounts = [{
|
||||||
fsGroup = 33;
|
name = "data";
|
||||||
fsGroupChangePolicy = "OnRootMismatch";
|
mountPath = "/var/www/html";
|
||||||
};
|
|
||||||
|
|
||||||
affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution = [{
|
|
||||||
weight = 1;
|
|
||||||
preference.matchExpressions = [{
|
|
||||||
key = "storageType";
|
|
||||||
operator = "In";
|
|
||||||
values = [ "fast" ];
|
|
||||||
}];
|
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
securityContext = {
|
||||||
|
fsGroup = 33;
|
||||||
|
fsGroupChangePolicy = "OnRootMismatch";
|
||||||
|
};
|
||||||
|
|
||||||
|
affinity.nodeAffinity.preferredDuringSchedulingIgnoredDuringExecution = [{
|
||||||
|
weight = 1;
|
||||||
|
preference.matchExpressions = [{
|
||||||
|
key = "storageType";
|
||||||
|
operator = "In";
|
||||||
|
values = [ "fast" ];
|
||||||
|
}];
|
||||||
|
}];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nextcloud-db = {
|
database.spec = {
|
||||||
metadata.labels = {
|
selector.matchLabels = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "database";
|
component = "database";
|
||||||
};
|
};
|
||||||
|
|
||||||
spec = {
|
template = {
|
||||||
selector.matchLabels = {
|
metadata.labels = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "database";
|
component = "database";
|
||||||
};
|
};
|
||||||
|
|
||||||
template = {
|
spec = {
|
||||||
metadata.labels = {
|
containers.postgres = {
|
||||||
app = "nextcloud";
|
image = "postgres:15";
|
||||||
component = "database";
|
imagePullPolicy = "IfNotPresent";
|
||||||
};
|
ports.postgres.containerPort = 5432;
|
||||||
|
|
||||||
spec = {
|
env = {
|
||||||
containers.postgres = {
|
POSTGRES_DB.value = "nextcloud";
|
||||||
image = "postgres:15";
|
POSTGRES_USER.value = "nextcloud";
|
||||||
imagePullPolicy = "IfNotPresent";
|
PGDATA.value = "/pgdata/data";
|
||||||
ports.postgres.containerPort = 5432;
|
|
||||||
envFrom = [{ configMapRef.name = "nextcloud-db-env"; }];
|
|
||||||
|
|
||||||
volumeMounts = [{
|
POSTGRES_PASSWORD.valueFrom.secretKeyRef = {
|
||||||
name = "data";
|
name = "database";
|
||||||
mountPath = "/pgdata";
|
key = "databasePassword";
|
||||||
}];
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
volumes.data.persistentVolumeClaim.claimName = "nextcloud-db";
|
volumeMounts = [{
|
||||||
|
name = "database";
|
||||||
|
mountPath = "/pgdata";
|
||||||
|
}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
volumes.database.persistentVolumeClaim.claimName = "database";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
nextcloud.spec = {
|
server.spec = {
|
||||||
selector = {
|
selector = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "website";
|
component = "server";
|
||||||
};
|
};
|
||||||
|
|
||||||
ports.web = {
|
ports.web = {
|
||||||
|
@ -133,7 +119,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nextcloud-db.spec = {
|
database.spec = {
|
||||||
selector = {
|
selector = {
|
||||||
app = "nextcloud";
|
app = "nextcloud";
|
||||||
component = "database";
|
component = "database";
|
||||||
|
@ -148,13 +134,25 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
lab = {
|
lab = {
|
||||||
ingresses.nextcloud = {
|
ingresses.web = {
|
||||||
host = "cloud.kun.is";
|
host = "cloud.kun.is";
|
||||||
|
|
||||||
service = {
|
service = {
|
||||||
name = "nextcloud";
|
name = "server";
|
||||||
portName = "web";
|
portName = "web";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
longhorn.persistentVolumeClaim = {
|
||||||
|
data = {
|
||||||
|
volumeName = "nextcloud";
|
||||||
|
storage = "50Gi";
|
||||||
|
};
|
||||||
|
|
||||||
|
database = {
|
||||||
|
volumeName = "nextcloud-db";
|
||||||
|
storage = "400Mi";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
hedgedoc-uploads.storage = "50Mi";
|
hedgedoc-uploads.storage = "50Mi";
|
||||||
hedgedoc-db.storage = "100Mi";
|
hedgedoc-db.storage = "100Mi";
|
||||||
minecraft.storage = "1Gi";
|
minecraft.storage = "1Gi";
|
||||||
nextcloud.storage = "50Gi";
|
|
||||||
nextcloud-db.storage = "400Mi";
|
|
||||||
pihole-data.storage = "750Mi";
|
pihole-data.storage = "750Mi";
|
||||||
pihole-dnsmasq.storage = "16Mi";
|
pihole-dnsmasq.storage = "16Mi";
|
||||||
forgejo.storage = "20Gi";
|
forgejo.storage = "20Gi";
|
||||||
|
@ -45,6 +43,8 @@
|
||||||
radicale.storage = "200Mi";
|
radicale.storage = "200Mi";
|
||||||
atuin.storage = "300Mi";
|
atuin.storage = "300Mi";
|
||||||
atuin-db.storage = "300Mi";
|
atuin-db.storage = "300Mi";
|
||||||
|
nextcloud.storage = "50Gi";
|
||||||
|
nextcloud-db.storage = "400Mi";
|
||||||
};
|
};
|
||||||
|
|
||||||
nfsVolumes = {
|
nfsVolumes = {
|
||||||
|
|
Loading…
Reference in a new issue