Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/terraform/opensearch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resource "aws_cloudwatch_log_group" "opensearch" {

resource "aws_opensearch_domain" "opensearch" {
domain_name = local.opensearch_domain_name
engine_version = "OpenSearch_2.13"
engine_version = "OpenSearch_2.17"

cluster_config {
instance_type = var.opensearch_instance_type
Expand Down
10 changes: 10 additions & 0 deletions doc/release/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). The format is based on the `RELEASE-NOTES-TEMPLATE.md` file.


## Release 1.24.0

## Introduction
* Product name: Open Supply Hub
* Release date: November 16, 2024

### Architecture/Environment changes
* Open Search versoion has been increased to 2.17

## Release 1.23.0

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ services:
- proxynet

opensearch-single-node:
image: opensearchproject/opensearch:2.13.0
image: opensearchproject/opensearch:2.17.0
environment:
- cluster.name=opensearch-cluster # Name the cluster.
- node.name=opensearch-single-node # Name the node that will run in this container.
Expand Down