-
Notifications
You must be signed in to change notification settings - Fork 0
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
Increase ES disk size, Fix tests and fetch correct Camunda version #213
Open
rodrigo-lourenco-lopes
wants to merge
5
commits into
main
Choose a base branch
from
rl-increase-es-memory
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
16e76ae
feat: increase ES memory for the benchmarks.
rodrigo-lourenco-lopes d57ed28
fix: replace release tag
rodrigo-lourenco-lopes 87e0ae0
fix: fix tests to accommodate the changes in charts refactorings.
rodrigo-lourenco-lopes e67eb50
fix: fix maintainer name.
rodrigo-lourenco-lopes 25a8e05
refactor: remove unused, and rename appropriately golden files.
rodrigo-lourenco-lopes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ sources: | |
dependencies: | ||
- name: camunda-platform | ||
repository: "oci://ghcr.io/camunda/helm" | ||
version: "0.0.0-12.0.0-alpha1" | ||
version: "0.0.0-8.7.0-alpha1" | ||
condition: "camunda.enabled" | ||
- name: prometheus-elasticsearch-exporter | ||
repository: "https://prometheus-community.github.io/helm-charts" | ||
version: 6.4.0 | ||
condition: "prometheus-elasticsearch-exporter.enabled" | ||
maintainers: | ||
- name: Zelldon | ||
- name: ChrisKujawa | ||
email: [email protected] | ||
annotations: | ||
artifacthub.io/links: | | ||
|
192 changes: 192 additions & 0 deletions
192
charts/zeebe-benchmark/test/golden/c8-core-configmap.golden.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
--- | ||
# Source: zeebe-benchmark/charts/camunda-platform/templates/core/configmap.yaml | ||
kind: ConfigMap | ||
metadata: | ||
name: benchmark-test-core-configuration | ||
labels: | ||
app: camunda-platform | ||
app.kubernetes.io/name: camunda-platform | ||
app.kubernetes.io/instance: benchmark-test | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/part-of: camunda-platform | ||
app.kubernetes.io/component: core | ||
app.kubernetes.io/version: "8.7.0-alpha1" | ||
apiVersion: v1 | ||
data: | ||
startup.sh: | | ||
# The Node ID depends on the Pod name so it cannot be templated in the StatefulSet level. | ||
export ZEEBE_BROKER_CLUSTER_NODEID="${ZEEBE_BROKER_CLUSTER_NODEID:-$[${K8S_NAME##*-} * 1 + 0]}" | ||
echo "export ZEEBE_BROKER_CLUSTER_NODEID=${ZEEBE_BROKER_CLUSTER_NODEID}" >> ~/.bashrc | ||
|
||
exec /usr/local/camunda/bin/camunda | ||
application.yaml: | | ||
|
||
spring: | ||
profiles: | ||
active: auth | ||
|
||
management: | ||
server: | ||
port: 9600 | ||
|
||
server: | ||
forward-headers-strategy: framework | ||
address: 0.0.0.0 | ||
port: 8080 | ||
|
||
zeebe: | ||
host: 0.0.0.0 | ||
log: | ||
level: "info" | ||
|
||
broker: | ||
# zeebe.broker.experimental | ||
experimental: | ||
engine: | ||
authorization: | ||
enableAuthorization: true | ||
|
||
# zeebe.broker.gateway | ||
gateway: | ||
enable: true | ||
network: | ||
host: 0.0.0.0 | ||
port: 26500 | ||
|
||
# zeebe.broker.network | ||
network: | ||
advertisedHost: "${K8S_NAME}.${K8S_SERVICE_NAME}" | ||
host: 0.0.0.0 | ||
commandApi: | ||
port: 26501 | ||
internalApi: | ||
port: 26502 | ||
|
||
# zeebe.broker.cluster | ||
cluster: | ||
initialContactPoints: | ||
- ${K8S_SERVICE_NAME}-0.${K8S_SERVICE_NAME}:26502 | ||
- ${K8S_SERVICE_NAME}-1.${K8S_SERVICE_NAME}:26502 | ||
- ${K8S_SERVICE_NAME}-2.${K8S_SERVICE_NAME}:26502 | ||
clusterSize: "3" | ||
replicationFactor: "3" | ||
partitionsCount: "3" | ||
clusterName: benchmark-test-zeebe | ||
|
||
# zeebe.broker.data | ||
data: | ||
snapshotPeriod: 5m | ||
freeSpace: | ||
processing: 2GB | ||
replication: 3GB | ||
|
||
# zeebe.broker.threads | ||
threads: | ||
cpuThreadCount: "3" | ||
ioThreadCount: "3" | ||
|
||
# zeebe.broker.exporters | ||
exporters: | ||
elasticsearch: | ||
className: "io.camunda.zeebe.exporter.ElasticsearchExporter" | ||
args: | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
index: | ||
prefix: "zeebe-record" | ||
CamundaExporter: | ||
className: "io.camunda.exporter.CamundaExporter" | ||
args: | ||
connect: | ||
type: elasticsearch | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
createSchema: true | ||
|
||
camunda: | ||
rest: | ||
query: | ||
enabled: true | ||
|
||
# | ||
# Camunda Database Configuration. | ||
# | ||
database: | ||
type: elasticsearch | ||
# Cluster name | ||
clusterName: elasticsearch | ||
# Elasticsearch full url | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
|
||
# | ||
# Camunda Operate Configuration. | ||
# | ||
operate: | ||
|
||
# ELS instance to store Operate data | ||
elasticsearch: | ||
# Cluster name | ||
clusterName: elasticsearch | ||
# Host | ||
host: benchmark-test-elasticsearch | ||
# Transport port | ||
port: 9200 | ||
# Elasticsearch full url | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
# ELS instance to export Zeebe data to | ||
zeebeElasticsearch: | ||
# Cluster name | ||
clusterName: elasticsearch | ||
# Host | ||
host: benchmark-test-elasticsearch | ||
# Transport port | ||
port: 9200 | ||
# Index prefix, configured in Zeebe Elasticsearch exporter | ||
prefix: zeebe-record | ||
# Elasticsearch full url | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
# Zeebe instance | ||
zeebe: | ||
# Gateway address | ||
gatewayAddress: "benchmark-test-core:26500" | ||
|
||
# | ||
# Camunda Tasklist Configuration. | ||
# | ||
tasklist: | ||
|
||
identity: | ||
redirectRootUrl: "http://localhost:8082/tasklist" | ||
|
||
# Set Tasklist username and password. | ||
# If user with <username> does not exists it will be created. | ||
# Default: demo/demo | ||
#username: | ||
#password: | ||
# ELS instance to store Tasklist data | ||
elasticsearch: | ||
# Cluster name | ||
clusterName: elasticsearch | ||
# Host | ||
host: benchmark-test-elasticsearch | ||
# Transport port | ||
port: 9200 | ||
# Elasticsearch full url | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
# ELS instance to export Zeebe data to | ||
zeebeElasticsearch: | ||
# Cluster name | ||
clusterName: elasticsearch | ||
# Host | ||
host: benchmark-test-elasticsearch | ||
# Transport port | ||
port: 9200 | ||
# Index prefix, configured in Zeebe Elasticsearch exporter | ||
prefix: zeebe-record | ||
# Elasticsearch full url | ||
url: "http://benchmark-test-elasticsearch:9200" | ||
# Zeebe instance | ||
zeebe: | ||
# Gateway address | ||
gatewayAddress: benchmark-test-core:26500 | ||
restAddress: "http://benchmark-test-core:8080" | ||
|
||
log4j2.xml: | |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️