mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 10:05:18 +00:00
20 lines
338 B
YAML
20 lines
338 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: memcached
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: memcached
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: memcached
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: memcached
|
||
|
image: memcached:1.4.38
|
||
|
ports:
|
||
|
- containerPort: 11211
|