Skip to content

Instantly share code, notes, and snippets.

@tardieu
Last active September 6, 2019 19:04
Show Gist options
  • Save tardieu/82cca23a2b6e2f7b4b6de1e2d317658a to your computer and use it in GitHub Desktop.
Save tardieu/82cca23a2b6e2f7b4b6de1e2d317658a to your computer and use it in GitHub Desktop.
Ingress YAML
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: hello-world
spec:
rules:
- host: hello-world.mycluster-123456.us-south.containers.appdomain.cloud
http:
paths:
- backend:
serviceName: hello-world
servicePort: 8080
path: /
tls:
- hosts:
- hello-world.mycluster-123456.us-south.containers.appdomain.cloud
secretName: mycluster-123456
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment