Skip to content

Commit

Permalink
Add hls
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Dec 7, 2024
1 parent 065ea9a commit 6d3859d
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions ci/k8s/hls.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
apiVersion: v1
kind: Service
metadata:
name: islandora-hls
spec:
selector:
app: islandora-hls
ports:
- protocol: TCP
port: 8085
targetPort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: islandora-hls
spec:
replicas: 3
selector:
matchLabels:
app: islandora-hls
template:
metadata:
labels:
app: islandora-hls
spec:
containers:
- name: scyllaridae-hls
image: lehighlts/scyllaridae-hls:main
imagePullPolicy: IfNotPresent
resources:
requests:
memory: "512Mi"
cpu: "250m"
limits:
memory: "4Gi"
ports:
- hostPort: 8085
containerPort: 8080
readinessProbe:
httpGet:
path: /healthcheck
port: 8080
initialDelaySeconds: 5
periodSeconds: 10

0 comments on commit 6d3859d

Please sign in to comment.