Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
de92fb69
Commit
de92fb69
authored
Nov 05, 2015
by
Zach Loafman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded pieces
parent
436839f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
28 deletions
+0
-28
Dockerfile
examples/spark/images/base/Dockerfile
+0
-4
setup_client.sh
examples/spark/images/base/setup_client.sh
+0
-24
No files found.
examples/spark/images/base/Dockerfile
View file @
de92fb69
FROM
java:latest
RUN
apt-get update
-y
RUN
apt-get
install
-y
scala
ENV
hadoop_ver 2.6.1
ENV
spark_ver 1.5.1
...
...
@@ -30,7 +27,6 @@ RUN mkdir -p /opt && \
RUN
wget
-O
/opt/spark/lib/gcs-connector-latest-hadoop2.jar https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-latest-hadoop2.jar
ADD
log4j.properties /opt/spark/conf/log4j.properties
ADD
setup_client.sh /
ADD
start-common.sh /
ADD
core-site.xml /opt/spark/conf/core-site.xml
ADD
spark-defaults.conf /opt/spark/conf/spark-defaults.conf
...
...
examples/spark/images/base/setup_client.sh
deleted
100755 → 0
View file @
436839f1
#!/bin/bash
# Copyright 2015 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
if
[[
$#
!=
2
||
$1
==
""
||
$2
==
""
]]
;
then
echo
"Usage: . ./setup_client.sh master_address master_port"
exit
1
fi
echo
"
$1
spark-master"
>>
/etc/hosts
export
SPARK_LOCAL_HOSTNAME
=
$(
hostname
-i
)
export
MASTER
=
spark://spark-master:
$2
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment