KO
|
EN
gitlite — search
Search
#python
#nodejs
#java
#javascript
#aws
#php
#tensorflow
#docker
#golang
#typescript
#kvm
#machine-learning
salt-dashboard
★ 75
Open GitHub ↗
dashboard for saltstack
Download README (.md)
Explore Similar Repositories
diffparser
:
Parse unified diffs with Java.
go-virtualbox
:
VirtualBox wrappers in Go
traffickingGrab
:
A project intended to fight human trafficking by using the web as a database
TextFiction
:
Z-Machine interpreter for Android
Bare.Game
:
An open source modern minimal game cross platform gaming library
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
salt-dashboard
?
Download (.md)
#salt dashboard salt-dashboard is based on salt-client(so deploy this on salt master server),and use mysql returner as result backend --------------------------------------- #requirement <pre> pip install django mysql-python </pre> #1:returner: ## salt [mysql returner ](http://docs.saltstack.com/ref/returners/all/salt.returners.mysql.html#module-salt.returners.mysql "Title") add time to salt_returns: <pre> alter table salt_returns add time timestamp; </pre> the auth sql like this: <pre> grant all on salt.* to 'salt'@'localhost' identified by 'salt'; </pre> there is a bug when schedule use mysql return,fixed by this [schedule return by mysql ](https://github.com/halfss/salt/commit/3f5805f7b38fc867a3d12b8c36efd023b4957792) ##salt minion config: <pre> vim /etc/salt/minion mysql.host: 'localhost' mysql.user: 'salt' mysql.pass: 'salt' mysql.db: 'salt' mysql.port: 3306 </pre> ##salt-dashboard sync db <pre> cd salt-dashboard/ python manage.py syncdb </pre> #2:scheduler: [[<pre>]] /srv/pillar/top.sls <pre> base: "*": - schedule </pre> /srv/pillar/schedule.sls <pre> schedule: highstate: function: state.highstate minutes: 30 returner: mysql </pre> </pre> then waiting minions update scheduler info by himself or run this command: <pre> salt '*' saltutil.refresh_pillar </pre> #3:salt-dashboard this dashboard is based on django+bootstrap+amcharts demo screen like this: here just on minion, so is seems very simple   