Skip to content

Commit 4e6ef76

Browse files
authored
Merge pull request apache#51 from mesosphere/native-cli
native cli
2 parents e804624 + e9eeba7 commit 4e6ef76

File tree

3 files changed

+56
-13
lines changed

3 files changed

+56
-13
lines changed

manifest.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"python_package": "https://s3-us-west-2.amazonaws.com/mesosphere-spark/dcos_spark-0.5.17-py2.py3-none-any.whl",
2+
"cli_version": "0.5.18",
3+
"linux_cli_sha256": "e69d22ae9436855f6b2133fe7211907315f642c1886e4effcc8029c71d8b0834",
4+
"mac_cli_sha256": "b9271779b2aab0679a34a406a2888b34030f769686a8acf5e6ebe1d67f6b042f",
5+
"windows_cli_sha256": "9b9fdabf5127fa6b014712fdb5ab2cf161d10016fc016675831e129009a37708",
36
"spark_uri": "https://downloads.mesosphere.com/spark/assets/spark-1.6.1-2.tgz",
47
"version": "SNAPSHOT"
58
}

package/command.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"pip": [
3-
"$python_package"
3+
"https://downloads.mesosphere.com/spark/assets/dcos_spark-$cli_version-py2.py3-none-any.whl"
44
]
55
}

package/resource.json

Lines changed: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,54 @@
11
{
2-
"assets": {
3-
"container": {
4-
"docker": {
5-
"spark_docker": "$docker_image"
6-
}
2+
"assets": {
3+
"container": {
4+
"docker": {
5+
"spark_docker": "$docker_image"
6+
}
7+
}
8+
},
9+
"images": {
10+
"icon-medium": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-medium.png",
11+
"icon-small": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-small.png",
12+
"icon-large": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-large.png"
13+
},
14+
"cli":{
15+
"binaries":{
16+
"darwin":{
17+
"x86-64":{
18+
"contentHash":[
19+
{
20+
"algo": "sha256",
21+
"value": "$mac_cli_sha256"
22+
}
23+
],
24+
"kind": "executable",
25+
"url":"https://downloads.mesosphere.com/spark/assets/cli/$cli_version/darwin-x86-64/dcos-spark"
26+
}
27+
},
28+
"linux":{
29+
"x86-64":{
30+
"contentHash":[
31+
{
32+
"algo":"sha256",
33+
"value":"$linux_cli_sha256"
34+
}
35+
],
36+
"kind":"executable",
37+
"url":"https://downloads.mesosphere.com/spark/assets/cli/$cli_version/linux-x86-64/dcos-spark"
38+
}
39+
},
40+
"windows":{
41+
"x86-64":{
42+
"contentHash":[
43+
{
44+
"algo":"sha256",
45+
"value":"$windows_cli_sha256"
46+
}
47+
],
48+
"kind":"executable",
49+
"url":"https://downloads.mesosphere.com/spark/assets/cli/$cli_version/windows-x86-64/dcos-spark.exe"
50+
}
51+
}
52+
}
753
}
8-
},
9-
"images": {
10-
"icon-medium": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-medium.png",
11-
"icon-small": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-small.png",
12-
"icon-large": "https://downloads.mesosphere.io/spark/assets/icon-service-spark-large.png"
13-
}
1454
}

0 commit comments

Comments
 (0)