https://github.com/pulumi/pulumi-kubernetes-ingress-nginx
A Pulumi NGINX Ingress Controller component
https://github.com/pulumi/pulumi-kubernetes-ingress-nginx
Last synced: about 2 months ago
JSON representation
A Pulumi NGINX Ingress Controller component
- Host: GitHub
- URL: https://github.com/pulumi/pulumi-kubernetes-ingress-nginx
- Owner: pulumi
- License: apache-2.0
- Created: 2021-10-16T22:36:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-07T16:49:47.000Z (5 months ago)
- Last Synced: 2025-01-07T17:33:10.188Z (5 months ago)
- Language: Java
- Size: 817 KB
- Stars: 11
- Watchers: 23
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
# Pulumi NGINX Ingress Controller Component
This repo contains the Pulumi NGINX Ingress Controller component for Kubernetes. This ingress controller
uses NGINX as a reverse proxy and load balancer.This component wraps [the Kubernetes Provided NGINX Ingress Controller](https://github.com/kubernetes/ingress-nginx),
and offers a Pulumi-friendly and strongly-typed way to manage ingress controller installations.After installing this component to your cluster, you can use it by adding the
`kubernetes.io/ingress.class: nginx` annotation to your `Ingress` resources.For examples of usage, see [the official documentation](
https://kubernetes.github.io/ingress-nginx/user-guide/basic-usage/), or refer to [the examples](/examples)
in this repo.## To Use
To use this component, first install the Pulumi Package:
Afterwards, import the library and instantiate it within your Pulumi program:
## Configuration
This component supports all of the configuration options of the [official Helm chart](
https://github.com/kubernetes/ingress-nginx/tree/main/charts/ingress-nginx), except that these
are strongly typed so you will get IDE support and static error checking.The Helm deployment uses reasonable defaults, including the chart name and repo URL, however,
if you need to override them, you may do so using the `helmOptions` parameter. Refer to
[the API docs for the `kubernetes:helm/v3:Release` Pulumi type](
https://www.pulumi.com/docs/reference/pkg/kubernetes/helm/v3/release/#inputs) for a full set of choices.For complete details, refer to the Pulumi Package details within the Pulumi Registry.