Skip to content

Commit

Permalink
no show pw now
Browse files Browse the repository at this point in the history
  • Loading branch information
Michele Sciabarra committed Oct 20, 2017
1 parent cce3ff4 commit 3a7c774
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 22 deletions.
1 change: 0 additions & 1 deletion ansible/roles/jenkins/tasks/main.yml
@@ -1,4 +1,3 @@
---
- include_tasks: docker.yml
- include_tasks: service.yml
- include_tasks: show-jenkins-pw.yml
12 changes: 0 additions & 12 deletions ansible/roles/jenkins/tasks/show-jenkins-pw.yml

This file was deleted.

17 changes: 8 additions & 9 deletions deploy/docker-compose.yml
@@ -1,11 +1,13 @@
version: '3'
services:
spark-master:
hostname: spark-master
image: localhost:5000/spark:0.4-1
expose: 7077
ports:
- "8082:8080"
networks:
- spark-network
- loc
environment:
SPARK_MASTER_MEMORY: "4g"
SPARK_MASTER_CORES: 2
Expand All @@ -18,12 +20,10 @@ services:

spark-worker:
image: localhost:5000/spark:0.4-1
links:
- "spark-master:spark-master.loc"
ports:
- "8083:8081"
networks:
- spark-network
- loc
environment:
MASTER: "spark-master.loc"
SPARK_WORKER_MEMORY: "4g"
Expand All @@ -37,22 +37,21 @@ services:
memory: "2g"

zeppelin:
hostname: zeppelin
image: localhost:5000/zeppelin:0.4-1
ports:
- "8081:8080"
- "4040:4040"
- "8022:22"
networks:
- spark-network
links:
- "spark-master:spark-master.loc"
- loc
environment:
MASTER: "spark-master.loc"
MASTER: "sppark-master.loc"
deploy:
resources:
limits:
memory: "2g"
reservations:
memory: "2g"
networks:
spark-network:
loc:

0 comments on commit 3a7c774

Please sign in to comment.