Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opensearch helm chart #3009

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions charts/camunda-platform-8.6-opensearch/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

# Scripts
convertValuesDoc.sh

# Tests
test/

# Values for previous versions
values/

# Go.
go.mod
go.sum
77 changes: 77 additions & 0 deletions charts/camunda-platform-8.6-opensearch/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
apiVersion: v2
name: camunda-platform
version: 11.2.1
appVersion: 8.6.x
description: |
Camunda 8 Self-Managed Helm charts.
Camunda's process automation platform allows developers to design, automate and improve processes.
type: application
icon: https://helm.camunda.io/imgs/camunda.svg
home: https://docs.camunda.io/docs/self-managed/overview/
sources:
- https://github.com/camunda/camunda-platform-helm
keywords:
- bpm
- bpmn
- camunda-platform
- dmn
- process-engine
- workflow
dependencies:
# Identity Dependencies.
- name: keycloak
alias: identityKeycloak
repository: oci://registry-1.docker.io/bitnamicharts
version: 22.2.6
condition: "identity.keycloak.enabled,identityKeycloak.enabled"
- name: postgresql
alias: identityPostgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.x.x
condition: "identity.postgresql.enabled,identityPostgresql.enabled"
# WebModeler Dependencies.
- name: web-modeler-postgresql
alias: postgresql
repository: "file://../web-modeler-postgresql-15"
version: 15.x.x
condition: "postgresql.enabled"
# Shared Dependencies.
- name: elasticsearch
repository: oci://registry-1.docker.io/bitnamicharts
version: 21.4.5
condition: "elasticsearch.enabled"
- name: opensearch
repository: oci://registry-1.docker.io/bitnamicharts
# version: 1.6.1
version: 0.13.0
condition: "opensearch.enabled"
# Helpers.
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.x.x
maintainers:
- name: aabouzaid
email: [email protected]
- name: drodriguez-305
email: [email protected]
- name: hamza-m-masood
email: [email protected]
- name: jessesimpson36
email: [email protected]
annotations:
camunda.io/helmCLIVersion: "3.17.0"
artifacthub.io/links: |
- name: Camunda 8 docs
url: https://docs.camunda.io/
- name: Camunda 8 Self-Managed docs
url: https://docs.camunda.io/docs/self-managed/about-self-managed/
- name: Camunda 8 Self-Managed Helm charts
url: https://github.com/camunda/camunda-platform-helm
artifacthub.io/containsSecurityUpdates: "false"
artifacthub.io/changes: |
- kind: fixed
description: "Added support for optimize env vars for migration initcontainer"
- kind: fixed
description: "Apply password key from subchart"
- kind: fixed
description: "Add new line to 8.6"
Loading
Loading