42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
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
|