Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
elastic 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte committed Mar 10, 2021
1 parent 93d31d1 commit 4c2dcd8
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
31 changes: 31 additions & 0 deletions charts/elastic/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apiVersion: v2
name: elastic
description: Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents
icon: https://downloads.mesosphere.com/universe/assets/elasticsearch-small.png
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 1
dependencies:
- name: elasticsearch
version: 7.10.2
repository: https://helm.elastic.co
enabled: true



19 changes: 19 additions & 0 deletions charts/elastic/values.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"elasticsearch": {
"description": "postgres specific configuration",
"type": "object",
"properties": {
"image": {
"description": "image docker",
"type": "string",
"enum": ["docker.elastic.co/elasticsearch/elasticsearch", "docker.elastic.co/elasticsearch/elasticsearch-oss"],
"default": "docker.elastic.co/elasticsearch/elasticsearch"
}
}
}
}

}
4 changes: 4 additions & 0 deletions charts/elastic/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch
sysctlInitContainer:
enabled: false

0 comments on commit 4c2dcd8

Please sign in to comment.