github.com/verrazzano/verrazzano@v1.7.0/pkg/profiles/testdata/custom_os.yaml (about) 1 # Copyright (c) 2023, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 spec: 5 components: 6 opensearch: 7 nodes: 8 # Modify java-opts for default es-master nodePool 9 # Without explicitly specifying the replicas 10 - name: es-master 11 javaOpts: "-Xmx6g -Xms6g" 12 # Scale down the default es-data nodePool 13 - name: es-data 14 replicas: 0 15 # Modify the replicas count for default es-ingest nodePool 16 - name: es-ingest 17 replicas: 2 18 # Add custom nodePools 19 - name: my-opensearch-data 20 replicas: 4 21 storage: 22 size: 100Gi 23 roles: 24 - data 25 # No replicas specified for custom nodePool 26 - name: my-opensearch-ingest 27 roles: 28 - ingest 29