blob: b30ed47b20fce9a37e0fa19f15031f551400acc8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 tag_route
import (
config_core "github.com/apache/dubbo-kubernetes/pkg/config/core"
core_manager "github.com/apache/dubbo-kubernetes/pkg/core/resources/manager"
core_store "github.com/apache/dubbo-kubernetes/pkg/core/resources/store"
kube_ctrl "sigs.k8s.io/controller-runtime"
)
type tagRouteManager struct {
core_manager.ResourceManager
store core_store.ResourceStore
manager kube_ctrl.Manager
deployMode config_core.DeployMode
}
func NewTagRouteManager(store core_store.ResourceStore, manager kube_ctrl.Manager, mode config_core.DeployMode) core_manager.ResourceManager {
return &tagRouteManager{
ResourceManager: core_manager.NewResourceManager(store),
store: store,
manager: manager,
deployMode: mode,
}
}