Add OpenSearch operator

This commit is contained in:
Lauri Võsandi 2024-07-27 08:42:16 +03:00
parent bd26aa46b4
commit 4141c6b8ae
2 changed files with 11 additions and 0 deletions

1
opensearch-operator/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
application.yaml

View File

@ -0,0 +1,10 @@
# OpenSearch operator
Graylog is about to move away from ElasticSearch and OpenSearch is here to stay
```
helm repo add opensearch-operator https://opensearch-project.github.io/opensearch-k8s-operator/
helm template opensearch-operator opensearch-operator/opensearch-operator -n opensearch-operator --version v2.6.1 > application.yaml
kubectl create namespace opensearch-operator
kubectl apply -n opensearch-operator -f application.yaml
```