Skip to content

Commit

Permalink
add an alpine instance for interacting with local storage
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiegel95 committed Dec 9, 2024
1 parent 43e048e commit d35761a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions services/finetuning/examples/alpine.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apiVersion: v1
kind: Pod
metadata:
name: alpine
spec:
containers:
- name: alpine
image: amd64/alpine:3.7
imagePullPolicy: Always
command:
- sleep
- "3600"
volumeMounts:
- mountPath: /data
name: volv
resources:
limits:
memory: 1Gi
cpu: 500m
requests:
memory: 256Mi
cpu: 125m
volumes:
- name: volv
persistentVolumeClaim:
claimName: local-path-pvc

0 comments on commit d35761a

Please sign in to comment.