17 lines
273 B
YAML
17 lines
273 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: redis-django
|
|
labels:
|
|
app: web
|
|
spec:
|
|
containers:
|
|
- name: key-value-store
|
|
image: redis
|
|
ports:
|
|
- containerPort: 6379
|
|
- name: frontend
|
|
image: django
|
|
ports:
|
|
- containerPort: 8000
|