42 lines
939 B
YAML
42 lines
939 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert --file compose.yml -c --out ./charts
|
|
kompose.version: 1.26.0 (40646f47)
|
|
labels:
|
|
io.kompose.service: link2cid
|
|
name: link2cid
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: API_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: link2cid
|
|
key: apiKey
|
|
- name: IPFS_URL
|
|
value: http://ipfs0:5001
|
|
- name: PORT
|
|
value: "3939"
|
|
image: link2cid
|
|
name: fp-link2cid
|
|
ports:
|
|
- containerPort: 3939
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 2048Gi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 2048Gi
|
|
volumeMounts:
|
|
- mountPath: /app/index.js
|
|
name: link2cid-claim0
|
|
restartPolicy: OnFailure
|
|
volumes:
|
|
- name: link2cid-claim0
|
|
persistentVolumeClaim:
|
|
claimName: link2cid-claim0
|
|
status: {}
|