Moved Docker stuff to "Docker" folder

Created k8s folder for k8s stuff
Added early-stage service.yaml for K8s deployment
This commit is contained in:
erichardso
2018-08-28 11:51:23 -07:00
parent 176e2f2062
commit d880f44ca6
138 changed files with 11 additions and 0 deletions

34
Docker/src/conf/broker.py Normal file
View File

@@ -0,0 +1,34 @@
#===========================================================================
#
# MQTT message broker location. Default broker location is port 1883
# for regular and 8883 for SSL.
#
#===========================================================================
host = '192.168.1.20'
port = 31333
# Keep alive time in seconds. Client sends a ping if no other message
# is sent in this interval.
keepAlive = 60
#===========================================================================
#
# User name and password (strings) for broker log in.
#
#===========================================================================
user = None
password = None
#===========================================================================
#
# Secure connection options. See the paho-mqtt docs for details.
#
#===========================================================================
# List of certificate files.
ca_certs = [
]
certFile = None
keyFile = None