initialize repository with glance, litellm, openwebui, nas and pihole services

This commit is contained in:
Roger Oriol
2025-08-01 11:11:46 +02:00
commit 915d40cdce
12 changed files with 670 additions and 0 deletions

40
glance/glance.yaml Normal file
View File

@@ -0,0 +1,40 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: glance
spec:
replicas: 1
selector:
matchLabels:
app: glance
template:
metadata:
labels:
app: glance
spec:
containers:
- name: glance
image: glanceapp/glance
ports:
- containerPort: 8080
volumeMounts:
- name: config-volume
mountPath: /app/config
volumes:
- name: config-volume
configMap:
name: glance-config
---
apiVersion: v1
kind: Service
metadata:
name: glance-service
namespace: default
spec:
type: ClusterIP
selector:
app: glance
ports:
- name: http
port: 80
targetPort: 8080