I have deployed keycloak with pulumi python code u...
# azure
p
I have deployed keycloak with pulumi python code using helm charts on azure AKS. deployment was successful. then I deployed springboot app using pulumi python on same azure AKS cluster. but this time using docker image from azure docker registry. this deployment was also successful. Now the weird part is that the previous deployment has disappered. and it is happening everytime. on top of that it even happens if the namespaces are also different for both the deployments @hallowed-photographer-31251 any idea??
b
are you adding them as separate pulumi resources? if you overwite the same pulumi resource, then pulumi will delete the old one, and deploy the new one instead, or just update it if it can.