-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated H2O AI JSON spec with proposed fixes (#69)
* added initial h2o spec file * ai vocab add * FInished H2O JSON spec file -updated info and created a new service entry as a subpage of NDS Labs Services -updated image name to be ndslabs/h2o -added field for volume mount -added AI tags -added 'authRequired' -fixed path to "/" * Updated repo url, mount path, and removed extra description * Update tags.json
- Loading branch information
Showing
2 changed files
with
97 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"id": "h2oai", | ||
"key": "h2oai", | ||
"label": "H2O AI", | ||
"description": "AI for the Digital Brain", | ||
"info": "https://www.h2o.ai/", | ||
"logo": "https://h2o2016.wpengine.com/wp-content/themes/h2o2016/images/H2O_logo_yellow.svg", | ||
"image": { | ||
"registry" : "ndslabs/h2o", | ||
"name" : "ndslabs/h2o", | ||
"tags" : [ "latest"] | ||
}, | ||
"display": "stack", | ||
"access": "external", | ||
"depends": [], | ||
"config": [], | ||
"ports": [ | ||
{ | ||
"port": 54321, | ||
"protocol": "http" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"url": "https://github.com/h2oai/h2o-3", | ||
"type": "git" | ||
} | ||
], | ||
"developerEnvironment" : "", | ||
"volumeMounts": [ | ||
{ | ||
"mountPath": "/root/h2oflows" | ||
} | ||
], | ||
"readinessProbe" : { | ||
"type" : "http", | ||
"path" : "/", | ||
"port" : 54321, | ||
"initialDelay": 30, | ||
"timeout" : 600 | ||
}, | ||
"resourceLimits": { | ||
"cpuMax": 1000, | ||
"cpuDefault": 100, | ||
"memMax": 1024, | ||
"memDefault": 512 | ||
}, | ||
"tags": ["43", "28"], | ||
"authRequired": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters