[GitHub] mesos pull request #265: Update presentations.md

2018-03-05 Thread greggomann
Github user greggomann commented on a diff in the pull request:

https://github.com/apache/mesos/pull/265#discussion_r172287822
  
--- Diff: docs/presentations.md ---
@@ -133,6 +133,10 @@ Presented Summer 2010 at [Yahoo](http://yahoo.com)
 # Apache Mesos - Training
 _(Listed in date descending order)_
 
+## Docker, Apache Mesos & DCOS: Run and manage cloud datacenter 
([Video](https://www.packtpub.com/networking-and-servers/docker-apache-mesos-dcos-run-and-manage-cloud-datacenter-video))
+Manuj Aggarwal, TetraTutorials Team
--- End diff --

Let's remove the "TetraTutorials Team" designation, for consistency.


---


[GitHub] mesos issue #255: Add curl examples to operator-http-api

2018-01-16 Thread greggomann
Github user greggomann commented on the issue:

https://github.com/apache/mesos/pull/255
  
@nhandler similar to Vinod's comment: I think we could probably get away 
without the heredoc notation, to get rid of the EOFs?

i.e.:
```
curl -i \
  -X POST http://:5050/api/v1 \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '
{
  "type": "GET_HEALTH"
}'
```
This works when I test it in bash anyway :)


---