Mikhail Advani

Results 6 comments of Mikhail Advani

Thought about it but personally, I do not like the sidecar pattern primarily because of the orchestration of the periodic refresh and error handling. I am more inclined towards a...

I tried it out but facing authentication issues because of the lack of presence of a proper kube config/context. I have hacked around it for now using the following. ```bash...

I had done a dirty implementation with executing kubent in a shell through a wrapper webservice using `os.Exec("kubent" ...)` but never got down to doing it the right way which...

we had this in our dev setup and went in for this to tackle it: ```python from aiokafka.helpers import create_ssl_context ssl_context = create_ssl_context() ssl_context.check_hostname = False kafka_producer = AIOKafkaProducer( bootstrap_servers=kafka_servers,...

We are using the opsgenie sdk to trigger alerts. Running a heartbeat_api.ping we end up with the following (partial) stacktrace ``` line 628, in ping (data) = self.ping_with_http_info(name, **kwargs) #...

My bad. Not needed. The correct fix was already in place and we had not updated the opsgenie-sdk