@@ -5,10 +5,12 @@ global:
5
5
maxUnavailable: 0
6
6
type: RollingUpdate
7
7
{% if externaldns_vars .cloudflare .host .domain | lower != 'disabled' %}
8
- domain: {{ argocd_map.ingress.server.hostname }}
8
+ domain: {{ argocd_map.ingress.server.hostname.api }}
9
9
{% endif %}
10
10
logging:
11
11
level: {{ argocd_vars.kubernetes.global.logging.level }}
12
+ networkPolicy:
13
+ create: true
12
14
applicationSet:
13
15
{% if argocd_postinstall is truthy and argocd_map .metrics .service .monitor .enabled is truthy %}
14
16
metrics:
@@ -270,30 +272,30 @@ server:
270
272
group: cert-manager.io
271
273
kind: ClusterIssuer
272
274
name: {{ externaldns_project.cloudflare.cluster.issuer }}
273
- privateKey :
274
- rotationPolicy: Always
275
+ containerPorts :
276
+ server: 443
275
277
{% endif %}
276
278
ingress:
279
+ enabled: true
280
+ {% if argocd_vars .kubernetes .configs .params .server .insecure is falsy %}
277
281
annotations:
278
282
{% for key , value in argocd_map .ingress .server .annotations .api .items () %}
279
283
{{ key | indent(6) }}: {{ value }}
280
284
{% endfor %}
281
- enabled: true
282
- ingressClassName: {{ argocd_map.ingress.class.name }}
283
- {% if argocd_vars .kubernetes .configs .params .server .insecure is falsy %}
284
285
tls: true
285
286
{% endif %}
287
+ ingressClassName: {{ argocd_map.ingress.class.name }}
286
288
ingressGrpc:
289
+ enabled: true
290
+ {% if argocd_vars .kubernetes .configs .params .server .insecure is falsy %}
287
291
annotations:
288
- {% for key , value in argocd_map .ingress .server .annotations .grpc .items () %}
292
+ {% for key , value in argocd_map .ingress .server .annotations .api .items () %}
289
293
{{ key | indent(6) }}: {{ value }}
290
294
{% endfor %}
291
- enabled: true
292
- ingressClassName: {{ argocd_map.ingress.class.name }}
293
- hostname: {{ argocd_map.ingress.server.hostname }}
294
- {% if argocd_vars .kubernetes .configs .params .server .insecure is falsy %}
295
295
tls: true
296
296
{% endif %}
297
+ ingressClassName: {{ argocd_map.ingress.class.name }}
298
+ hostname: {{ argocd_map.ingress.server.hostname.grpc }}
297
299
{% endif %}
298
300
{% if argocd_postinstall is truthy and argocd_map .metrics .service .monitor .enabled is truthy %}
299
301
metrics:
0 commit comments