https://github.com/cloud-gov/opensearch-boshrelease
A bosh release for opensearch
https://github.com/cloud-gov/opensearch-boshrelease
Last synced: 6 months ago
JSON representation
A bosh release for opensearch
- Host: GitHub
- URL: https://github.com/cloud-gov/opensearch-boshrelease
- Owner: cloud-gov
- License: apache-2.0
- Created: 2023-07-26T18:02:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-01-13T16:41:52.000Z (6 months ago)
- Last Synced: 2026-01-13T18:42:20.145Z (6 months ago)
- Language: HTML
- Size: 2.28 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# opensearch-boshrelease
A BOSH release for [Opensearch](https://opensearch.org/)
## How to update the vendored Python version
1. Follow these steps:
1. Follow these steps to ensure that the changes to `.final_builds/package/python3` get updated in the `final-builds-opensearch.tgz` file tracked in S3:
## How to add blobs for Logstash filter plugins
1. Install Java locally and download Logstash version from `config/blobs.yml` to your local machine
1. From the directory for Logstash on your machine, install the relevant plugin:
```shell
bin/logstash-plugin install logstash-filter-alter
```
1. Check what version of the plugin was installed:
```shell
bin/logstash-plugin list --verbose | grep logstash-filter-alter
```
1. [Create an offline version of the plugin for use with BOSH](https://www.elastic.co/guide/en/logstash/current/offline-plugins.html) and make sure to use the correct version from the previous step in the filename:
```shell
bin/logstash-plugin prepare-offline-pack --output logstash-filter-alter-3.0.3.zip logstash-filter-alter
```
1. Add the filter plugin to the blobs referencing the path to the generated offline file on your machine:
```shell
bosh add-blob logstash/logstash-filter-alter-3.0.3.zip /path/to/logstash-filter-alter-3.0.3.zip
```
1. Upload the updated blobs the S3 blobstore:
```shell
bosh upload-blobs
```