This repository has been archived on 2024-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
onechart/website/docs/examples/domain-names.md
T
2020-10-09 14:26:52 +02:00

33 lines
618 B
Markdown

OneChart generates an `Ingress` resource for the Nginx ingress controller with the following settings:
```yaml
image:
repository: nginx
tag: 1.19.3
ingress:
annotations:
kubernetes.io/ingress.class: nginx
host: chart-example.local
```
Check the Kubernetes manifest:
```bash
cat << EOF > values.yaml
image:
repository: nginx
tag: 1.19.3
ingress:
annotations:
kubernetes.io/ingress.class: nginx
host: chart-example.local
EOF
helm template my-release onechart/onechart -f values.yaml
```
!!! warning
The Nginx ingress controller must be set up in your cluster for this setting to work.