All Projects → ory → K8s

ory / K8s

Licence: apache-2.0
Kubernetes Helm Charts for the ORY ecosystem.

Projects that are alternatives of or similar to K8s

Charts
Helm charts for applications you run at home
Stars: ✭ 421 (+231.5%)
Mutual labels:  helm, charts, k8s, mustache
Helm Charts
Prometheus community Helm charts
Stars: ✭ 962 (+657.48%)
Mutual labels:  helm-charts, helm, charts, mustache
charts
☸️ Helm Charts for YOURLS
Stars: ✭ 12 (-90.55%)
Mutual labels:  charts, helm, k8s, helm-charts
Helmfiles
Comprehensive Distribution of Helmfiles for Kubernetes
Stars: ✭ 205 (+61.42%)
Mutual labels:  helm-charts, helm, charts, k8s
charts
My helm charts
Stars: ✭ 15 (-88.19%)
Mutual labels:  charts, helm, helm-charts
Pega Helm Charts
Orchestrate a Pega Platform™ deployment by using Docker, Kubernetes, and Helm to take advantage of Pega Platform Cloud Choice flexibility.
Stars: ✭ 58 (-54.33%)
Mutual labels:  helm, charts, k8s
Helm Secrets
DEPRECATED A helm plugin that help manage secrets with Git workflow and store them anywhere
Stars: ✭ 1,129 (+788.98%)
Mutual labels:  helm-charts, helm, k8s
Helm Charts
A curated set of Helm charts brought to you by codecentric
Stars: ✭ 295 (+132.28%)
Mutual labels:  helm, charts, mustache
K3sup
bootstrap Kubernetes with k3s over SSH < 1 min 🚀
Stars: ✭ 4,012 (+3059.06%)
Mutual labels:  cloud, helm, k8s
Helm Charts
Kubernetes Helm Charts for the Center for Open Science
Stars: ✭ 88 (-30.71%)
Mutual labels:  helm-charts, helm, mustache
Awesome Helm
Collaborative list of awesome helm charts and resources. PRs are welcome!
Stars: ✭ 543 (+327.56%)
Mutual labels:  helm-charts, helm, k8s
Quiz
Example real time quiz application with .NET Core, React, DDD, Event Sourcing, Docker and built-in infrastructure for CI/CD with k8s, jenkins and helm
Stars: ✭ 100 (-21.26%)
Mutual labels:  helm-charts, helm, k8s
khelm
A Helm chart templating CLI, kpt function and kustomize plugin
Stars: ✭ 46 (-63.78%)
Mutual labels:  helm, k8s, helm-charts
stackstorm-ha
K8s Helm Chart (βeta!) that codifies StackStorm (aka "IFTTT for Ops" https://stackstorm.com/) Highly Availability fleet as a simple to use reproducible infrastructure-as-code app
Stars: ✭ 74 (-41.73%)
Mutual labels:  helm, k8s, helm-charts
Charts
Bitnami Helm Charts
Stars: ✭ 4,439 (+3395.28%)
Mutual labels:  helm, charts, mustache
charts
Public helm charts
Stars: ✭ 15 (-88.19%)
Mutual labels:  helm, k8s, helm-charts
helm-charts
Official Helm Chart Repository for InfluxData Applications
Stars: ✭ 133 (+4.72%)
Mutual labels:  helm, k8s, helm-charts
charts
Helm charts for creating reproducible and maintainable deployments of Polyaxon with Kubernetes.
Stars: ✭ 32 (-74.8%)
Mutual labels:  helm, k8s, helm-charts
Apps
Community App Catalog for TrueNAS SCALE
Stars: ✭ 32 (-74.8%)
Mutual labels:  helm, charts, k8s
Ingressmonitorcontroller
A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you're using it!
Stars: ✭ 306 (+140.94%)
Mutual labels:  helm-charts, helm, k8s

Kubernetes Helm Charts for ORY

CircleCI

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.

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>
$ helm install --name $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, to:

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

Remove all releases

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

$ helm del $(helm ls --all --short) --purge
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].