26 lines
458 B
YAML
26 lines
458 B
YAML
|
kind: Deployment
|
||
|
apiVersion: apps/v1
|
||
|
metadata:
|
||
|
name: nosqldata
|
||
|
labels:
|
||
|
app: eshop
|
||
|
service: nosqldata
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
service: nosqldata
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: eshop
|
||
|
service: nosqldata
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nosqldata
|
||
|
image: mongo
|
||
|
ports:
|
||
|
- name: mongodb
|
||
|
containerPort: 27017
|
||
|
protocol: TCP
|