Skip to content
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.

Releases: ricoberger/sealed-secrets-web

Version 2.4.0 / 2021-08-22

22 Aug 15:18
Compare
Choose a tag to compare
  • Use use v-main instead of v-content to fix Vue warning in browser console by @bakito.
  • Marshal seal result as yaml when output is set to yaml by @bakito.

Version 2.3.0 / 2021-08-11

11 Aug 04:45
2a11afb
Compare
Choose a tag to compare
  • Update kubeseal cli
  • Improve documentation

Version 2.2.2 / 2020-05-05

05 May 08:13
Compare
Choose a tag to compare
  • Use a numeric USER instruction in Dockerfile

Version 2.2.1 / 2020-04-25

25 Apr 18:36
Compare
Choose a tag to compare
  • Add new --web-external-url flag, which can be used to specify the url, when the Sealed Secrets Web Interface is served behind a reverse proxy. Thanks at
  • Update the Go version in all GitHub Actions and fix the GitHub Action for the Helm release.

Version 2.2.0 / 2020-02-01

01 Feb 20:09
8da77ee
Compare
Choose a tag to compare

Change flag handling (#8. #7)

A new flag kubeseal-arguments is introduced, which can be used to pass arguments to kubeseal. We are not passing the arguments from the sealed-secrets-web directly to the underlying kubeseal.

Example values file for the Helm chart:

image:
  repository: ricoberger/sealed-secrets-web
  tag: 2.2.0
  pullPolicy: IfNotPresent
  args:
    - --format=yaml
    - --kubeseal-arguments=--format yaml --controller-name sealed-secrets
    - --disable-load-secrets

Update kubeseal

kubeseal was updated to version v0.9.7

Version 2.1.5 / 2020-01-29

30 Jan 21:25
169b4fa
Compare
Choose a tag to compare

Update ACE Editor (#6)

Update the used version of the ACE editor and add missing files to fix #5.

Version 2.1.4 / 2020-01-28

28 Jan 19:29
Compare
Choose a tag to compare
  • Bump Helm chart version
  • Improve GitHub Actions pipeline
  • Fix Docker image name and tag

Version 2.1.3 / 2020-01-28

28 Jan 19:05
a4c7384
Compare
Choose a tag to compare

Introduce a new flag --disable-load-secrets to disable the loading of existing secrets. If the flag is enabled all API requests to the endpoints loadSecrets and loadSecret are forbidden and a 403 error is returned. The Secrets button is not visible when the option is enabled.

To enable the option in the Helm chart the --disable-load-secrets flag must be set in the args array:

replicaCount: 1

image:
  repository: ricoberger/sealed-secrets-web
  tag: 2.1.2
  pullPolicy: IfNotPresent
  args:
    - --disable-load-secrets

...

Version 2.1.2 / 2019-08-28

28 Aug 17:56
Compare
Choose a tag to compare

Fix GitHub Action: We could not publish the Helm chart via GitHub Actions in the last release (Typo).

Version 2.1.1 / 2019-08-28

28 Aug 17:46
Compare
Choose a tag to compare

Add GitHub Actions:

  • Go: Build the binaries on each PR.
  • Docker: Publish a new Docker Image on a new release.
  • Helm: Publish a new Helm Chart on a new release.