mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-09-17 18:35:02 +00:00
23 lines
806 B
Bash
Executable File
23 lines
806 B
Bash
Executable File
#!/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 --set hapi-fhir-jpaserver.postgresql.primary.persistence.storageClass=gp2 --atomic |