You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
711 B
37 lines
711 B
7 years ago
|
---
|
||
7 years ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
7 years ago
|
name: session-db
|
||
7 years ago
|
labels:
|
||
7 years ago
|
name: session-db
|
||
7 years ago
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
7 years ago
|
name: session-db
|
||
7 years ago
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
7 years ago
|
name: session-db
|
||
|
annotations:
|
||
|
prometheus.io.scrape: "false"
|
||
7 years ago
|
spec:
|
||
|
containers:
|
||
7 years ago
|
- name: session-db
|
||
|
image: redis:alpine
|
||
7 years ago
|
ports:
|
||
7 years ago
|
- name: redis
|
||
|
containerPort: 6379
|
||
7 years ago
|
securityContext:
|
||
|
capabilities:
|
||
|
drop:
|
||
|
- all
|
||
|
add:
|
||
|
- CHOWN
|
||
|
- SETGID
|
||
|
- SETUID
|
||
|
readOnlyRootFilesystem: true
|
||
|
nodeSelector:
|
||
|
beta.kubernetes.io/os: linux
|