27 lines
496 B
YAML
27 lines
496 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: miles01
|
|
namespace: default
|
|
labels:
|
|
app: fastapi
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: fastapi
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: fastapi
|
|
name: fastapi
|
|
spec:
|
|
containers:
|
|
- name: fastapi
|
|
image: ub20:v1
|
|
imagePullPolicy: Never
|
|
ports:
|
|
- containerPort: 8000
|
|
# command:
|
|
# - ["/usr/bin/python3", "/app/app.py"]
|