firebolt-instance-helm

(★ 13)

Run and manage Firebolt on Kubernetes via Helm

File Explorer

  • .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

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

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 ▼

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:

# Project Badges

// repository documentation