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
Having trouble creating a OpenSearch cluster using the LocalStack container. I would expect at the very least a simple single node cluster to be created without any configuration needed. Something like the below would be awesome:
LocalStackContainercontainer=new LocalStackBuilder().Build();
container.Start();varuri=new Uri(_container.GetConnectionString());varclient=new OpenSearchClient(uri);// Results in 404 because a cluster was never created.varresponse= client.Cluster.Health()
I've read through https://docs.localstack.cloud/user-guide/aws/opensearch/ but these instructions dont seem to translate to testcontainers super easily due to not being able to easily create a domain/cluster via c#. Any ideas?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Having trouble creating a OpenSearch cluster using the LocalStack container. I would expect at the very least a simple single node cluster to be created without any configuration needed. Something like the below would be awesome:
I've read through https://docs.localstack.cloud/user-guide/aws/opensearch/ but these instructions dont seem to translate to testcontainers super easily due to not being able to easily create a domain/cluster via c#. Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions