Deploy GitHub Pages
This commit is contained in:
parent
d8cf22171a
commit
d47b6b8d57
115 changed files with 58875 additions and 0 deletions
1233
examples/tls-termination/README/index.html
Normal file
1233
examples/tls-termination/README/index.html
Normal file
File diff suppressed because it is too large
Load diff
20
examples/tls-termination/ingress.yaml
Normal file
20
examples/tls-termination/ingress.yaml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: nginx-test
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- foo.bar.com
|
||||
# This assumes tls-secret exists and the SSL
|
||||
# certificate contains a CN for foo.bar.com
|
||||
secretName: tls-secret
|
||||
rules:
|
||||
- host: foo.bar.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
backend:
|
||||
# This assumes http-svc exists and routes to healthy endpoints
|
||||
serviceName: http-svc
|
||||
servicePort: 80
|
||||
Loading…
Add table
Add a link
Reference in a new issue