I upgraded our cluster from 6.8 to 7.3.2 and I can only view all indices if I authenticate to the cluster. This was not the case on 6.8:
I get only system indices without authentication:
➜ curl -s -XGET https://timeline-shared.r1.eu1.com:9200/_cat/indices | wc
19 190 2014
When I authenticate:
➜ curl -s -XGET -u 'xx:xx' https://timeline-shared.r1.eu1.com:9200/_cat/indices | wc
473 4730 63855
On a 6.8 cluster, I get all indices without authentication:
➜ curl -s -XGET https://timeline-shared.r1.us1.com:9200/_cat/indices | wc
541 3306 70330
What am I doing wrong here?