Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions roles/eda/templates/eda-api.deployment.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,14 @@ spec:
mountPath: /var/cache/nginx
- name: nginx-run
mountPath: /var/run
{% if bundle_ca_crt %}
- name: "ca-trust-extracted"
mountPath: "/etc/pki/ca-trust/extracted"
- name: "{{ ansible_operator_meta.name }}-bundle-cacert"
mountPath: /etc/pki/ca-trust/source/anchors/bundle-ca.crt
subPath: bundle-ca.crt
readOnly: true
{% endif %}
{% if combined_api.resource_requirements is defined %}
resources: {{ combined_api.resource_requirements }}
{% endif %}
Expand Down
8 changes: 8 additions & 0 deletions roles/eda/templates/eda-event-stream.deployment.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@ spec:
mountPath: /var/cache/nginx
- name: nginx-run
mountPath: /var/run
{% if bundle_ca_crt %}
- name: "ca-trust-extracted"
mountPath: "/etc/pki/ca-trust/extracted"
- name: "{{ ansible_operator_meta.name }}-bundle-cacert"
mountPath: /etc/pki/ca-trust/source/anchors/bundle-ca.crt
subPath: bundle-ca.crt
readOnly: true
{% endif %}
restartPolicy: Always
volumes:
- name: '{{ ansible_operator_meta.name }}-nginx-event-stream-conf'
Expand Down
Loading