Add docker-registry example [ci skip]
This commit is contained in:
parent
e4c8488d68
commit
79f6afba06
4 changed files with 147 additions and 0 deletions
18
docs/examples/docker-registry/ingress-without-tls.yaml
Normal file
18
docs/examples/docker-registry/ingress-without-tls.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
annotations:
|
||||
ingress.kubernetes.io/proxy-body-size: "0"
|
||||
ingress.kubernetes.io/proxy-read-timeout: "600"
|
||||
ingress.kubernetes.io/proxy-send-timeout: "600"
|
||||
name: docker-registry
|
||||
namespace: docker-registry
|
||||
spec:
|
||||
rules:
|
||||
- host: registry.<your domain>
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: docker-registry
|
||||
servicePort: 5000
|
||||
path: /
|
||||
Loading…
Add table
Add a link
Reference in a new issue