Skip to content

Commit

Permalink
Merge pull request #611 from robinmordasiewicz/dev106
Browse files Browse the repository at this point in the history
adding init
  • Loading branch information
robinmordasiewicz authored Sep 29, 2024
2 parents 94ade2e + 2a428c1 commit 73e5a9b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions manifests/apps/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ resources:
- ./ollama
- ./devcontainer
- ./nvidia-smi
- ./lower-thirds
28 changes: 28 additions & 0 deletions manifests/apps/lower-thirds/Deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: lower-thirds
namespace: application
spec:
replicas: 1
selector:
matchLabels:
app: lower-thirds
template:
metadata:
labels:
app: lower-thirds
spec:
tolerations:
- key: "nvidia.com/gpu"
operator: "Exists"
effect: "NoSchedule"
containers:
- name: lower-thirds
image: robinmordasiewicz/lower-thirds:latest
ports:
- containerPort: 8000
resources:
limits:
nvidia.com/gpu: 0
4 changes: 4 additions & 0 deletions manifests/apps/lower-thirds/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- Deployment.yaml

0 comments on commit 73e5a9b

Please sign in to comment.