mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-14 19:03:33 +00:00
31 lines
456 B
YAML
31 lines
456 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: redis-deployment
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
name: redis-deployment
|
|
labels:
|
|
app: redis
|
|
spec:
|
|
containers:
|
|
- image: docker.io/clearlinux/redis
|
|
name: redis
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: redis-svc
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 6379
|
|
targetPort: 6379
|
|
nodePort: 30001
|
|
selector:
|
|
app: redis
|
|
|