1
0
Fork 0

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

@ -51,6 +51,7 @@ type GlobalConfiguration struct {
Mesos *provider.Mesos `description:"Enable Mesos backend"`
Eureka *provider.Eureka `description:"Enable Eureka backend"`
ECS *provider.ECS `description:"Enable ECS backend"`
Rancher *provider.Rancher `description:"Enable Rancher backend"`
}
// DefaultEntryPoints holds default entry points
@ -415,6 +416,10 @@ func NewTraefikDefaultPointersConfiguration() *TraefikConfiguration {
ECS: &defaultECS,
Retry: &Retry{},
}
//default Rancher
//@TODO: ADD
return &TraefikConfiguration{
GlobalConfiguration: defaultConfiguration,
}