# Infisical Helm Chart This is the Infisical Secrets Operator Helm chart. Find the integration documentation [here](https://infisical.com/docs/integrations/platforms/kubernetes) ## Installation To install the chart, run the following : ```sh # Add the Infisical repository helm repo add infisical 'https://dl.cloudsmith.io/public/infisical/helm-charts/helm/charts/' && helm repo update # Install Infisical Secrets Operator (with default values) helm upgrade --install --atomic \ -n infisical-dev --create-namespace \ infisical-secrets-operator infisical/secrets-operator # Install Infisical Secrets Operator (with custom inline values, replace with your own values) helm upgrade --install --atomic \ -n infisical-dev --create-namespace \ --set controllerManager.replicas=3 \ infisical-secrets-operator infisical/secrets-operator # Install Infisical Secrets Operator (with custom values file, replace with your own values file) helm upgrade --install --atomic \ -n infisical-dev --create-namespace \ -f custom-values.yaml \ infisical-secrets-operator infisical/secrets-operator ``` ## Synchronization To sync your secrets from Infisical (or from your own instance), create the below resources : ```sh # Create the tokenSecretReference (replace with your own token) kubectl create secret generic infisical-example-service-token \ --from-literal=infisicalToken="" # Create the InfisicalSecret cat <