-
Notifications
You must be signed in to change notification settings - Fork 37
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
Preffer kubectl.kubernetes.io/last-applied-configuration
over qbec.io/last-applied
#232
Comments
When both pristine exists, most problably last apply operation was done via kubectl, thus it contains more actual data than qbec pristine.
You could make the counter argument.
I think as long as there are 2 annotations potentially in conflict, picking any one will always cause some case to fail. I think what we need is the ability for qbec to use kubectl annotations when configured for a qbec app. That is, a flag in the qbec spec that says:
and if this is set qbec always writes a qbec already has the logic to read its own annotation and then kubectl's,. This is preserved as before. For brand-new projects everything works the same except that qbec is writing the kubectl annotation and reading (as a 2 step process since the qbec version won't exist) it. qbec should also have the logic to remove any qbec annotation that was present in the object when the project says it wants to impersonate kubectl and remove it going forward. For a project that wants to transition to this, we need to document the migration process. This is, roughly,
|
That's not fully true, as the only case when both of them are existing is when kubectl is used over qbec. The purposed change should not break anything but it will consider the changes made by hand via kubectl.
What the reason we need qbec annotation then why not always using kubectl annotation instead? |
@gotwarlost do you want to generate and write |
It's up to consideration.
I think it makes sense to prefer
kubectl.kubernetes.io/last-applied-configuration
annotation overqbec.io/last-applied
and always remove the first one because of the few reasons:This means we need to consider the latest configuration applied via kubectl, and ignore qbec annotation.
--show-pristine
option anymore.Another problem of
--show-pristine
is the fact that it adds additional difficulties for hiding this information (see Option to hide sensitive data in specific fields argoproj/argo-cd#5201) I think this solution is better and more clear than proposed on Add option to dispay qbec.io/component and qbec.io/last-applied in show #163 and PR Use namespaced queries when multiple namespaces present, allow override using spec property #167.Current behavior:
qbec.io/last-applied
kubectl.kubernetes.io/last-applied-configuration
qbec.io/last-applied
qbec.io/last-applied
, writeqbec.io/last-applied
kubectl.kubernetes.io/last-applied-configuration
, deletekubectl.kubernetes.io/last-applied-configuration
, writeqbec.io/last-applied
qbec.io/last-applied
, writeqbec.io/last-applied
My idea is to change the last case behavior to:
qbec.io/last-applied
kubectl.kubernetes.io/last-applied-configuration
kubectl.kubernetes.io/last-applied-configuration
, deletekubectl.kubernetes.io/last-applied-configuration
, writeqbec.io/last-applied
The text was updated successfully, but these errors were encountered: