Skip to content

Instantly share code, notes, and snippets.

@jgsuess
Last active July 17, 2025 22:38
Show Gist options
  • Save jgsuess/8c5403c1a74cb306667f3ce80eac1092 to your computer and use it in GitHub Desktop.
Save jgsuess/8c5403c1a74cb306667f3ce80eac1092 to your computer and use it in GitHub Desktop.
FHIRFLARE IG Toolkit via Kubernetes
#!/bin/bash
#
# FHIRFLARE-IG-Toolkit Installation Script
#
# Description:
# This script installs the FHIRFLARE-IG-Toolkit Helm chart into a Kubernetes cluster.
# It adds the FHIRFLARE-IG-Toolkit Helm repository and then installs the chart
# in the 'flare' namespace, creating the namespace if it doesn't exist.
#
# Usage:
# ./install.sh
#
# Requirements:
# - Helm (v3+)
# - kubectl configured with access to your Kubernetes cluster
#
# Add the FHIRFLARE-IG-Toolkit Helm repository
helm repo add flare https://jgsuess.github.io/FHIRFLARE-IG-Toolkit/
# Install the FHIRFLARE-IG-Toolkit chart in the 'flare' namespace
helm install flare/fhirflare-ig-toolkit --namespace flare --create-namespace --generate-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment