25 lines
470 B
YAML
25 lines
470 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: pi-web
|
|
labels:
|
|
kiamol: ch12-lab
|
|
spec:
|
|
replicas: 4
|
|
selector:
|
|
matchLabels:
|
|
app: pi-web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: pi-web
|
|
spec:
|
|
containers:
|
|
- image: kiamol/ch05-pi
|
|
command: ["dotnet", "Pi.Web.dll", "-m", "web"]
|
|
name: web
|
|
ports:
|
|
- containerPort: 80
|
|
name: http
|
|
# TODO - add resource limits
|