-
Notifications
You must be signed in to change notification settings - Fork 198
/
istioingress.go
112 lines (96 loc) · 3.63 KB
/
istioingress.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright © 2020 Banzai Cloud
//
// 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 istioingress
import (
"strings"
"emperror.dev/errors"
istioOperatorApi "github.com/banzaicloud/istio-operator/api/v2/v1alpha1"
"github.com/banzaicloud/koperator/api/v1beta1"
"github.com/banzaicloud/koperator/pkg/k8sutil"
"github.com/banzaicloud/koperator/pkg/resources"
"github.com/banzaicloud/koperator/pkg/util"
"github.com/banzaicloud/koperator/pkg/util/istioingress"
corev1 "k8s.io/api/core/v1"
"github.com/go-logr/logr"
"sigs.k8s.io/controller-runtime/pkg/client"
)
const (
componentName = "istioingress"
gatewayNameTemplate = "%s-%s-gateway"
gatewayNameTemplateWithScope = "%s-%s-%s-gateway"
virtualServiceTemplate = "%s-%s-virtualservice"
virtualServiceTemplateWithScope = "%s-%s-%s-virtualservice"
)
// labelsForIstioIngress returns the labels for selecting the resources
// belonging to the given kafka CR name.
func labelsForIstioIngress(crName, eLName, istioRevision string) map[string]string {
labels := map[string]string{"app": "istioingress", "eListenerName": eLName, "kafka_cr": crName}
if istioRevision != "" {
labels["istio.io/rev"] = istioRevision
}
return labels
}
// Reconciler implements the Component Reconciler
type Reconciler struct {
resources.Reconciler
}
// New creates a new reconciler for IstioIngress
func New(client client.Client, cluster *v1beta1.KafkaCluster) *Reconciler {
return &Reconciler{
Reconciler: resources.Reconciler{
Client: client,
KafkaCluster: cluster,
},
}
}
// Reconcile implements the reconcile logic for IstioIngress
func (r *Reconciler) Reconcile(log logr.Logger) error {
log = log.WithValues("component", componentName)
log.V(1).Info("Reconciling")
if r.KafkaCluster.Spec.GetIngressController() == istioingress.IngressControllerName {
for _, eListener := range r.KafkaCluster.Spec.ListenersConfig.ExternalListeners {
if eListener.GetAccessMethod() == corev1.ServiceTypeLoadBalancer {
if r.KafkaCluster.Spec.IstioControlPlane == nil {
log.Error(errors.NewPlain("reference to Istio Control Plane is missing"), "skip external listener reconciliation", "external listener", eListener.Name)
continue
}
istioRevision := istioOperatorApi.NamespacedRevision(
strings.ReplaceAll(r.KafkaCluster.Spec.IstioControlPlane.Name, ".", "-"),
r.KafkaCluster.Spec.IstioControlPlane.Namespace)
ingressConfigs, defaultControllerName, err := util.GetIngressConfigs(r.KafkaCluster.Spec, eListener)
if err != nil {
return err
}
for name, ingressConfig := range ingressConfigs {
if !util.IsIngressConfigInUse(name, defaultControllerName, r.KafkaCluster, log) {
continue
}
for _, res := range []resources.ResourceWithLogAndExternalListenerSpecificInfosAndIstioRevision{
r.meshgateway,
r.gateway,
r.virtualService,
} {
o := res(log, eListener, ingressConfig, name, defaultControllerName, istioRevision)
err := k8sutil.Reconcile(log, r.Client, o, r.KafkaCluster)
if err != nil {
return err
}
}
}
}
}
}
log.V(1).Info("Reconciled")
return nil
}