diff --git a/deploy/charts/svc-lb-to-cilium-netpolicy-operator/Chart.yaml b/deploy/charts/svc-lb-to-cilium-netpolicy-operator/Chart.yaml index 9d9e3cd..76e04f7 100644 --- a/deploy/charts/svc-lb-to-cilium-netpolicy-operator/Chart.yaml +++ b/deploy/charts/svc-lb-to-cilium-netpolicy-operator/Chart.yaml @@ -13,9 +13,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.3 +version: 1.0.4 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.1.0" +appVersion: "v1.1.1" diff --git a/internal/controller/service/setup.go b/internal/controller/service/setup.go index baed127..8bb54ee 100644 --- a/internal/controller/service/setup.go +++ b/internal/controller/service/setup.go @@ -263,6 +263,9 @@ func (re *ReconcilerExtended) networkPolicyEventHandler(ctx context.Context, obj } else { // Add exclusion reason for the namespace indicating the source of the exclusion cacheEntry[noNetworkPolicyExistence] = empty{} + + logger.Info(consts.NamespaceExcludedNoNetworkPolicyMatchInfo + + consts.NamespaceExclusionReasonAddedInfo) } case updateEvent: @@ -424,6 +427,9 @@ func (re *ReconcilerExtended) ciliumNetworkPolicyEventHandler(ctx context.Contex } else { // Add exclusion reason for the namespace indicating the source of the exclusion cacheEntry[noUnmanagedCiliumNetworkPolicyExistence] = empty{} + + logger.Info(consts.NamespaceExcludedNoCiliumNetworkPolicyMatchInfo + + consts.NamespaceExclusionReasonAddedInfo) } }