Created
August 15, 2021 08:11
-
-
Save BhautikChudasama/9361fb044548ebcf73a7d79d3632c908 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: networking.k8s.io/v1 | |
| kind: Ingress | |
| metadata: | |
| name: shlink | |
| namespace: shlink | |
| labels: | |
| name: shlink | |
| spec: | |
| tls: | |
| - hosts: | |
| - <HOST> | |
| secretName: shlink-ingress-cert | |
| rules: | |
| - host: <HOST> | |
| http: | |
| paths: | |
| - pathType: Prefix | |
| path: "/" | |
| backend: | |
| service: | |
| name: shlink | |
| port: | |
| number: 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment