From fc41be9db894f882383311e14a9c11279eb027b4 Mon Sep 17 00:00:00 2001 From: Grraahaam <72856427+Grraahaam@users.noreply.github.com> Date: Thu, 16 Mar 2023 01:35:43 +0100 Subject: [PATCH] chore(script): add local installation example scripts --- helm-charts/infisical/.gitignore | 3 +- helm-charts/infisical/examples/local-helm.sh | 35 +++++++++++++++++++ .../examples/{kind.sh => local-kind.sh} | 10 ------ 3 files changed, 37 insertions(+), 11 deletions(-) create mode 100755 helm-charts/infisical/examples/local-helm.sh rename helm-charts/infisical/examples/{kind.sh => local-kind.sh} (92%) diff --git a/helm-charts/infisical/.gitignore b/helm-charts/infisical/.gitignore index a2968aad7..c9fe0caa7 100644 --- a/helm-charts/infisical/.gitignore +++ b/helm-charts/infisical/.gitignore @@ -1,3 +1,4 @@ charts/ node_modules/ -package*.json \ No newline at end of file +package*.json +*.bak \ No newline at end of file diff --git a/helm-charts/infisical/examples/local-helm.sh b/helm-charts/infisical/examples/local-helm.sh new file mode 100755 index 000000000..047535da1 --- /dev/null +++ b/helm-charts/infisical/examples/local-helm.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +## Infisical local k8s development environment setup script +## using 'helm' and assume you already have a cluster and an ingress (nginx) +## + +## +## DEVELOPMENT USE ONLY +## DO NOT USE IN PRODUCTION +## + +# define variables +cluster_name=infisical +host=infisical.local + +# install infisical (local development) +helm dep update +cat <