This list has moved to a GitHub repo for easier tracking: https://github.com/coreos/awesome-kubernetes-extensions
Please comment below if you are using Kubernetes Third-Party Resources and I will add you to the list.
Known Users:
This list has moved to a GitHub repo for easier tracking: https://github.com/coreos/awesome-kubernetes-extensions
Please comment below if you are using Kubernetes Third-Party Resources and I will add you to the list.
Known Users:
A collection of container images I use for admin tasks or troubleshooting in environments such as CoreOS where quite often the one or other thing is not available or I can't be bothered to install stuff.
Good old netcat:
$ docker run -it --rm appropriate/nc $IP $PORTMake sure the DC/OS CLI is installed. I'm using httpie here but curl also works ;)
Note that all you'll need locally is install-job.json, a DC/OS Jobs definition. So, to install VAMP 0.9 and dependencies, do the following:
# download the install job
$ http --download https://gist.githubusercontent.com/mhausenblas/bb967625088902874d631eaa502573cb/raw/ece1c702dede66693b4873985ef317c568384436/install-job.jsonOnce in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
Generate your CSR This generates a unique private key, skip this if you already have one.
sudo openssl genrsa -out etc/ssl/yourdomain.com/yourdomain.com.key 1024Next generate your CSR (Certificate Signing Request), required by GoDaddy:
| setup: You have a multi-purpose cluster environment used for end user web traffic and in-house analytics. In this example we have 4 running docker instances of nginx hosting our web application fronted by haproxy and 2 small and 2 medium instances of YARN running on Mapr Hadoop with MapRFS. | |
| note: most organizations underutilize their datacenter resources by separating these two concerns. In this demonstration we are co-locating these separate needs. | |
| <setup scripts> | |
| 1. look at master port 80 (web app) | |
| - technical dive: look at /etc/haproxy/haproxy.cfg on master | |
| 2. lets run a terrasort job | |
| <launch terrasort job> |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |