Compare commits

..

11 Commits

Author SHA1 Message Date
Gitea Actions Bot e0c08adb87 Auto-update README with current k8s applications
Terraform / Terraform (pull_request) Failing after 15s
Generated by CI/CD workflow on 2026-03-11 16:13:09

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-11 16:13:09 +00:00
ab 9bac1c6e4a authentik: explicitly clear redis host to force postgres cache
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 16:12:19 +00:00
ab feced4994a authentik: fix worker readiness probe (worker has no HTTP listener)
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 16:04:19 +00:00
ab 38ec48cb3b authentik: disable bundled redis (not needed since 2025.10)
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 10s
2026-03-11 15:58:42 +00:00
ab f7cf170c9e Fix authentik
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:35:31 +00:00
ab 789834a151 Fix authentik
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:34:04 +00:00
ab 1949da9f71 Update k8s/core/authentik/kustomization.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-11 15:20:13 +00:00
ab 8636d4cd6b Update k8s/core/authentik/kustomization.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 15:14:18 +00:00
ab 499010aa5c Update k8s/core/authentik/values.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 9s
Auto-update README / Generate README and Create MR (push) Successful in 9s
2026-03-11 15:13:58 +00:00
ab 6574e14b3d Update k8s/core/argocd/kustomization.yaml
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 11s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 8s
2026-03-11 01:59:57 +00:00
Ultradesu 3bc1ac057c Fixed furumi dashboard
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 9s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-11 01:57:39 +00:00
5 changed files with 213 additions and 176 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ resources:
helmCharts: helmCharts:
- name: argo-cd - name: argo-cd
repo: https://argoproj.github.io/argo-helm repo: https://argoproj.github.io/argo-helm
version: 9.1.4 version: 9.4.10
releaseName: argocd releaseName: argocd
namespace: argocd namespace: argocd
valuesFile: values.yaml valuesFile: values.yaml
+1 -1
View File
@@ -18,4 +18,4 @@ spec:
prune: true prune: true
syncOptions: syncOptions:
- CreateNamespace=true - CreateNamespace=true
- ServerSideApply=true
+1 -1
View File
@@ -10,7 +10,7 @@ resources:
helmCharts: helmCharts:
- name: authentik - name: authentik
repo: https://charts.goauthentik.io repo: https://charts.goauthentik.io
version: 2026.2.0 version: 2025.10.1
releaseName: authentik releaseName: authentik
namespace: authentik namespace: authentik
valuesFile: values.yaml valuesFile: values.yaml
+26 -3
View File
@@ -1,6 +1,6 @@
global: global:
image: #image:
tag: "2025.10.1" # tag: "2025.10.1"
nodeSelector: nodeSelector:
kubernetes.io/hostname: master.tail2fe2d.ts.net kubernetes.io/hostname: master.tail2fe2d.ts.net
@@ -11,6 +11,8 @@ authentik:
name: "authentik" name: "authentik"
host: "psql.psql.svc" host: "psql.psql.svc"
port: 5432 port: 5432
redis:
host: ""
worker: worker:
envFrom: envFrom:
- secretRef: - secretRef:
@@ -23,6 +25,27 @@ worker:
volumeMounts: volumeMounts:
- name: dshm - name: dshm
mountPath: /dev/shm mountPath: /dev/shm
livenessProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 3
readinessProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 3
startupProbe:
exec:
command: ["/bin/sh", "-c", "kill -0 1"]
initialDelaySeconds: 30
periodSeconds: 10
failureThreshold: 60
timeoutSeconds: 3
server: server:
envFrom: envFrom:
- secretRef: - secretRef:
@@ -53,5 +76,5 @@ server:
hosts: hosts:
- '*.hexor.cy' - '*.hexor.cy'
redis: redis:
enabled: true enabled: false
+184 -170
View File
@@ -57,7 +57,7 @@ data:
"type": "prometheus", "type": "prometheus",
"uid": "${datasource}" "uid": "${datasource}"
}, },
"expr": "furumi_active_streams", "expr": "sum(furumi_active_streams)",
"refId": "A" "refId": "A"
} }
], ],
@@ -91,7 +91,7 @@ data:
"type": "prometheus", "type": "prometheus",
"uid": "${datasource}" "uid": "${datasource}"
}, },
"expr": "rate(furumi_bytes_read_total[$__rate_interval])", "expr": "sum(rate(furumi_bytes_read_total[$__rate_interval]))",
"refId": "A" "refId": "A"
} }
], ],
@@ -431,188 +431,202 @@ data:
} }
}, },
{ {
"collapsed": true,
"gridPos": { "gridPos": {
"h": 8, "h": 1,
"w": 12, "w": 24,
"x": 0, "x": 0,
"y": 12 "y": 12
}, },
"id": 7, "id": 99,
"options": { "panels": [
"legend": {
"calcs": [],
"displayMode": "list",
"placement": "bottom",
"showLegend": true
},
"tooltip": {
"mode": "single",
"sort": "none"
}
},
"pluginVersion": "10.0.0",
"targets": [
{ {
"datasource": { "gridPos": {
"type": "prometheus", "h": 8,
"uid": "${datasource}" "w": 12,
"x": 0,
"y": 13
}, },
"expr": "process_resident_memory_bytes / 1024 / 1024", "id": 7,
"legendFormat": "Resident Memory", "options": {
"refId": "A" "legend": {
}, "calcs": [],
{ "displayMode": "list",
"datasource": { "placement": "bottom",
"type": "prometheus", "showLegend": true
"uid": "${datasource}"
},
"expr": "process_virtual_memory_bytes / 1024 / 1024",
"legendFormat": "Virtual Memory",
"refId": "B"
}
],
"title": "Process Memory Usage",
"type": "timeseries",
"fieldConfig": {
"defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"axisBorderShow": false,
"axisCenteredZero": false,
"axisColorMode": "text",
"axisLabel": "",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "line",
"fillOpacity": 15,
"gradientMode": "none",
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
}, },
"insertNulls": false, "tooltip": {
"lineInterpolation": "linear", "mode": "single",
"lineWidth": 2, "sort": "none"
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
} }
}, },
"mappings": [], "pluginVersion": "10.0.0",
"thresholds": { "targets": [
"mode": "absolute", {
"steps": [ "datasource": {
{ "color": "green", "value": null } "type": "prometheus",
] "uid": "${datasource}"
}, },
"unit": "megbytes" "expr": "process_resident_memory_bytes / 1024 / 1024",
}, "legendFormat": "Resident Memory",
"overrides": [] "refId": "A"
} },
}, {
{ "datasource": {
"gridPos": { "type": "prometheus",
"h": 8, "uid": "${datasource}"
"w": 12, },
"x": 12, "expr": "process_virtual_memory_bytes / 1024 / 1024",
"y": 12 "legendFormat": "Virtual Memory",
}, "refId": "B"
"id": 8, }
"options": { ],
"legend": { "title": "Process Memory Usage",
"calcs": [], "type": "timeseries",
"displayMode": "list", "fieldConfig": {
"placement": "bottom", "defaults": {
"showLegend": true "color": {
}, "mode": "palette-classic"
"tooltip": { },
"mode": "single", "custom": {
"sort": "none" "axisBorderShow": false,
} "axisCenteredZero": false,
}, "axisColorMode": "text",
"pluginVersion": "10.0.0", "axisLabel": "",
"targets": [ "axisPlacement": "auto",
{ "barAlignment": 0,
"datasource": { "drawStyle": "line",
"type": "prometheus", "fillOpacity": 15,
"uid": "${datasource}" "gradientMode": "none",
}, "hideFrom": {
"expr": "process_open_fds", "legend": false,
"legendFormat": "Open FDs", "tooltip": false,
"refId": "A" "viz": false
},
"insertNulls": false,
"lineInterpolation": "linear",
"lineWidth": 2,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
}
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{ "color": "green", "value": null }
]
},
"unit": "megbytes"
},
"overrides": []
}
}, },
{ {
"datasource": { "gridPos": {
"type": "prometheus", "h": 8,
"uid": "${datasource}" "w": 12,
"x": 12,
"y": 13
}, },
"expr": "process_max_fds", "id": 8,
"legendFormat": "Max FDs", "options": {
"refId": "B" "legend": {
"calcs": [],
"displayMode": "list",
"placement": "bottom",
"showLegend": true
},
"tooltip": {
"mode": "single",
"sort": "none"
}
},
"pluginVersion": "10.0.0",
"targets": [
{
"datasource": {
"type": "prometheus",
"uid": "${datasource}"
},
"expr": "process_open_fds",
"legendFormat": "Open FDs",
"refId": "A"
},
{
"datasource": {
"type": "prometheus",
"uid": "${datasource}"
},
"expr": "process_max_fds",
"legendFormat": "Max FDs",
"refId": "B"
}
],
"title": "Process File Descriptors",
"type": "timeseries",
"fieldConfig": {
"defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"axisBorderShow": false,
"axisCenteredZero": false,
"axisColorMode": "text",
"axisLabel": "",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "line",
"fillOpacity": 10,
"gradientMode": "none",
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"insertNulls": false,
"lineInterpolation": "linear",
"lineWidth": 2,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
}
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{ "color": "green", "value": null }
]
},
"unit": "short"
},
"overrides": []
}
} }
], ],
"title": "Process File Descriptors", "title": "Process Metrics (Memory, FDs)",
"type": "timeseries", "type": "row"
"fieldConfig": {
"defaults": {
"color": {
"mode": "palette-classic"
},
"custom": {
"axisBorderShow": false,
"axisCenteredZero": false,
"axisColorMode": "text",
"axisLabel": "",
"axisPlacement": "auto",
"barAlignment": 0,
"drawStyle": "line",
"fillOpacity": 10,
"gradientMode": "none",
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"insertNulls": false,
"lineInterpolation": "linear",
"lineWidth": 2,
"pointSize": 5,
"scaleDistribution": {
"type": "linear"
},
"showPoints": "auto",
"spanNulls": false,
"stacking": {
"group": "A",
"mode": "none"
},
"thresholdsStyle": {
"mode": "off"
}
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{ "color": "green", "value": null }
]
},
"unit": "short"
},
"overrides": []
}
} }
], ],
"refresh": "10s", "refresh": "10s",