firebolt-instance-helm
Run and manage Firebolt on Kubernetes via Helm
File Explorer
- .gitkeep
- bug_report.yml
- config.yml
- feature.yml
- docs-sync.yaml
- docs-validate.yaml
- gha-lint.yml
- helm-release-cd.yaml
- helm-test.yaml
- helm-validate.yaml
- pr-title.yaml
- CODEOWNERS
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- check_group_structure.py
- check_helm_navigation.py
- check_lost_pages.py
- check_lost_redirects.py
- test_check_helm_navigation.py
- test_check_lost_redirects.py
- amazon-s3.mdx
- azure-blob-storage.mdx
- google-cloud-storage.mdx
- s3-compatible.mdx
- authentication.mdx
- external-postgres.mdx
- image-overrides.mdx
- multi-engine.mdx
- single-engine.mdx
- tls.mdx
- AGENTS.md
- CLAUDE.md
- docs.json
- known_pages.json
- Makefile
- monitoring.mdx
- operator-upgrade-path.mdx
- overview.mdx
- prerequisites.mdx
- quickstart.mdx
- security.mdx
- troubleshooting.mdx
- agentic-deployment.md
- local-development.md
- README.md
- memlock-setup.sh
- validate-chart.sh
- test-auth.yaml
- test-engine-configmaps.yaml
- test-engine-dns.yaml
- test-engine-pods-reachable.yaml
- test-engine-ready.yaml
- test-gateway-ready.yaml
- test-metadata-service.yaml
- test-namespace-dns.yaml
- test-postgres.yaml
- test-smoke.yaml
- test-sql-query.yaml
- _helpers.tpl
- certificates.yaml
- engine-clusterip-service.yaml
- engine-configmap.yaml
- engine-headless-service.yaml
- engine-serviceaccount.yaml
- engine-statefulset.yaml
- gateway-configmap.yaml
- gateway-deployment.yaml
- gateway-pdb.yaml
- gateway-service.yaml
- metadata-service-configmap.yaml
- metadata-service-deployment.yaml
- metadata-service-secret.yaml
- metadata-service-service.yaml
- namespace.yaml
- podmonitor-gateway.yaml
- podmonitor.yaml
- postgresql-service.yaml
- postgresql-statefulset.yaml
- .gitignore
- .helmignore
- AGENTS.md
- CHANGELOG.md
- Chart.yaml
- CLAUDE.md
- README.md
- values-dev.yaml
- values.schema.json
- values.yaml
- down.sh
- up.sh
- values.yaml
- verify.sh
- helm-test.sh
- load-e2e-images.sh
- values.yaml
- deploy.sh
- kind-config.yaml
- setup-kind-cluster.sh
- setup-local-registry.sh
- firebolt.png
- .editorconfig
- .gitignore
- .legitignore
- .pre-commit-config.yaml
- .release-please-manifest.json
- .yamllint.yaml
- AGENTS.md
- CLAUDE.md
- LICENSE
- local-floci.yaml
- Makefile
- README.md
- release-please-config.json
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
helm install
View Details ▼
helm install
Install a helm chart.
helm install {{name}} {{repository_name}}/{{chart_name}}
Install a helm chart:
helm install {{name}} {{path/to/source_directory}}
Install a helm chart from an unpacked chart directory:
helm install {{package_name}} {{https://example.com/charts/packagename-1.2.3.tgz}}
Install a helm chart from a URL:
helm
View Details ▼
helm
A package manager for Kubernetes.
Some subcommands such as `install` have their own usage documentation.
helm create {{chart_name}}
Create a helm chart:
helm repo add {{repository_name}}
Add a new helm repository:
helm repo {{[ls|list]}}
List helm repositories:
kubectl get
View Details ▼
kubectl get
Get Kubernetes objects and resources.
kubectl get {{[ns|namespaces]}}
Get all namespaces in the current cluster:
kubectl get {{[no|nodes]}} {{[-n|--namespace]}} {{namespace}}
Get nodes in a specified namespace:
kubectl get {{[po|pods]}} {{[-n|--namespace]}} {{namespace}}
Get pods in a specified namespace:
kubectl rollout
View Details ▼
kubectl rollout
Manage the rollout of a Kubernetes resource (deployments, daemonsets, and statefulsets).
kubectl rollout restart {{resource_type}}/{{resource_name}}
Start a rolling restart of a resource:
kubectl rollout status {{resource_type}}/{{resource_name}}
Watch the rolling update status of a resource:
kubectl rollout undo {{resource_type}}/{{resource_name}}
Roll back a resource to the previous revision:
