-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
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
[Bug] The tenant's StatefulSet replicates the Tenant's metadata #2318
Comments
AFAIK, there is no official statement whether labels and annotations should be propagated to child objects. Some people prefer this behavior (link), but a Kubernetes dev mentions that it's not desirable that labels propagate (link). Not propagating labels and annotations would be an easy change and we should add a
In the next major release of the operator the |
I agree with you on the solution. Let me know if there's anything I can do to help. |
we do bunch of fetching and queries using labels as selectors for queries removing them will indeed break stuff. |
@ramondeklein @dvaldivia please discuss this together to figure out a proper solutions since this might break existing integrations. |
Alternative fix, see #2337 |
@ramondeklein This is half a solution. In the new major version, this is how it will look like (with adding {} as the default value). In other words, the propagation should be opt-out in v6 and opt-in in v7. Still, I think your PR should be merged. |
@ramondeklein Once your PR is merged, we could bring up the discussion on the path to make |
@aqeelat If we could start from scratch, then |
When the operator syncs the tenant, it copies the labels and annotations from the Tenant to the StatefulSet, causing undesirable side effects.
Expected Behavior
Similar to how the Service metadata are synced, the labels and annotations that should be cascaded to the StatefulSet should be explicitly specified in the CRD.
Current Behavior
operator/pkg/resources/statefulsets/minio-statefulset.go
Lines 630 to 632 in 03613d2
Possible Solution
poolsMetadata
for the labels and annotations that are shared across all pools.cascadeTenantMetadata
that controls the lines in the snippet above.Steps to Reproduce (for bugs)
Context
I opened #2287 before investigating the issue but now I think I have more context to discuss the issue.
Because the operator cascades the argocd label to the stateful set, cilium thinks that this label is a security-relevant label, and uses it to create endpoints for the pods and the identity object that governs these endpoints. The issue appears because the identity object has the argocd label, which makes argo thinks that it is a top level object, but when it compares it with the actual application manifest, it does not find it there. Therefore, argo will think that this object was removed from the manifest and will try to remove it from the cluster as well.
We're using many other operators such as Percona, ECK, PGO, but we only see this behavior with the Minio Operator.
Once this issue is fixed, the operator can be declared GitOps friendly.
Regression
The issue first appeared in #295
Your Environment
minio-operator
): 6.0.2uname -a
):The text was updated successfully, but these errors were encountered: