35 lines
1.0 KiB
Go
35 lines
1.0 KiB
Go
package options
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
genericoptions "kubesphere.io/kubesphere/pkg/options"
|
|
)
|
|
|
|
type ServerRunOptions struct {
|
|
GenericServerRunOptions *genericoptions.ServerRunOptions
|
|
|
|
// istio pilot discovery service url
|
|
IstioPilotServiceURL string
|
|
OpenPitrixServer string
|
|
OpenPitrixProxyToken string
|
|
}
|
|
|
|
func NewServerRunOptions() *ServerRunOptions {
|
|
|
|
s := ServerRunOptions{
|
|
GenericServerRunOptions: genericoptions.NewServerRunOptions(),
|
|
IstioPilotServiceURL: "http://istio-pilot.istio-system.svc:8080/version",
|
|
}
|
|
|
|
return &s
|
|
}
|
|
|
|
func (s *ServerRunOptions) AddFlags(fs *pflag.FlagSet) {
|
|
|
|
s.GenericServerRunOptions.AddFlags(fs)
|
|
|
|
fs.StringVar(&s.IstioPilotServiceURL, "istio-pilot-service-url", "http://istio-pilot.istio-system.svc:8080/version", "istio pilot discovery service url")
|
|
fs.StringVar(&s.OpenPitrixServer, "openpitrix-server", "http://openpitrix-api-gateway.openpitrix-system.svc", "openpitrix server")
|
|
fs.StringVar(&s.OpenPitrixProxyToken, "openpitrix-proxy-token", "", "openpitrix proxy token")
|
|
}
|