Compare commits

..

5 Commits

Author SHA1 Message Date
gitea-admin 2bb2b7259c feat: deploy Falco runtime security
Validate Manifests / validate (pull_request) Failing after 1s
2026-06-02 06:04:08 +00:00
gitea-admin 43976cb1a1 Merge pull request 'fix: Transmission deployment invalid containerPort: 0' (#113) from orion/auto/fix-transmission-deployment-invalid-cont-1780182803013 into main
Reviewed-on: #113
2026-05-31 00:10:03 +00:00
gitea-admin c6f3eab1d8 fix: Transmission deployment invalid containerPort: 0
Validate Manifests / validate (pull_request) Failing after 1s
2026-05-30 23:13:23 +00:00
gitea-admin 4ab4642c9c Merge pull request 'fix: update n8n ExternalSecret API version to v1' (#112) from orion/auto/fix-update-n8n-externalsecret-api-versio-1780181761004 into main
Reviewed-on: #112
2026-05-30 22:59:21 +00:00
gitea-admin 27fbe1ecac fix: update n8n ExternalSecret API version to v1
Validate Manifests / validate (pull_request) Failing after 13s
2026-05-30 22:56:01 +00:00
3 changed files with 104 additions and 74 deletions
+1 -21
View File
@@ -14,25 +14,5 @@ spec:
data:
- secretKey: N8N_SECRET_KEY
remoteRef:
key: apps/n8n
key: n8n
property: N8N_SECRET_KEY
- secretKey: DB_HOST
remoteRef:
key: apps/n8n
property: DB_HOST
- secretKey: DB_PORT
remoteRef:
key: apps/n8n
property: DB_PORT
- secretKey: DB_NAME
remoteRef:
key: apps/n8n
property: DB_NAME
- secretKey: DB_USER
remoteRef:
key: apps/n8n
property: DB_USER
- secretKey: DB_PASSWORD
remoteRef:
key: apps/n8n
property: DB_PASSWORD
+35 -53
View File
@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: transmission
namespace: media
namespace: apps
labels:
app: transmission
spec:
@@ -10,76 +10,58 @@ spec:
selector:
matchLabels:
app: transmission
strategy:
type: Recreate
template:
metadata:
labels:
app: transmission
spec:
containers:
- name: gluetun
image: ghcr.io/qmcgaw/gluetun:v3.40.0
env:
- name: OPENVPN_PROVIDER
value: "PROTONVPN"
- name: OPENVPN_USERNAME
valueFrom:
secretKeyRef:
name: transmission-vpn-secret
key: username
- name: OPENVPN_PASSWORD
valueFrom:
secretKeyRef:
name: transmission-vpn-secret
key: password
- name: SERVER_COUNTRIES
value: "US"
- name: FIREWALL_ENABLED
value: "off"
- name: DOT_ENABLED
value: "true"
ports:
- name: http
containerPort: 8000
volumeMounts:
- name: config
mountPath: /config
- name: transmission
image: lscr.io/linuxserver/transmission:latest
ports:
- name: web
containerPort: 9091
protocol: TCP
- name: peer
containerPort: 51413
protocol: TCP
- name: peer-udp
containerPort: 51413
protocol: UDP
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "America/New_York"
- name: USER
value: "admin"
- name: PASS
value: "admin"
value: "Etc/UTC"
- name: TRANSMISSION_WEB_HOME
value: "/combui"
- name: PEER_PORT
valueFrom:
configMapKeyRef:
name: transmission-config
key: peer-port
ports:
- name: http
containerPort: 9091
- name: peer
containerPort: 0
protocol: TCP
- name: peer-udp
containerPort: 0
protocol: UDP
value: "/web/":"
volumeMounts:
- name: config
mountPath: /config
- name: data
mountPath: /data
- name: gluetun
image: qmcgaw/gluetun:latest
env:
- name: VPN_SERVICE_PROVIDER
value: "protonvpn"
- name: VPN_TYPE
value: "wireguard"
ports:
- name: https
containerPort: 443
protocol: TCP
volumeMounts:
- name: config
mountPath: /config
- name: downloads
mountPath: /downloads
volumes:
- name: config
emptyDir: {}
- name: downloads
persistentVolumeClaim:
claimName: media-data
claimName: transmission-config-claim
- name: data
persistentVolumeClaim:
claimName: transmission-data-claim
@@ -0,0 +1,68 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: falco
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://falcosecurity.github.io/charts
chart: falco
targetRevision: 3.9.0
helm:
releaseName: falco
values: |
## Falco configuration
falco:
config:
## Log output
json_output: true
json_include_output_property: true
## Log stdout + webhook for Wazuh integration
programs_output:
- enabled: true
keep_alive: false
executor: /etc/falco/webhook.sh
file_output:
- enabled: true
keep_alive: false
filename: /var/log/falco/falco.log
syscall_event_drops:
enable_outputs: true
max_percentage_lost: 20.0
rate: 10
base_syscalls:
enable_outputs: false
buffers_pmem: false
syscall_buffer_num_pages: 256
## Falco host mount
hostNetwork: true
hostPID: true
tolerations:
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
resources:
requests:
cpu: "200m"
memory: "256Mi"
limits:
cpu: "1"
memory: "512Mi"
destination:
server: https://kubernetes.default.svc
namespace: falco
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true