comparison deploy.yaml @ 1:0f532eb91364

switch from slow pipenv to fast pdm
author drewp@bigasterisk.com
date Thu, 31 Mar 2022 23:49:08 -0700
parents 3c1bc3bc5a6c
children e7f33fa31883
comparison
equal deleted inserted replaced
0:3c1bc3bc5a6c 1:0f532eb91364
17 containers: 17 containers:
18 - name: environment 18 - name: environment
19 image: bang5:5000/environment_image 19 image: bang5:5000/environment_image
20 workingDir: /opt 20 workingDir: /opt
21 command: 21 command:
22 - pipenv 22 - pdm
23 - run 23 - run
24 - python 24 - python
25 - environment.py 25 - environment.py
26 ports: 26 ports:
27 - containerPort: 8000 27 - containerPort: 8000
30 kind: Service 30 kind: Service
31 metadata: 31 metadata:
32 name: environment 32 name: environment
33 spec: 33 spec:
34 ports: 34 ports:
35 - {port: 80, targetPort: 8080} 35 - {port: 80, targetPort: 8000}
36 selector: 36 selector:
37 app: environment 37 app: environment
38 38
39 39