import React, {useEffect, useState, type ReactNode} from 'react'; import CodeBlock from '@theme/CodeBlock'; import Details from '@theme/Details' import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import fs from 'fs'; import styles from './styles.module.css'; interface Props { children: ReactNode; name: string, repository: string; chart: string, version: string, link: string, namespace: string, values: string, } export default function BlueprintsAddon({ children, name, repository, chart, version, link, namespace, values }: Props): JSX.Element { let valuesDecoded = atob(values) return (
How was {name} installed?}>

The {name} component was pre-installed using an addon for the EKS Blueprints for Terraform, which you can see here.

The equivalent helm chart installation would look something like this:

{`$ helm repo add ${name} ${repository} $ cat <
); }