mirror of
https://github.com/PurpleComputing/scim-examples.git
synced 2026-02-28 08:22:31 +00:00
20 lines
307 B
YAML
20 lines
307 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: redis
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: redis
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: redis:latest
|
|
ports:
|
|
- containerPort: 6379
|