this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(registry): enable ingress for registry

+19 -1
+1 -1
infra/modules/local-bootstrap/argocd.tf
··· 15 15 # Remove once ArgoCD 3.1.0 stable is released 16 16 image = { 17 17 repository = "ghcr.io/argoproj/argo-cd/argocd" 18 - tag = "3.1.0-dc1d148a" 18 + tag = "3.1.0-dc1d148a" 19 19 } 20 20 } 21 21 configs = {
+18
infra/modules/local-bootstrap/registry.tf
··· 35 35 # The range of valid ports is 30000-32767 36 36 nodePort = 30000 37 37 } 38 + ingress = { 39 + enabled = true 40 + className = "nginx" 41 + annotations = { 42 + "nginx.ingress.kubernetes.io/proxy-body-size" = "0" 43 + } 44 + pathtype = "Prefix" 45 + hosts = [ 46 + { 47 + host = "registry.127-0-0-1.nip.io" 48 + paths = [ 49 + { 50 + path = "/" 51 + } 52 + ] 53 + } 54 + ] 55 + } 38 56 persistence = true 39 57 pvc = { 40 58 create = true