Skip to content

Commit

Permalink
Prepare 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke committed Mar 28, 2021
1 parent debdc01 commit e3ff8ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Allow override sops version on installation

## [Unreleased]

## [3.6.0] - 2021-03-29

### Breaking
The default sops installation is removed, since helm-secrets could use with hashicorp vault which does not require sops.

Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ By default, helm plugin install does this for you.

```bash
# Install a specific version (recommend)
helm plugin install https://github.com/jkroepke/helm-secrets --version v3.5.0
helm plugin install https://github.com/jkroepke/helm-secrets --version v3.6.0

# Install latest unstable version from main branch
helm plugin install https://github.com/jkroepke/helm-secrets
Expand All @@ -103,10 +103,10 @@ curl -LsSf https://github.com/jkroepke/helm-secrets/releases/latest/download/hel

```bash
# Windows (inside cmd, needs to be verified)
curl -LsSf https://github.com/jkroepke/helm-secrets/releases/download/v3.5.0/helm-secrets.tar.gz | tar -C "%APPDATA%\helm\plugins" -xzf-
curl -LsSf https://github.com/jkroepke/helm-secrets/releases/download/v3.6.0/helm-secrets.tar.gz | tar -C "%APPDATA%\helm\plugins" -xzf-

# MacOS / Linux
curl -LsSf https://github.com/jkroepke/helm-secrets/releases/download/v3.5.0/helm-secrets.tar.gz | tar -C "$(helm env HELM_PLUGINS)" -xzf-
curl -LsSf https://github.com/jkroepke/helm-secrets/releases/download/v3.6.0/helm-secrets.tar.gz | tar -C "$(helm env HELM_PLUGINS)" -xzf-
```

### Installation on Helm 2
Expand Down Expand Up @@ -207,7 +207,6 @@ helm-secrets could detect an ArgoCD environment by the `ARGOCD_APP_NAME` environ

## Moving parts of project

- [`scripts/install.sh`](scripts/install.sh) - Script used as the hook to download and install sops and install git diff configuration for helm-secrets files.
- [`scripts/run.sh`](scripts/run.sh) - Main helm-secrets plugin code for all helm-secrets plugin actions available in `helm secrets help` after plugin install
- [`scripts/drivers`](scripts/drivers) - Location of the in-tree secrets drivers
- [`scripts/commands`](scripts/commands) - Sub Commands of `helm secrets` are defined here.
Expand Down

0 comments on commit e3ff8ad

Please sign in to comment.