You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe we can use kubernetes to store the deployment state of our applications, instead of deploying a new app only for this purpose ?
K8s uses etcd internally as a k/v store, but I think we can't use etcd directly for security reasons.
However, if we store this information in a kubernetes object, it will be persisted and we will be able to query these data easily from our playbooks.
The question is... in which kind of k8s object can we store this information ?
I see 2 options :
A ConfigMap per application.
In the metadata of the route (or service) of an each application.
(If you think of other options, I'm interested !)
I don't like the second solution because we can have multiple routes (or services) per application and the information will be duplicated.
Bug Report
Expected behavior/code
The clean playbook should only delete objects that are not connected and thus useless.
Actual Behavior
If the clean playbook is run at the same time as a deployment, it happens to delete objects that are not yet connected but useful...
Steps to Reproduce
Environment
Possible Solution
Check that no deployment is running before actually deleting objects.
The text was updated successfully, but these errors were encountered: