Bypassing Open Distro Security not initialized on cluster struggling with master election

I have a situation where the masters have lost quorum due to being restarted and they are unable to determine a quorum from themselves. Cluster state is still present, so in theory I could alter via API the cluster nominations etc. However, because the cluster has technically not “started” I cannot initialize the open distro security plugin.

How do you work around this?

@Dandy You should be able to call APIs using curl command with admin certificate.

curl -XGET "https://localhost:9200/..." \
   --key "test.key" \
   --cert "test.pem" \
   --cacert "ca.pem"

Hope this helps