We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this a bug report or feature request?
Deviation from expected behavior: After active manager reelected, rook removes monitoring labels from mgr ServiceMonitor.
Expected behavior: After active manager reelected, mgr ServiceMonitor should keep all labels.
How to reproduce it (minimal and precise):
spec: labels: monitoring: my-label: abc mgr: allowMultiplePerNode: true count: 2 modules: - enabled: true name: rook monitoring: enabled: true
ServiceMonitor
% kubectl -n rook-ceph get servicemonitor rook-ceph-mgr -o yaml | yq .metadata.labels team: rook my-label: abc
metadata.label.mgr_role == active
% kubectl -n rook-ceph scale deployment/rook-ceph-mgr-a --replicas=0
% kubectl -n rook-ceph get servicemonitor rook-ceph-mgr -o yaml | yq .metadata.labels team: rook
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is this a bug report or feature request?
Deviation from expected behavior:
After active manager reelected, rook removes monitoring labels from mgr ServiceMonitor.
Expected behavior:
After active manager reelected, mgr ServiceMonitor should keep all labels.
How to reproduce it (minimal and precise):
ServiceMonitor
:% kubectl -n rook-ceph get servicemonitor rook-ceph-mgr -o yaml | yq .metadata.labels team: rook my-label: abc
metadata.label.mgr_role == active
) and wait until remaining mgr will be labeled as active:ServiceMonitor
is missing monitoring labels:% kubectl -n rook-ceph get servicemonitor rook-ceph-mgr -o yaml | yq .metadata.labels team: rook
The text was updated successfully, but these errors were encountered: