Skip to content
Snippets Groups Projects
Unverified Commit 02a89543 authored by zhengtianbao's avatar zhengtianbao Committed by GitHub
Browse files

registry: add ingress support (#8311)

parent c1954ff9
Branches
Tags
No related merge requests found
...@@ -41,3 +41,8 @@ registry_config: ...@@ -41,3 +41,8 @@ registry_config:
enabled: true enabled: true
interval: 10s interval: 10s
threshold: 3 threshold: 3
registry_ingress_annotations: {}
registry_ingress_host: ""
# name of kubernetes secret for registry ingress TLS certs
registry_ingress_tls_secret: ""
...@@ -59,6 +59,13 @@ ...@@ -59,6 +59,13 @@
- podsecuritypolicy_enabled - podsecuritypolicy_enabled
- registry_namespace != "kube-system" - registry_namespace != "kube-system"
- name: Registry | Append nginx ingress templates to Registry Templates list when ingress enabled
set_fact:
registry_templates: "{{ registry_templates + [item] }}"
with_items:
- [{ name: registry-ing, file: registry-ing.yml, type: ing }]
when: ingress_nginx_enabled == true or ingress_alb_enabled == true
- name: Registry | Create manifests - name: Registry | Create manifests
template: template:
src: "{{ item.file }}.j2" src: "{{ item.file }}.j2"
......
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: registry
namespace: {{ registry_namespace }}
{% if registry_ingress_annotations %}
annotations:
{{ registry_ingress_annotations | to_nice_yaml(indent=2, width=1337) | indent(width=4) }}
{% endif %}
spec:
{% if registry_ingress_tls_secret %}
tls:
- hosts:
- {{ registry_ingress_host }}
secretName: {{ registry_ingress_tls_secret }}
{% endif %}
rules:
- host: {{ registry_ingress_host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: registry
port:
number: {{ registry_port }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment