forked from open-telemetry/opentelemetry-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.go
184 lines (159 loc) · 4.91 KB
/
helper.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Copyright The OpenTelemetry 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 instrumentation
import (
"fmt"
"reflect"
"regexp"
"sort"
"strings"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/strings/slices"
"github.com/open-telemetry/opentelemetry-operator/internal/naming"
"github.com/open-telemetry/opentelemetry-operator/pkg/constants"
)
var defaultSize = resource.MustParse("200Mi")
// Calculate if we already inject InitContainers.
func isInitContainerMissing(pod corev1.Pod, containerName string) bool {
for _, initContainer := range pod.Spec.InitContainers {
if initContainer.Name == containerName {
return false
}
}
return true
}
// Checks if Pod is already instrumented by checking Instrumentation InitContainer presence.
func isAutoInstrumentationInjected(pod corev1.Pod) bool {
for _, cont := range pod.Spec.InitContainers {
if slices.Contains([]string{
dotnetInitContainerName,
javaInitContainerName,
nodejsInitContainerName,
pythonInitContainerName,
apacheAgentInitContainerName,
apacheAgentCloneContainerName,
}, cont.Name) {
return true
}
}
for _, cont := range pod.Spec.Containers {
// Go uses a sidecar
if cont.Name == sideCarName {
return true
}
// This environment variable is set in the sidecar and in the
// collector containers. We look for it in any container that is not
// the sidecar container to check if we already injected the
// instrumentation or not
if cont.Name != naming.Container() {
for _, envVar := range cont.Env {
if envVar.Name == constants.EnvNodeName {
return true
}
}
}
}
return false
}
// Look for duplicates in the provided containers.
func findDuplicatedContainers(ctrs []string) error {
countMap := make(map[string]int)
var duplicates []string
for _, str := range ctrs {
countMap[str]++
}
// Find and collect the duplicates
for str, count := range countMap {
// omit empty container names
if str == "" {
continue
}
if count > 1 {
duplicates = append(duplicates, str)
}
}
if duplicates != nil {
sort.Strings(duplicates)
return fmt.Errorf("duplicated container names detected: %s", duplicates)
}
return nil
}
// Return positive for instrumentation with defined containers.
func isInstrWithContainers(inst instrumentationWithContainers) int {
if len(inst.Containers) > 0 {
return 1
}
return 0
}
// Return positive for instrumentation without defined containers.
func isInstrWithoutContainers(inst instrumentationWithContainers) int {
if len(inst.Containers) == 0 {
return 1
}
return 0
}
// Return volume if defined, otherwise return emptyDir with given name and size limit.
func instrVolume(volumeClaimTemplate corev1.PersistentVolumeClaimTemplate, name string, quantity *resource.Quantity) corev1.Volume {
if !reflect.ValueOf(volumeClaimTemplate).IsZero() {
return corev1.Volume{
Name: name,
VolumeSource: corev1.VolumeSource{
Ephemeral: &corev1.EphemeralVolumeSource{
VolumeClaimTemplate: &volumeClaimTemplate,
},
},
}
}
return corev1.Volume{
Name: name,
VolumeSource: corev1.VolumeSource{
EmptyDir: &corev1.EmptyDirVolumeSource{
SizeLimit: volumeSize(quantity),
},
}}
}
func volumeSize(quantity *resource.Quantity) *resource.Quantity {
if quantity == nil {
return &defaultSize
}
return quantity
}
func isValidContainersAnnotation(containersAnnotation string) error {
if containersAnnotation == "" {
return nil
}
matched, err := regexp.MatchString("^[a-zA-Z0-9-,]+$", containersAnnotation)
if err != nil {
return fmt.Errorf("error while checking for instrumentation container annotations %w", err)
}
if !matched {
return fmt.Errorf("not valid characters included in the instrumentation container annotation %s", containersAnnotation)
}
return nil
}
// setContainersFromAnnotation sets the containers associated to one intrumentation based on the content of the provided annotation.
func setContainersFromAnnotation(inst *instrumentationWithContainers, annotation string, ns metav1.ObjectMeta, pod metav1.ObjectMeta) error {
annotationValue := annotationValue(ns, pod, annotation)
if annotationValue == "" {
return nil
}
if err := isValidContainersAnnotation(annotationValue); err != nil {
return err
}
languageContainers := strings.Split(annotationValue, ",")
inst.Containers = append(inst.Containers, languageContainers...)
return nil
}