blob: 665c63b7cf75c8dc6d1ff767c30983137bba05f7 [file] [log] [blame]
// Copyright Istio Authors
//
// 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 bootstrap
import (
"istio.io/pkg/log"
)
import (
"github.com/apache/dubbo-go-pixiu/pilot/pkg/features"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/collections"
"github.com/apache/dubbo-go-pixiu/pkg/webhooks/validation/controller"
"github.com/apache/dubbo-go-pixiu/pkg/webhooks/validation/server"
)
func (s *Server) initConfigValidation(args *PilotArgs) error {
if s.kubeClient == nil {
return nil
}
log.Info("initializing config validator")
// always start the validation server
params := server.Options{
Schemas: collections.Istio,
DomainSuffix: args.RegistryOptions.KubeOptions.DomainSuffix,
Mux: s.httpsMux,
}
_, err := server.New(params)
if err != nil {
return err
}
if features.ValidationWebhookConfigName != "" && s.kubeClient != nil {
s.addStartFunc(func(stop <-chan struct{}) error {
log.Infof("Starting validation controller")
go controller.NewValidatingWebhookController(
s.kubeClient, args.Revision, args.Namespace, s.istiodCertBundleWatcher).Run(stop)
return nil
})
}
return nil
}