1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00

Merge pull request #528 from rodrmartinez/docs/guide-using-latest-image

Adds guide to use upstream main image
This commit is contained in:
paul-the-alien[bot] 2021-12-15 20:57:31 +00:00 committed by GitHub
commit 0d74585e91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,26 @@
You can test a feature that was not yet released using the following method, use it at your own discretion:
1. Create a `values.yaml` file with the following content:
```
replicaCount: 1
image:
repository: ghcr.io/external-secrets/external-secrets
pullPolicy: IfNotPresent
# -- The image tag to use. The default is the chart appVersion.
tag: "main"
# -- If set, install and upgrade CRDs through helm chart.
installCRDs: false
```
2. Install the crds
```
make crds.install
```
3. Install the external-secrets Helm chart indicating the values file created before:
```
helm install external-secrets external-secrets/external-secrets -f values.yaml
```

View file

@ -35,6 +35,7 @@ nav:
- Common K8S Secret Types: guides-common-k8s-secret-types.md
- Multi Tenancy: guides-multi-tenancy.md
- Metrics: guides-metrics.md
- Using Latest Image: guides-using-latest-image.md
- Provider:
- AWS:
- Secrets Manager: provider-aws-secrets-manager.md