Skip to content

Releases: ory/k8s

v0.19.1

12 Aug 09:54
8b10260
Compare
Choose a tag to compare

Changelog:

  • Fix faulty secret handling in hydra (#308)

Major Ingress update

05 Aug 11:56
e0b1175
Compare
Choose a tag to compare

Release v0.19.0 marks addressing a major breaking change.

With #305 merged we officially stop supporting older version of kubernetes leaving only support for 1.18+ features.

We have created a guide for all those, still on the older versions, that should help in the transitioning process:

From 0.19.0

Since this version we support only kubernetes >= v1.18 for the ingress definition.

If you enabled ingresses you need to migrate values from:

ingress:
  read:
    hosts:
      - host: chart-example.local
        paths: ["/read"]
  write:
    hosts:
      - host: chart-example.local
        paths: ["/write"]

to

ingress:
  read:
    className: ""
    hosts:
      - host: chart-example.local
        paths:
          - path: /read
            pathType: Prefix
  write:
    className: ""
    hosts:
      - host: chart-example.local
        paths:
          - path: /write
            pathType: Prefix

where changes are on:

v0.18.0

23 Jul 09:06
Compare
Choose a tag to compare
chore: cleanup

v0.17.0

19 Jul 12:17
2610e31
Compare
Choose a tag to compare
feat: add PDB to all charts (#297)

v0.16.0

09 Jul 10:16
1103402
Compare
Choose a tag to compare
feat: add watcher pilot (#293)

This PR introduces a sidecar container to each deployment using the DSN mechanism. It allows setting a watcher for a mounted file, and restarting the deployment upon changes in the file. 

This uses inotify-tools, which report upon file changes. In this case we are operating with k8s volumes, which are mounted in some location and symlinked into the desired location. Change to the original file (so unmount and remount) causes the symlink to be deleted and recreated. In some cases this can break the program (f.e if the mounted file is a secret/certificate used by DSN) requiring a restart.

v0.15.1

29 Jun 13:44
c92de53
Compare
Choose a tag to compare
feat(kratos): support skaffold image format (#291)

v0.15.0

29 Jun 07:59
e658234
Compare
Choose a tag to compare
feat: update kratos chart for v6+ (#290)

Closes #289
Closes #285
Closes #286

Co-authored-by: hackerman <[email protected]>

v0.14.1

10 Jun 13:55
d1a68d3
Compare
Choose a tag to compare
feat: support extra volumes and mounts in migration job (#278)

v0.14.0

04 Jun 12:56
44f5f3b
Compare
Choose a tag to compare
fix: use fullname instead of name (#276)

v0.13.0

21 May 19:41
8a031a0
Compare
Choose a tag to compare
feat: add support for Kratos v0.6 email templates (#265)

Co-authored-by: hackerman <[email protected]>