- https://github.com/wallnerryan/dockercon-tweets-web
- (60Kb source foot-print)
- (9.8Mb total in repo)
- https://github.com/wallnerryan/dockercon-tweets-stream
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
[[local|localrc]] | |
# Credentials | |
DATABASE_PASSWORD=devstack | |
ADMIN_PASSWORD=devstack | |
SERVICE_PASSWORD=devstack | |
SERVICE_TOKEN=devstack | |
RABBIT_PASSWORD=devstack | |
# Services |
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
#consul members -detailed | |
Node Address Status Tags | |
sclr058.lss.emc.com 10.13.217.58:8301 alive port=8300,expect=2,role=consul,dc=dc1,vsn=2,vsn_min=1,vsn_max=2,build=0.4.1: | |
sclr059 10.13.217.59:8301 alive vsn=2,vsn_min=1,vsn_max=2,build=0.4.1:,port=8300,expect=2,role=consul,dc=dc1 | |
sclr060.lss.emc.com 10.13.217.60:8301 alive role=consul,dc=dc1,vsn=2,vsn_min=1,vsn_max=2,build=0.4.1:,port=8300,expect=2 | |
(catalog/nodes) | |
[{"Node":"sclr058.lss.emc.com","Address":"10.13.217.58"},{"Node":"sclr059","Address":"10.13.217.59"},{"Node":"sclr060.lss.emc.com","Address":"10.13.217.60"}] | |
(agent/members) |
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
--- a/VagrantSpicedir/spice-conf/provider_config.rb | |
+++ b/VagrantSpicedir/spice-conf/provider_config.rb | |
@@ -1617,7 +1617,7 @@ EOF | |
", | |
:box => 'dummy', | |
:defaults => { | |
- :common_location_name => 'us_west', | |
+ :common_location_name => 'us_west_2a', | |
:common_image_name => 'CentOS-6.5-x64', | |
:common_instance_type => 'small', |
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
(Check Kernel) | |
-------------- | |
CONFIG=/home/pi/linux/.config lxc-checkconfig | |
--- Namespaces --- | |
Namespaces: enabled | |
Utsname namespace: enabled | |
Ipc namespace: required | |
Pid namespace: enabled | |
User namespace: enabled |
HypriotOS: root@black-pearl in ~/pitest on master
$ python discover_register_devices.py
Device: C8:1E:E7:7C:7F:41 -> Wally's iPhone
[{'name': "Wally's iPhone", 'address': 'C8:1E:E7:7C:7F:41'}]
HypriotOS: root@black-pearl in ~/pitest on master
$ python find_discovered_devices.py
[{'name': "Wally's iPhone", 'address': 'C8:1E:E7:7C:7F:41'}]
https://github.com/docker/compose/blob/master/SWARM.md https://docs.docker.com/machine/#using-docker-machine-with-docker-swarm
(for mac)
curl -L https://get.docker.com/builds/Darwin/x86_64/docker-1.8.0 > /usr/local/bin/docker
chmod +x /usr/local/bin/docker
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
# Created by Jonas Rosland, @virtualswede & Matt Cowger, @mcowger | |
# Many thanks to this post by James Carr: http://blog.james-carr.org/2013/03/17/dynamic-vagrant-nodes/ | |
#vagrantbox="centos_7" | |
vagrantbox="puppetlabs/centos-7.0-64-nocm" | |
# vagrant box url | |
vagrantboxurl="puppetlabs/centos-7.0-64-nocm" | |
# scaleio admin password |
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
#!/bin/bash | |
while [[ $# > 1 ]] | |
do | |
key="$1" | |
case $key in | |
-o|--os) | |
OS="$2" | |
shift | |
;; |
OlderNewer