26 lines
478 B
YAML
26 lines
478 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: pi-web
|
||
|
labels:
|
||
|
kiamol: ch12
|
||
|
spec:
|
||
|
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
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: 250m
|