Skip to content

Commit

Permalink
fix(operator): Don't overwrite annotations for LokiStack ingress reso…
Browse files Browse the repository at this point in the history
…urces (#13708)
  • Loading branch information
periklis committed Aug 7, 2024
1 parent 5ef83a7 commit f523530
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions operator/internal/manifests/mutate.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,12 @@ func mutateServiceMonitor(existing, desired *monitoringv1.ServiceMonitor) {

func mutateIngress(existing, desired *networkingv1.Ingress) {
existing.Labels = desired.Labels
existing.Annotations = desired.Annotations
existing.Spec.DefaultBackend = desired.Spec.DefaultBackend
existing.Spec.Rules = desired.Spec.Rules
existing.Spec.TLS = desired.Spec.TLS
}

func mutateRoute(existing, desired *routev1.Route) {
existing.Annotations = desired.Annotations
existing.Labels = desired.Labels
existing.Spec = desired.Spec
}
Expand Down

0 comments on commit f523530

Please sign in to comment.