Created
February 26, 2020 06:19
-
-
Save anoopl/dd1d8a007a4596417baf9d7faac4b9c5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: elasticsearch.k8s.elastic.co/v1 | |
kind: Elasticsearch | |
metadata: | |
name: es-test | |
spec: | |
version: 7.5.1 | |
nodeSets: | |
- name: es-test | |
count: 3 | |
config: | |
node.master: true | |
node.data: true | |
node.ingest: true | |
node.store.allow_mmap: false | |
volumeClaimTemplates: | |
- metadata: | |
name: elasticsearch-data | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 50Gi | |
storageClassName: standard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment