Skip to content

Commit

Permalink
Fix Makefile OpenSearch rule name in CONTRIBUTING.md install guide, F…
Browse files Browse the repository at this point in the history
…ix OpenSearch version in dev Docker config (cadence-workflow#5004)

* Fix Makefile rule name in Schema Install instructions of CONTRIBUTING.md
* Opportunistic fix of Dependency software names surrounding Makefile rule name being fixed
* Fix OpenSearch version pulled by Docker
  • Loading branch information
charlese-instaclustr authored Nov 7, 2022
1 parent 56d2028 commit 18e8bad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ Also use `docker-compose -f ./docker/dev/cassandra.yml down` to stop and clean u
### 3. Schema installation
Based on the above dependency setup, you also need to install the schemas.

* If you use `cassandra.yml` then run `make install-schema` to install Casandra schemas
* If you use `cassandra-esv7-kafka.yml` then run `make install-schema && make install-schema-es-v7` to install Casandra & ElasticSearch schemas
* If you use `cassandra-opensearch-kafka.yml` then run `make install-schema && make install-schema-opensearch` to install Casandra & ElasticSearch schemas
* If you use `cassandra.yml` then run `make install-schema` to install Cassandra schemas
* If you use `cassandra-esv7-kafka.yml` then run `make install-schema && make install-schema-es-v7` to install Cassandra & ElasticSearch schemas
* If you use `cassandra-opensearch-kafka.yml` then run `make install-schema && make install-schema-es-opensearch` to install Cassandra & OpenSearch schemas
* If you use `mysql.yml` then run `install-schema-mysql` to install MySQL schemas
* If you use `postgres.yml` then run `install-schema-postgres` to install Postgres schemas
* `mysql-esv7-kafka.yml` can be used for single MySQL + ElasticSearch or multiple MySQL + ElasticSearch mode
Expand Down
2 changes: 1 addition & 1 deletion docker/dev/cassandra-opensearch-kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
ports:
- "9042:9042"
elasticsearch:
image: opensearchproject/opensearch:latest
image: opensearchproject/opensearch:1.3.6
ports:
- "9200:9200"
- "9600:9600"
Expand Down

0 comments on commit 18e8bad

Please sign in to comment.