Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RELEASE] Release version 1.3.20 #4990

Closed
37 of 73 tasks
github-actions bot opened this issue Sep 4, 2024 · 11 comments
Closed
37 of 73 tasks

[RELEASE] Release version 1.3.20 #4990

github-actions bot opened this issue Sep 4, 2024 · 11 comments

Comments

@github-actions
Copy link
Contributor

github-actions bot commented Sep 4, 2024

Release OpenSearch and OpenSearch Dashboards 1.3.20

I noticed that a manifest was automatically created in manifests/1.3.20. Please follow the following checklist to make a release.

How to use this issue

This Release Issue

This issue captures the state of the OpenSearch release, its assignee (Release Manager) is responsible for driving the release. Please contact them or @mention them on this issue for help. There are linked issues on components of the release where individual components can be tracked. For more information check the the Release Process OpenSearch Guide.

Please refer to the following link for the release version dates: Release Schedule and Maintenance Policy.

Entrance Criteria

Criteria Status Description  Comments
Each component release issue has an assigned owner 🟢
Documentation draft PRs are up and in tech review for all component changes 🟢
Sanity testing is done for all components 🟢
Code coverage has not decreased (all new code has tests) 🟢
Release notes are ready and available for all components 🟢
Roadmap is up-to-date (information is available to create release highlights) 🟢
Release ticket is cut, and there's a forum post announcing the start of the window 🟢
Any necessary security reviews are complete 🟢

OpenSearch 1.3.20 exit criteria status:

Criteria Status Description  Comments
Performance tests are run, results are posted to the release ticket and there no unexpected regressions 🔴
No unpatched vulnerabilities of medium or higher severity that have been publicly known for more than 60 days 🔴
Documentation has been fully reviewed and signed off by the documentation community. 🔴
All integration tests are passing 🔴
Release blog is ready 🔴

OpenSearch-Dashboards 1.3.20 exit criteria status:

Criteria Status Description  Comments
Documentation has been fully reviewed and signed off by the documentation community 🔴
No unpatched vulnerabilities of medium or higher severity that have been publicly known for more than 60 days 🔴
All integration tests are passing 🔴
Release blog is ready 🔴

Preparation

Campaigns

Release Branch and Version Increment - Ends December 3rd

Feature Freeze - Starts December 3rd

  • OpenSearch / OpenSearch-Dashboards core and components teams finalize their features.

Code Complete - Ends December 3rd

Release Candidate Creation and Testing - Starts December 3rd

Performance testing validation - Ends December 4th

  • Post the benchmark-tests
  • Longevity tests do not show any issues.

Pre Release - Ends December 9th

Release - Ends December 10th

Release Checklist.


Release Checklist

Pre-Release activities

  • Promote Repos.
      • OS
      • OSD
  • Promote Artifacts.
      • Windows
      • Linux Debian
      • Linux RPM
      • Linux TAR
  • Consolidated Release Notes.

Release activities

  • Docker Promotion.
  • Release Validation part 1.
      • OpenSearch and OpenSearch Dashboard Validation.
      • Validate the native plugin installation.
  • Merge consolidated release notes PR.
  • Website and Documentation Changes.
      • Merge staging website PR.
      • Promote the website changes to prod.
      • Add website alert.
  • Release Validation part 2.
      • Validate the artifact download URL's and signatures.
  • Release Validation part 3.
      • Trigger the validation build (Search for Completed validation for <> in the logs).
  • Maven Promotion.
  • Publish blog posts.
  • Advertise on Social Media.
  • Post on public slack and Github Release issue.

Post-Release activities

  • Release Tags.
  • Input Manifest Update.
  • OpenSearch Build Release notes.
  • Retrospective Issue.
  • Helm and Ansible Playbook release.
  • Upcoming Release Preparation.


Post Release

Components

Replace with links to all component tracking issues.

Component On track Release Notes
{COMPONENT_ISSUE_LINK} {INDICATOR} {STATUS}
Legend

Symbol Meaning
🟢 On track with overall release
🟡 Missed last milestone
🔴 Missed multiple milestones

@github-actions github-actions bot added release untriaged Issues that have not yet been triaged v1.3.20 labels Sep 4, 2024
@prudhvigodithi prudhvigodithi removed the untriaged Issues that have not yet been triaged label Sep 12, 2024
@bshien bshien self-assigned this Nov 19, 2024
@bshien bshien moved this from Planned (Next Quarter) to 🏗 In progress in Engineering Effectiveness Board Dec 2, 2024
@bshien
Copy link
Contributor

bshien commented Dec 5, 2024

This is an old RC. Please refer to RC below.

Release testing

We have built RC1 and it is ready for testing.


OpenSearch Docker
Start without security
Docker command docker pull docker pull opensearchstaging/opensearch:1.3.20.10576 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.20.10576
Connect command curl http://localhost:9200/
Start with security
Docker command docker pull opensearchstaging/opensearch:1.3.20.10576 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.20.10576
Connect command curl --insecure https://admin:admin@localhost:9200/
OpenSearch Dashboards Docker
Start without security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8119 && docker run -it -d --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.20.8119
URL http://localhost:5601/
Start with security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8119 && docker run -it -d --network="host" opensearchstaging/opensearch-dashboards:1.3.20.8119
URL http://localhost:5601/

Use Docker-Compose to setup a cluster

docker-compose.yml

    
version: '3'
services:
  opensearch-node1:
    image: opensearchstaging/opensearch:1.3.20.10576
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node1
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
        hard: 65536
    volumes:
      - opensearch-data1:/usr/share/opensearch/data
    ports:
      - 9200:9200
      - 9600:9600 # required for Performance Analyzer
    networks:
      - opensearch-net
  opensearch-node2:
    image: opensearchstaging/opensearch:1.3.20.10576
    container_name: opensearch-node2
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node2
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - opensearch-data2:/usr/share/opensearch/data
    networks:
      - opensearch-net
  opensearch-dashboards:
    image: opensearchstaging/opensearch-dashboards:1.3.20.8119
    container_name: opensearch-dashboards
    ports:
      - 5601:5601
    expose:
      - "5601"
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200/","https://opensearch-node2:9200/"]'
    networks:
      - opensearch-net

volumes:
opensearch-data1:
opensearch-data2:

networks:
opensearch-net:

Download the above docker-compose.yml on your machine.

Get latest image versions docker-compose pull.
Start the cluster docker-compose up.

Use below artifacts to deploy OpenSearch and OpenSearch Dashboards on different platforms

OpenSearch - Build 10576

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

OpenSearch Dashboards - Build 8119

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

Integration Test Results

Thanks!

@opensearch-ci-bot
Copy link
Collaborator

opensearch-ci-bot commented Dec 6, 2024

Core Components CommitID(after 2024-12-09) & Release Notes info

Repo Branch CommitID Commit Date Release Notes Exists
OpenSearch [9e04292bd003dc77f94751d0949d902fbae65e40] True
OpenSearch-Dashboards [cde43100e4a6b955b420c3de55f0b57844631537] True
alerting [fa2cd3cf26f2696377ac3ae5e94844191d3d0a12] True
alertingDashboards [41e7b755dc94f009f649311f038915bae853d2b7] True
anomaly-detection [1359e8cc8a19c13338508df14f17e596306cf719] False
anomalyDetectionDashboards [4500d5c3ce2b3f65e597c3b17c94addd4bdc3903] True
asynchronous-search [47c6df905924acaea7fe580f3c8884d33d23bc0e] False
common-utils [7093ec2d8b6a65da110e11ae002ed8c64fc19e06] False
cross-cluster-replication [e3e924d5becd4c9b442e1cf7adcb8dab7dd0c8c1] False
functionalTestDashboards [1.3] False
ganttChartDashboards [8cd176846d3fa9dbe21c8d1e53f1c552447930b8] False
index-management [be2c18fca0488e08f57ae05001fc91d04a684e33] False
indexManagementDashboards [6e5944d6ebca021d6325db86ae37d9d179d9cf89] False
job-scheduler [288070c248e266d58b33f879245263d484568bcf] False
k-NN [8584ba03b8c380f79d366a82fbbe78c5ea44faad] False
ml-commons [46338a4d116ea823607ac5143a11ed27eefe9d3b] True
observabilityDashboards [a89953d5b96753d5bad4ba51cc48230fdaf51836] False
opensearch-observability [7ca4cf480e2a8b4d48afd79a13878cedf9e24a88] False
opensearch-reports [8f4ff5b72ed9d3816f40aa60eeb8656a198e083b] True
performance-analyzer [c1c079f6a42ddf4534ebeb757707d4cc7df4b762] False
queryWorkbenchDashboards [e11eddb32387e0e47678e4d2869f4dd3555e0634] True
reportsDashboards [8435372f106aed24d28fd68efd385bef794597d2] True
security [4b61633630ec2ed8e86c81c64e8a249ede8cbb09] True
securityDashboards [80b308c48f10d4d027e412ea98cc321ca4c03b0a] False
sql [6116c33d66b06ecdac8d170a318686d42592b1cc] False

@bshien
Copy link
Contributor

bshien commented Dec 6, 2024

This is an old RC. Please refer to RC below.

Release testing

We have built RC2 and it is ready for testing.


OpenSearch Docker
Start without security
Docker command docker pull docker pull opensearchstaging/opensearch:1.3.20.10581 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.20.10581
Connect command curl http://localhost:9200/
Start with security
Docker command docker pull opensearchstaging/opensearch:1.3.20.10581 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.20.10581
Connect command curl --insecure https://admin:admin@localhost:9200/
OpenSearch Dashboards Docker
Start without security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8125 && docker run -it -d --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.20.8125
URL http://localhost:5601/
Start with security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8125 && docker run -it -d --network="host" opensearchstaging/opensearch-dashboards:1.3.20.8125
URL http://localhost:5601/

Use Docker-Compose to setup a cluster

docker-compose.yml

    
version: '3'
services:
  opensearch-node1:
    image: opensearchstaging/opensearch:1.3.20.10581
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node1
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
        hard: 65536
    volumes:
      - opensearch-data1:/usr/share/opensearch/data
    ports:
      - 9200:9200
      - 9600:9600 # required for Performance Analyzer
    networks:
      - opensearch-net
  opensearch-node2:
    image: opensearchstaging/opensearch:1.3.20.10581
    container_name: opensearch-node2
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node2
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - opensearch-data2:/usr/share/opensearch/data
    networks:
      - opensearch-net
  opensearch-dashboards:
    image: opensearchstaging/opensearch-dashboards:1.3.20.8125
    container_name: opensearch-dashboards
    ports:
      - 5601:5601
    expose:
      - "5601"
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200/","https://opensearch-node2:9200/"]'
    networks:
      - opensearch-net

volumes:
opensearch-data1:
opensearch-data2:

networks:
opensearch-net:

Download the above docker-compose.yml on your machine.

Get latest image versions docker-compose pull.
Start the cluster docker-compose up.

Use below artifacts to deploy OpenSearch and OpenSearch Dashboards on different platforms

OpenSearch - Build 10581

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

OpenSearch Dashboards - Build 8125

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

Integration Test Results

Thanks!

@bshien
Copy link
Contributor

bshien commented Dec 9, 2024

This is an old RC. Please refer to RC below.

Release testing

We have built RC3 and it is ready for testing.


OpenSearch Docker
Start without security
Docker command docker pull docker pull opensearchstaging/opensearch:1.3.20.10585 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.20.10585
Connect command curl http://localhost:9200/
Start with security
Docker command docker pull opensearchstaging/opensearch:1.3.20.10585 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.20.10585
Connect command curl --insecure https://admin:admin@localhost:9200/
OpenSearch Dashboards Docker
Start without security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8133 && docker run -it -d --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.20.8133
URL http://localhost:5601/
Start with security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8133 && docker run -it -d --network="host" opensearchstaging/opensearch-dashboards:1.3.20.8133
URL http://localhost:5601/

Use Docker-Compose to setup a cluster

docker-compose.yml

    
version: '3'
services:
  opensearch-node1:
    image: opensearchstaging/opensearch:1.3.20.10585
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node1
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
        hard: 65536
    volumes:
      - opensearch-data1:/usr/share/opensearch/data
    ports:
      - 9200:9200
      - 9600:9600 # required for Performance Analyzer
    networks:
      - opensearch-net
  opensearch-node2:
    image: opensearchstaging/opensearch:1.3.20.10585
    container_name: opensearch-node2
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node2
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - opensearch-data2:/usr/share/opensearch/data
    networks:
      - opensearch-net
  opensearch-dashboards:
    image: opensearchstaging/opensearch-dashboards:1.3.20.8133
    container_name: opensearch-dashboards
    ports:
      - 5601:5601
    expose:
      - "5601"
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200/","https://opensearch-node2:9200/"]'
    networks:
      - opensearch-net

volumes:
opensearch-data1:
opensearch-data2:

networks:
opensearch-net:

Download the above docker-compose.yml on your machine.

Get latest image versions docker-compose pull.
Start the cluster docker-compose up.

Use below artifacts to deploy OpenSearch and OpenSearch Dashboards on different platforms

OpenSearch - Build 10585

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

OpenSearch Dashboards - Build 8133

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

Integration Test Results

Thanks!

@bshien
Copy link
Contributor

bshien commented Dec 11, 2024

This is an old RC. Please refer to RC below.

Release testing

We have built RC5 and it is ready for testing.


OpenSearch Docker
Start without security
Docker command docker pull docker pull opensearchstaging/opensearch:1.3.20.10599 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.20.10599
Connect command curl http://localhost:9200/
Start with security
Docker command docker pull opensearchstaging/opensearch:1.3.20.10599 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.20.10599
Connect command curl --insecure https://admin:admin@localhost:9200/
OpenSearch Dashboards Docker
Start without security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8136 && docker run -it -d --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.20.8136
URL http://localhost:5601/
Start with security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8136 && docker run -it -d --network="host" opensearchstaging/opensearch-dashboards:1.3.20.8136
URL http://localhost:5601/

Use Docker-Compose to setup a cluster

docker-compose.yml

    
version: '3'
services:
  opensearch-node1:
    image: opensearchstaging/opensearch:1.3.20.10599
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node1
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
        hard: 65536
    volumes:
      - opensearch-data1:/usr/share/opensearch/data
    ports:
      - 9200:9200
      - 9600:9600 # required for Performance Analyzer
    networks:
      - opensearch-net
  opensearch-node2:
    image: opensearchstaging/opensearch:1.3.20.10599
    container_name: opensearch-node2
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node2
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - opensearch-data2:/usr/share/opensearch/data
    networks:
      - opensearch-net
  opensearch-dashboards:
    image: opensearchstaging/opensearch-dashboards:1.3.20.8136
    container_name: opensearch-dashboards
    ports:
      - 5601:5601
    expose:
      - "5601"
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200/","https://opensearch-node2:9200/"]'
    networks:
      - opensearch-net

volumes:
opensearch-data1:
opensearch-data2:

networks:
opensearch-net:

Download the above docker-compose.yml on your machine.

Get latest image versions docker-compose pull.
Start the cluster docker-compose up.

Use below artifacts to deploy OpenSearch and OpenSearch Dashboards on different platforms

OpenSearch - Build 10599

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

OpenSearch Dashboards - Build 8136

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

Integration Test Results

Thanks!

@zelinh zelinh self-assigned this Dec 11, 2024
@peterzhuamazon
Copy link
Member

We are delaying the release to tomorrow (12/11/2024) due to pending a few fixes.

Thanks.

@peterzhuamazon peterzhuamazon self-assigned this Dec 11, 2024
@zelinh
Copy link
Member

zelinh commented Dec 11, 2024

Release testing

We have built RC6 and it is ready for testing.


OpenSearch Docker
Start without security
Docker command docker pull docker pull opensearchstaging/opensearch:1.3.20.10605 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:1.3.20.10605
Connect command curl http://localhost:9200/
Start with security
Docker command docker pull opensearchstaging/opensearch:1.3.20.10605 && docker run -it -d -p 9200:9200 -e "discovery.type=single-node" opensearchstaging/opensearch:1.3.20.10605
Connect command curl --insecure https://admin:admin@localhost:9200/
OpenSearch Dashboards Docker
Start without security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8139 && docker run -it -d --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:1.3.20.8139
URL http://localhost:5601/
Start with security
Docker command docker pull opensearchstaging/opensearch-dashboards:1.3.20.8139 && docker run -it -d --network="host" opensearchstaging/opensearch-dashboards:1.3.20.8139
URL http://localhost:5601/

Use Docker-Compose to setup a cluster

docker-compose.yml

    
version: '3'
services:
  opensearch-node1:
    image: opensearchstaging/opensearch:1.3.20.10605
    container_name: opensearch-node1
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node1
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
        hard: 65536
    volumes:
      - opensearch-data1:/usr/share/opensearch/data
    ports:
      - 9200:9200
      - 9600:9600 # required for Performance Analyzer
    networks:
      - opensearch-net
  opensearch-node2:
    image: opensearchstaging/opensearch:1.3.20.10605
    container_name: opensearch-node2
    environment:
      - cluster.name=opensearch-cluster
      - node.name=opensearch-node2
      - discovery.seed_hosts=opensearch-node1,opensearch-node2
      - cluster.initial_master_nodes=opensearch-node1,opensearch-node2
      - bootstrap.memory_lock=true
      - "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - opensearch-data2:/usr/share/opensearch/data
    networks:
      - opensearch-net
  opensearch-dashboards:
    image: opensearchstaging/opensearch-dashboards:1.3.20.8139
    container_name: opensearch-dashboards
    ports:
      - 5601:5601
    expose:
      - "5601"
    environment:
      OPENSEARCH_HOSTS: '["https://opensearch-node1:9200/","https://opensearch-node2:9200/"]'
    networks:
      - opensearch-net

volumes:
opensearch-data1:
opensearch-data2:

networks:
opensearch-net:

Download the above docker-compose.yml on your machine.

Get latest image versions docker-compose pull.
Start the cluster docker-compose up.

Use below artifacts to deploy OpenSearch and OpenSearch Dashboards on different platforms

OpenSearch - Build 10605

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

OpenSearch Dashboards - Build 8139

x64 artifacts: [manifest] [tar] [rpm] [yum] [windows]

arm64 artifacts: [manifest] [tar] [rpm] [yum]

@peterzhuamazon
Copy link
Member

New Release Notes:

@zelinh
Copy link
Member

zelinh commented Dec 11, 2024

Signature verified.

☁  ~/workplace/test gpg --verify opensearch-1.3.20-linux-arm64.tar.gz.sig
gpg: assuming signed data in 'opensearch-1.3.20-linux-arm64.tar.gz'
gpg: Signature made Wed Dec 11 13:59:22 2024 PST
gpg:                using RSA key C2EE2AF6542C03B4
gpg: Good signature from "OpenSearch project <opensearch@amazon.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: C5B7 4989 65EF D1C2 924B  A9D5 39D3 1987 9310 D3FC
     Subkey fingerprint: 2187 3199 B103 0FCD 49DA  83F8 C2EE 2AF6 542C 03B4

@peterzhuamazon
Copy link
Member

Native plugin:


$ ./opensearch-plugin install repository-s3
-> Installing repository-s3
-> Downloading repository-s3 from opensearch
[=================================================] 100%
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@     WARNING: plugin requires additional permissions     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
* java.lang.RuntimePermission accessDeclaredMembers
* java.lang.RuntimePermission getClassLoader
* java.lang.reflect.ReflectPermission suppressAccessChecks
* java.net.NetPermission setDefaultAuthenticator
* java.net.SocketPermission * connect,resolve
* java.util.PropertyPermission opensearch.allow_insecure_settings read,write
See http://docs.oracle.com/javase/8/docs/technotes/guides/security/permissions.html
for descriptions of what these permissions allow and the associated risks.

Continue with installation? [y/N]y
-> Installed repository-s3 with folder name repository-s3

@zelinh
Copy link
Member

zelinh commented Dec 12, 2024

OpenSearch 1.3.20 has been release.
Maven is available at https://aws.oss.sonatype.org/content/repositories/releases/org/opensearch/opensearch-core/1.3.20/

@zelinh zelinh closed this as completed Dec 12, 2024
@github-project-automation github-project-automation bot moved this from 🏗 In progress to ✅ Done in Engineering Effectiveness Board Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: ✅ Done
Development

No branches or pull requests

5 participants