OpenSearch
opensearch/standalone
Single-node OpenSearch cluster
Deploys a single-node OpenSearch cluster into a local Kind cluster with host access on port 30921. Security is disabled for lightweight development.
Install gck#
go install github.com/gravitee-io-labs/gck@latest
For other installation methods, see Installation .
Usage#
Create#
gck create --from opensearch/standalone
Cleanup#
gck delete
Quick Start#
Check the cluster from your host:
curl http://localhost:30921
curl http://localhost:30921/_cluster/health?pretty
Security is disabled, so no credentials are needed.
Endpoints
Services this context exposes on your machine after gck create, including the ones it inherits from the contexts it composes. Rows marked with a flag only exist when you pass it.
| Service | URL | Notes | From |
|---|---|---|---|
| OpenSearch | http://localhost:30921 | security disabled | opensearch/standalone |
Variables
Template variables overridable with --set. Use --set path.segments.var=value to target a specific context in the composition chain.
| Variable | Default | Origin | Description |
|---|---|---|---|
clusterName | opensearch-standalone | opensearch/standalone | Name of the Kind cluster |
imageRepository | opensearchproject/opensearch | opensearch/standalone | OpenSearch Docker image repository |
imageTag | 3.0.0 | opensearch/standalone | OpenSearch Docker image tag |