21 lines
355 B
YAML
21 lines
355 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: blog-deployment
|
|
labels:
|
|
app: blog
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: blog
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: blog
|
|
spec:
|
|
containers:
|
|
- name: blog
|
|
image: localhost:32000/log101-dot-dev:v3
|
|
ports:
|
|
- containerPort: 8080
|