Skip to content
/ k8s Public

Kubernetes Helm Charts for the ORY ecosystem.

License

Notifications You must be signed in to change notification settings

ory/k8s

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 28, 2025
b8d3670 · Feb 28, 2025
Oct 23, 2020
Feb 28, 2025
Feb 28, 2025
Feb 28, 2025
Feb 24, 2025
Feb 28, 2025
Feb 28, 2025
Feb 28, 2025
Sep 16, 2022
Sep 16, 2022
Apr 27, 2023
Oct 2, 2020
Aug 3, 2023
Aug 22, 2024
Sep 29, 2021
Feb 28, 2025
Jul 6, 2023
Dec 4, 2024
Feb 28, 2025
Feb 28, 2025
Feb 28, 2025

Repository files navigation

Kubernetes Helm Charts for ORY

CI

This repository contains helm charts for Kubernetes. All charts are in incubation phase and use is at your own risk.

Please go to k8s.ory.sh/helm for a list of helm charts and their configuration options.

NOTE

All charts present in this repository require Kubernetes 1.18+. Please refer to releases 0.18.0 and older for versions supporting older releases of Kubernetes.

Development

You can test and develop charts locally using Minikube.

To test a chart locally without applying it to kubernetes, do:

$ helm install --debug --dry-run <name> .
$ name=<name>
$ helm install $name .
$ helm upgrade $name .

Ingress

If you wish to test ingress, run:

$ minikube addons enable ingress

Next you need to set up /etc/hosts to route traffic from domains - in this example for ORY Oathkeeper:

  • api.oathkeeper.localhost
  • proxy.oathkeeper.localhost

to the ingress IP. You can find the ingress IP using:

$ kubectl get ingress
NAME                           HOSTS                        ADDRESS        PORTS     AGE
kilted-ibex-oathkeeper-api     api.oathkeeper.localhost     192.168.64.3   80        1d
kilted-ibex-oathkeeper-proxy   proxy.oathkeeper.localhost   192.168.64.3   80        1d

Then, append the following entries to your host file (/etc/hosts):

192.168.64.3    api.oathkeeper.localhost
192.168.64.3    proxy.oathkeeper.localhost

Testing

To run helm test, do:

$ helm lint .
$ helm install <name> .
$ helm test <name>

Remove all releases

To remove all releases (only in test environments), do:

$ helm del $(helm ls --all --short) --purge