Files
cloudpods/pkg/vpcagent/options/options.go
Jian Qiu c7d79f5d48 Feature/qj ipv6 support (#19249)
* feature: ipv6 support

* fix: ipv6 support more

* fix: update vendor for ipv6 support

* fix: allow enable ipv6 on existing guestnetwork

---------

Co-authored-by: Qiu Jian <qiujian@yunionyun.com>
2024-01-15 13:32:52 +08:00

102 lines
2.7 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/pkg/errors"
"yunion.io/x/onecloud/pkg/apis/compute"
common_options "yunion.io/x/onecloud/pkg/cloudcommon/options"
)
const (
VPC_PROVIDER_OVN = "ovn"
)
const (
ErrInvalidVpcProvider = errors.Error("invalid vpc provider")
ErrInvalidOvnDatabase = errors.Error("invalid ovn database")
)
type VpcAgentOptions struct {
VpcProvider string `default:"ovn"`
APISyncIntervalSeconds int `default:"10"`
APIRunDelayMilliseconds int `default:"100"`
APIListBatchSize int `default:"1024"`
// TODO: set this to true, becuase https://github.com/yunionio/cloudpods/issues/17273 is not fixed
FetchDataFromComputeService bool `default:"true"`
OvnWorkerCheckInterval int `default:"180"`
OvnNorthDatabase string `help:"address for accessing ovn north database. Default to local unix socket"`
OvnUnderlayMtu int `help:"mtu of ovn underlay network" default:"1500"`
DhcpLeaseTime int `default:"100663296" help:"DHCP lease time in seconds"`
DhcpRenewalTime int `default:"67108864" help:"DHCP renewal time in seconds"`
DNSServer string `help:"Address of DNS server"`
DNSDomain string `help:"Domain suffix for virtual servers"`
}
type Options struct {
common_options.CommonOptions
VpcAgentOptions
}
func (opts *Options) ValidateThenInit() error {
switch opts.VpcProvider {
case compute.VPC_PROVIDER_OVN:
case "":
return errors.Wrap(ErrInvalidVpcProvider, "empty")
default:
return errors.Wrapf(ErrInvalidVpcProvider, "unknown provider: %s", opts.VpcProvider)
}
if opts.APIListBatchSize <= 20 {
opts.APIListBatchSize = 20
}
if opts.OvnWorkerCheckInterval <= 60 {
opts.OvnWorkerCheckInterval = 60
}
if opts.OvnUnderlayMtu <= 576 {
opts.OvnUnderlayMtu = 576
}
return nil
}
func OnOptionsChange(oldO, newO interface{}) bool {
oldOpts := oldO.(*Options)
newOpts := newO.(*Options)
changed := false
if common_options.OnCommonOptionsChange(&oldOpts.CommonOptions, &newOpts.CommonOptions) {
changed = true
}
if oldOpts.VpcProvider != newOpts.VpcProvider {
changed = true
}
if oldOpts.OvnNorthDatabase != newOpts.OvnNorthDatabase {
changed = true
}
return changed
}