mirror of
https://github.com/openziti/zrok.git
synced 2025-06-30 06:20:17 +02:00
controller configuration (#967)
This commit is contained in:
5
controller/agentController/config.go
Normal file
5
controller/agentController/config.go
Normal file
@ -0,0 +1,5 @@
|
||||
package agentController
|
||||
|
||||
type Config struct {
|
||||
IdentityPath string
|
||||
}
|
@ -1,19 +1,18 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"os"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/michaelquigley/cf"
|
||||
"github.com/openziti/zrok/controller/agentController"
|
||||
"github.com/openziti/zrok/controller/emailUi"
|
||||
"github.com/openziti/zrok/controller/env"
|
||||
"github.com/openziti/zrok/controller/limits"
|
||||
"github.com/openziti/zrok/controller/metrics"
|
||||
"github.com/openziti/zrok/controller/zrokEdgeSdk"
|
||||
|
||||
"github.com/michaelquigley/cf"
|
||||
"github.com/openziti/zrok/controller/store"
|
||||
"github.com/openziti/zrok/controller/zrokEdgeSdk"
|
||||
"github.com/pkg/errors"
|
||||
"os"
|
||||
"strconv"
|
||||
"time"
|
||||
)
|
||||
|
||||
const ConfigVersion = 4
|
||||
@ -21,6 +20,7 @@ const ConfigVersion = 4
|
||||
type Config struct {
|
||||
V int
|
||||
Admin *AdminConfig
|
||||
AgentController *agentController.Config
|
||||
Bridge *metrics.BridgeConfig
|
||||
Endpoint *EndpointConfig
|
||||
Email *emailUi.Config
|
||||
|
Reference in New Issue
Block a user