mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-20 16:36:03 +08:00
62 lines
2.3 KiB
Go
62 lines
2.3 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package options
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/options"
|
|
)
|
|
|
|
type SKeystoneOptions struct {
|
|
options.BaseOptions
|
|
|
|
options.DBOptions
|
|
|
|
AdminPort int `default:"35357" help:"listening port for admin API(deprecated)"`
|
|
|
|
TokenExpirationSeconds int `default:"86400" help:"token expiration seconds" token:"expiration"`
|
|
FernetKeyRepository string `help:"fernet key repo directory" token:"key_repository" default:"/etc/yunion/keystone/fernet-keys"`
|
|
SetupCredentialKeys bool `help:"setup standalone fernet keys for credentials" token:"setup_credential_key" default:"false" json:",allowfalse"`
|
|
|
|
BootstrapAdminUserPassword string `help:"bootstreap sysadmin user password" default:"sysadmin"`
|
|
ResetAdminUserPassword bool `help:"reset sysadmin password if exists and this option is true" json:",allowfalse"`
|
|
|
|
AutoSyncIntervalSeconds int `help:"frequency to check auto sync tasks" default:"30"`
|
|
|
|
DefaultSyncIntervalSeconds int `help:"frequency to do auto sync tasks" default:"900"`
|
|
|
|
FetchProjectResourceCountIntervalSeconds int `help:"frequency tp fetch project resource counts" default:"900"`
|
|
|
|
PasswordExpirationSeconds int `help:"password expires after the duration in seconds"`
|
|
PasswordMinimalLength int `help:"password minimal length" default:"6"`
|
|
PasswordUniqueHistoryCheck int `help:"password must be unique in last N passwords"`
|
|
|
|
PasswordErrorLockCount int `help:"lock user account if given number of failed auth"`
|
|
}
|
|
|
|
var (
|
|
Options SKeystoneOptions
|
|
)
|
|
|
|
func OnOptionsChange(oldOptions, newOptions interface{}) bool {
|
|
oldOpts := oldOptions.(*SKeystoneOptions)
|
|
newOpts := newOptions.(*SKeystoneOptions)
|
|
|
|
if options.OnBaseOptionsChange(&oldOpts.BaseOptions, &newOpts.BaseOptions) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|