24 lines
427 B
YAML
24 lines
427 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: pi-web
|
|
labels:
|
|
kiamol: ch06
|
|
spec:
|
|
replicas: 3
|
|
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
|