add dependency, start provider and fetch data

add tons of labels

Provide - WIP

add rancher data over rancher types

first version of direct fetch - pagination still an issue
This commit is contained in:
Manuel Laufenberg 2017-01-29 00:01:56 +01:00
parent 28054a0be3
commit 38bd49b97e
6 changed files with 533 additions and 6 deletions

View file

@ -377,6 +377,9 @@ func (server *Server) configureProviders() {
if server.globalConfiguration.ECS != nil {
server.providers = append(server.providers, server.globalConfiguration.ECS)
}
if server.globalConfiguration.Rancher != nil {
server.providers = append(server.providers, server.globalConfiguration.Rancher)
}
}
func (server *Server) startProviders() {