Skip to content

Commit

Permalink
Merge pull request #1668 from h4wkmoon/patch-1
Browse files Browse the repository at this point in the history
feat: expose event tailer metrics
  • Loading branch information
OverOrion authored Feb 27, 2024
2 parents 51b7e9f + 617d1ba commit 723bba6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkg/resources/eventtailer/statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ func (e *EventTailer) statefulSetSpec() *appsv1.StatefulSetSpec {
Name: config.EventTailer.TailerAffix,
Image: config.EventTailer.ImageWithTag,
ImagePullPolicy: corev1.PullIfNotPresent,
Ports: []corev1.ContainerPort{
{
Name: "monitor",
ContainerPort: 8080,
Protocol: corev1.ProtocolTCP,
},
},
VolumeMounts: []corev1.VolumeMount{
{
Name: "config-volume",
Expand Down

0 comments on commit 723bba6

Please sign in to comment.