794a814275
Make a Magnum demonstration that creates a baymodel and bay. Just run demos/magnum/launch to make it work. This depends on Neutron. Borrow the v1beta3 redis example from the examples repository in Kubernetes. Change-Id: I448a5890bfe0c1675914ae7dbd02fad03f4b1eeb
24 lines
464 B
YAML
24 lines
464 B
YAML
apiVersion: v1beta3
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: redis-sentinel
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
redis-sentinel: "true"
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: redis-sentinel
|
|
redis-sentinel: "true"
|
|
role: sentinel
|
|
spec:
|
|
containers:
|
|
- name: sentinel
|
|
image: kubernetes/redis:v1
|
|
env:
|
|
- name: SENTINEL
|
|
value: "true"
|
|
ports:
|
|
- containerPort: 26379
|