cri-o/vendor/k8s.io/kubernetes/examples/spark/spark-gluster/spark-worker-controller.yaml
Mrunal Patel 8e5b17cf13 Switch to github.com/golang/dep for vendoring
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2017-01-31 16:45:59 -08:00

35 lines
844 B
YAML

kind: ReplicationController
apiVersion: v1
metadata:
name: spark-gluster-worker-controller
namespace: spark-cluster
labels:
component: spark-worker
spec:
replicas: 2
selector:
component: spark-worker
template:
metadata:
labels:
component: spark-worker
uses: spark-master
spec:
containers:
- name: spark-worker
image: gcr.io/google_containers/spark:1.5.2_v1
command: ["/start-worker"]
ports:
- containerPort: 8888
volumeMounts:
- mountPath: /mnt/glusterfs
name: glusterfsvol
resources:
requests:
cpu: 100m
volumes:
- name: glusterfsvol
glusterfs:
endpoints: glusterfs-cluster
path: MyVolume
readOnly: false