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.
28 lines
402 B
28 lines
402 B
apiVersion: v1 |
|
kind: Pod |
|
metadata: |
|
name: redis |
|
namespace: sopod |
|
labels: |
|
app: redis |
|
spec: |
|
containers: |
|
- name: redis |
|
image: redis:6.2 |
|
imagePullPolicy: IfNotPresent |
|
ports: |
|
- containerPort: 6379 |
|
|
|
--- |
|
apiVersion: v1 |
|
kind: Service |
|
metadata: |
|
namespace: sopod |
|
name: redis-svc |
|
labels: |
|
app: redis-svc |
|
spec: |
|
ports: |
|
- port: 6379 |
|
selector: |
|
app: redis
|
|
|