Last active
July 17, 2025 22:38
-
-
Save jgsuess/8c5403c1a74cb306667f3ce80eac1092 to your computer and use it in GitHub Desktop.
FHIRFLARE IG Toolkit via Kubernetes
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
#!/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