use NodePort instead of Ingress for Harbor
This commit is contained in:
parent
78ae41cc61
commit
d5e485f9bf
|
@ -3,14 +3,24 @@ expose:
|
|||
# We are performing TLS termination OUTSIDE of the k8s cluster
|
||||
tls:
|
||||
enabled: false
|
||||
type: ingress
|
||||
ingress:
|
||||
hosts:
|
||||
core: registry.cloud.csclub.uwaterloo.ca
|
||||
notary: notary.cloud.csclub.uwaterloo.ca
|
||||
annotations:
|
||||
ingress.kubernetes.io/ssl-redirect: "false"
|
||||
nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
||||
#type: ingress
|
||||
#ingress:
|
||||
# hosts:
|
||||
# core: registry.cloud.csclub.uwaterloo.ca
|
||||
# notary: notary.cloud.csclub.uwaterloo.ca
|
||||
# annotations:
|
||||
# ingress.kubernetes.io/ssl-redirect: "false"
|
||||
# nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
||||
type: nodePort
|
||||
nodePort:
|
||||
name: harbor
|
||||
ports:
|
||||
http:
|
||||
port: 80
|
||||
nodePort: 30002
|
||||
notary:
|
||||
port: 4443
|
||||
nodePort: 30004
|
||||
externalURL: https://registry.cloud.csclub.uwaterloo.ca
|
||||
harborAdminPassword: REPLACE_ME
|
||||
# must be a string of 16 chars
|
||||
|
|
Loading…
Reference in New Issue