Deployed OpenCloud file-sharing platform at opencloud.basicstack.de with: - Namespace: opencloud - Encrypted hcloud volumes (100Gi PVC) - Pocket ID OIDC integration (opencloud_admins group) - SMTP notifications via opencloud@basicstack.de - All credentials stored as SealedSecrets - Search service excluded due to v7.2.0 bug (GitHub #1740) Configuration follows official docker-compose pattern: - Image: opencloudeu/opencloud-rolling:7.2.0 - Command: opencloud init || true; opencloud server - External IDP mode with auto-provisioning - OC_EXCLUDE_RUN_SERVICES: search Files: - opencloud-deployment.yaml: Main deployment with OIDC, SMTP config - opencloud-configmap.yaml: OpenCloud config (search disabled) - tika-deployment.yaml: Apache Tika for future search enablement Co-Authored-By: Paperclip <noreply@paperclip.ing>
60 lines
1.1 KiB
YAML
60 lines
1.1 KiB
YAML
---
|
|
# Apache Tika Service for OpenCloud full-text search
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: tika
|
|
namespace: opencloud
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: tika
|
|
ports:
|
|
- name: http
|
|
port: 9998
|
|
targetPort: 9998
|
|
protocol: TCP
|
|
---
|
|
# Apache Tika Deployment
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: tika
|
|
namespace: opencloud
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: tika
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: tika
|
|
spec:
|
|
containers:
|
|
- name: tika
|
|
image: apache/tika:latest
|
|
ports:
|
|
- containerPort: 9998
|
|
name: http
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "1Gi"
|
|
cpu: "500m"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /tika
|
|
port: 9998
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /tika
|
|
port: 9998
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
timeoutSeconds: 5
|