-
Notifications
You must be signed in to change notification settings - Fork 345
feat: InfluxDB3 Enteprise chart #752
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
Open
alespour
wants to merge
82
commits into
master
Choose a base branch
from
feat/influxdb3-enteprise
base: master
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
Conversation
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.
This PR provides Helm chart for InfluxDB3 Enterprise. Components (ingesters, compactor, queriers and processin engines)
run in full isolation.
Notes:
/healthendpoint is disabled by default for simpler probes configurationNeeds clarification:
command:entry and relying on the default image entrypoint?Core Templates
configmap.yaml- Non-sensitive shared configuration (cluster settings, storage config, resource limits) for all podsserviceaccount.yaml- Kubernetes identity for InfluxDB pods to interact with the cluster APISecrets
secret-object-storage.yaml- Credentials (access keys, service accounts) for accessing S3/Azure/GCS object storagesecret-license.yaml- InfluxDB Enterprise license information (email or license file) required for activationsecret-tls.yaml- Optional TLS certificates for secure ingress connectionsStatefulSets
ingester-statefulset.yaml- Deploys ingester nodes with persistent WAL storage for handling data writesquerier-statefulset.yaml- Deploys querier nodescompactor-statefulset.yaml- Deploys single compactor node for background data optimization (merging small Parquet files)processor-statefulset.yaml- Optionally deploys Processing Engine nodes for running custom Python pluginsServices
ingester-service.yaml- Load balances write traffic across multiple ingester podsquerier-service.yaml- Load balances query traffic across multiple querier podscompactor-service.yaml- Provides internal access for compactor metrics and health checks (no external traffic)processor-service.yaml- Provides access to processor pods for metrics, health checks, and HTTP-triggered pluginsIngress
ingress-write.yaml- Routes external write traffic to the ingester serviceingress-query.yaml- Routes external query traffic to the querier serviceingress-processor.yaml- Optionally routes external HTTP requests to Processing Engine pluginsStorage
pvc-object-storage.yaml- PersistentVolumeClaim for file-based object storage (requires RWX storage class)Security & Monitoring
networkpolicy.yaml- Optional network policies to restrict traffic between components and external accessservicemonitor.yaml- Optional Prometheus Operator resources for automated metrics collection from all componentspdb.yaml- Pod Disruption Budgets for high availability during node maintenance