-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from kexa-io/dev
fix: Env, Kubernetes, Workspace secrets & readme
- Loading branch information
Showing
5 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ kexa-chart/files/environment/* | |
kexa-chart/files/config/* | ||
node_modules/* | ||
./*.yaml | ||
*.yaml | ||
.env |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
# helm-charts | ||
Helm charts to install & run Kexa with postgres/mariaDB and Grafana | ||
|
||
|
||
### Create your secrets | ||
|
||
*For most addons credentials* | ||
```bash | ||
kubectl create secret generic kexa-environment-secret --from-file=.env=.env | ||
``` | ||
|
||
*For Kubernetes credentials* | ||
```bash | ||
kubectl create secret generic kubeconfig-secret --from-file=kubeconfig.yaml=kubeconfig.yaml | ||
``` | ||
|
||
*For Google Workspace credentials* | ||
```bash | ||
kubectl create secret generic workspace-secret --from-file=workspace_credentials.json=/path/to/your/credentials.json | ||
``` | ||
|
||
### Install the chart | ||
|
||
```bash | ||
helm install kexa-helm .\kexa-chart\ | ||
``` | ||
|
||
### Read the instructions in your console ! |
This file contains 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
This file contains 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
This file contains 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