add opensearch app
This commit is contained in:
41
argocd/apps/opensearch.yaml
Normal file
41
argocd/apps/opensearch.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: opensearch
|
||||
namespace: argocd
|
||||
finalizers:
|
||||
- resources-finalizer.argocd.argoproj.io
|
||||
spec:
|
||||
project: default
|
||||
source:
|
||||
repoURL: https://opensearch-project.github.io/helm-charts/
|
||||
chart: opensearch
|
||||
targetRevision: "3.7.0"
|
||||
helm:
|
||||
values: |
|
||||
singleNode: true
|
||||
replicas: 1
|
||||
opensearchJavaOpts: "-Xmx512M -Xms512M"
|
||||
resources:
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 768Mi
|
||||
limits:
|
||||
cpu: 500m
|
||||
memory: 1Gi
|
||||
persistence:
|
||||
enabled: true
|
||||
size: 8Gi
|
||||
storageClass: yc-network-hdd
|
||||
config:
|
||||
opensearch.yml: |
|
||||
cluster.name: opensearch-cluster
|
||||
network.host: 0.0.0.0
|
||||
discovery.type: single-node
|
||||
plugins.security.disabled: true
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: opensearch
|
||||
syncPolicy:
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
Reference in New Issue
Block a user