1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/docs/guides-using-latest-image.md
2021-12-15 12:04:01 -03:00

666 B

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
  1. Install the crds
make crds.install
  1. Install the external-secrets Helm chart indicating the values file created before:
helm install external-secrets external-secrets/external-secrets -f values.yaml