feat(eks): Deploy ECK operator for EKS dual-region#1964
Draft
marcel-dias wants to merge 6 commits intomainfrom
Draft
feat(eks): Deploy ECK operator for EKS dual-region#1964marcel-dias wants to merge 6 commits intomainfrom
marcel-dias wants to merge 6 commits intomainfrom
Conversation
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
Contributor
🔀 Skip Workflow ChecklistCheck the boxes below to skip specific workflows for this PR. Global options
Individual workflows
This checklist is automatically managed. Checked items will skip the corresponding workflow. |
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
Signed-off-by: Marcel Dias <marcel.dias@camunda.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
feat(eks): Deploy ECK operator for EKS dual-region
references: https://github.com/camunda/team-infrastructure-experience/issues/1026
This pull request refactors the dual-region AWS EKS test and deployment workflow to use the ECK (Elasticsearch Operator) for managing Elasticsearch clusters, replacing the previous Helm-based approach. The changes affect CI workflow triggers, environment variables, deployment/cleanup steps, Helm values, procedure scripts, and test helpers to align with the new ECK-based Elasticsearch management. This improves modularity, cluster lifecycle management, and backup/restore reliability.
ECK Operator integration and workflow updates:
.github/workflows/aws_kubernetes_eks_dual_region_tests.ymlworkflow now triggers on changes to ECK operator-related files and directories, and adds deployment and cleanup steps for Elasticsearch via ECK in both London and Paris clusters. It also sets new environment variables for namespaces and release names, and updates job configurations to use these consistently. [1] [2] [3] [4] [5] [6] [7]Helm values and exporter configuration changes:
camunda-values.ymlremoves the embedded Elasticsearch configuration, adds documentation for ECK-managed Elasticsearch, and updates Zeebe exporter URLs to point to ECK-managed services. This ensures Camunda components connect to the correct Elasticsearch endpoints. [1] [2] [3] [4]Procedure and secret management improvements:
create_elasticsearch_secrets.shscript is reworked to create ECK-compatible secrets for S3 snapshot/backup credentials, aligning environment variable usage and secret structure with ECK requirements. [1] [2]Test and helper updates for ECK:
Script and exporter URL generation alignment:
generate_zeebe_helm_values.shscript is updated to generate Zeebe exporter URLs using ECK-managed service names, ensuring consistency with the new deployment model. [1] [2]