-
-
Notifications
You must be signed in to change notification settings - Fork 166
Helm/simplify chart #1718
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
base: main
Are you sure you want to change the base?
Helm/simplify chart #1718
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,3 +1,41 @@ | ||||||||
| # Parseable Helm Chart | ||||||||
|
|
||||||||
| Refer the Parseable Helm Chart [documentation ↗︎](https://www.parseable.io/docs/installation/kubernetes-helm) | ||||||||
| ## Install (standalone, local-store) | ||||||||
|
|
||||||||
| ```sh | ||||||||
| kubectl create secret generic parseable-env-secret \ | ||||||||
| --from-literal=addr=0.0.0.0:8000 \ | ||||||||
| --from-literal=username=admin \ | ||||||||
| --from-literal=password=admin \ | ||||||||
| --from-literal=staging.dir=/parseable/staging \ | ||||||||
| --from-literal=fs.dir=/parseable/data | ||||||||
|
|
||||||||
| helm install parseable ./ -n parseable --create-namespace | ||||||||
| ``` | ||||||||
|
|
||||||||
| ## Distributed on a cloud (querier + ingestors) | ||||||||
|
|
||||||||
| Create the secret with the keys for your cloud (see the matching values file), then: | ||||||||
|
|
||||||||
| ```sh | ||||||||
| # AWS (S3) | ||||||||
| helm install parseable ./ -n parseable --create-namespace -f values-aws.yaml | ||||||||
|
|
||||||||
| # GCP (GCS) | ||||||||
| helm install parseable ./ -n parseable --create-namespace -f values-gcp.yaml | ||||||||
|
|
||||||||
| # Azure (Blob) | ||||||||
| helm install parseable ./ -n parseable --create-namespace -f values-azure.yaml | ||||||||
| ``` | ||||||||
|
|
||||||||
| ## Upgrade | ||||||||
|
|
||||||||
| ```sh | ||||||||
| helm upgrade parseable ./ -n parseable -f values.yaml | ||||||||
| ``` | ||||||||
|
Comment on lines
+33
to
+35
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Upgrade command will break cloud-specific installs.
🔧 Proposed fix ## Upgrade
```sh
-helm upgrade parseable ./ -n parseable -f values.yaml
+helm upgrade parseable ./ -n parseable -f values.yaml # standalone
+helm upgrade parseable ./ -n parseable -f values-aws.yaml # AWS
+helm upgrade parseable ./ -n parseable -f values-gcp.yaml # GCP
+helm upgrade parseable ./ -n parseable -f values-azure.yaml # Azure📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||
|
|
||||||||
| ## Uninstall | ||||||||
|
|
||||||||
| ```sh | ||||||||
| helm uninstall parseable -n parseable | ||||||||
| ``` | ||||||||
This file was deleted.
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.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Add concrete secret creation examples for each cloud provider.
The instruction "Create the secret with the keys for your cloud (see the matching values file)" requires users to cross-reference the values file to determine which keys to create. Including a concrete
kubectl create secretexample for at least one cloud (similar to the standalone section) would significantly improve usability. For GCP, note that the same secret must also contain thekey.jsonservice account key for the credentialFile mount.🤖 Prompt for AI Agents