Open kvaps opened 3 years ago
You could make the counter argument.
If both are present, the project is likely transitioning from kubectl to qbec
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:
impersonateKubectl: true
and if this is set qbec always writes a kubectl.kubernetes.io/last-applied-configuration
annotation instead of the qbec one.
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,
I think as long as there are 2 annotations potentially in conflict, picking any one will always cause some case to fail.
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.
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:
impersonateKubectl: true
and if this is set qbec always writes a kubectl.kubernetes.io/last-applied-configuration annotation instead of the qbec one.
What the reason we need qbec annotation then why not always using kubectl annotation instead?
@gotwarlost do you want to generate and write kubectl.kubernetes.io/last-applied-configuration
annotation by qbec, right?
It would need some additional modifications in method as kubectl applies the namespace name there.
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:--show-pristine
option anymore. Another problem of--show-pristine
is the fact that it adds additional difficulties for hiding this information (see https://github.com/argoproj/argo-cd/issues/5201) I think this solution is better and more clear than proposed on https://github.com/splunk/qbec/issues/163 and PR https://github.com/splunk/qbec/issues/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