2 Commits

Author SHA1 Message Date
Renovate Bot
2a39a262b7 Update grafana/alloy Docker tag to v1.16.0 2026-04-24 00:03:09 +00:00
Peter Smit
8a9998ec82 Disable vaultwarden 2026-04-21 21:24:02 +02:00
4 changed files with 122 additions and 3 deletions

View File

@@ -14,4 +14,4 @@ include:
- shlink/docker-compose.yml
- synapse/docker-compose.yml
# - updater/docker-compose.yml
- vaultwarden/docker-compose.yml
# - vaultwarden/docker-compose.yml

View File

@@ -1,7 +1,7 @@
services:
gitea:
container_name: gitea
image: gitea/gitea:1.26.0-rootless
image: gitea/gitea:1.25.2-rootless
restart: always
volumes:
- ${GITEA_DATA_LOCATION}:/var/lib/gitea

View File

@@ -53,7 +53,7 @@ services:
- '-target=all'
alloy:
image: grafana/alloy:v1.15.0
image: grafana/alloy:v1.16.0
restart: unless-stopped
ports:
- "12345:12345"

119
spliit/spliit.yaml Normal file
View File

@@ -0,0 +1,119 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: spliit
---
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: spliit-db
namespace: spliit
spec:
instances: 1
storage:
size: 2Gi
bootstrap:
initdb:
database: spliit
owner: spliit
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: spliit
namespace: spliit
spec:
replicas: 1
selector:
matchLabels:
app: spliit
template:
metadata:
labels:
app: spliit
spec:
containers:
- name: spliit
image: petersmit27/spliit:latest
ports:
- containerPort: 3000
env:
- name: POSTGRES_PRISMA_URL
valueFrom:
secretKeyRef:
name: spliit-db-app
key: uri
- name: POSTGRES_URL_NON_POOLING
valueFrom:
secretKeyRef:
name: spliit-db-app
key: uri
---
apiVersion: v1
kind: Service
metadata:
name: spliit
namespace: spliit
spec:
selector:
app: spliit
ports:
- port: 3000
targetPort: 3000
---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: spliit
namespace: spliit
spec:
parentRefs:
- name: main
namespace: envoy-gateway-system
sectionName: https-smittenfeld
hostnames:
- split.smittenfeld.nl
rules:
- backendRefs:
- name: spliit
port: 3000
---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: spliit-create-group
namespace: spliit
spec:
parentRefs:
- name: main
namespace: envoy-gateway-system
sectionName: https-smittenfeld
hostnames:
- split.smittenfeld.nl
rules:
- matches:
- path:
type: PathPrefix
value: /groups/create
backendRefs:
- name: spliit
port: 3000
---
apiVersion: gateway.envoyproxy.io/v1alpha1
kind: SecurityPolicy
metadata:
name: spliit-create-ip-restriction
namespace: spliit
spec:
targetRefs:
- group: gateway.networking.k8s.io
kind: HTTPRoute
name: spliit-create-group
authorization:
defaultAction: Deny
rules:
- action: Allow
principal:
clientCIDRs:
- 188.91.195.91/32