Skip to content
Snippets Groups Projects
Unverified Commit 60917789 authored by Robin McCorkell's avatar Robin McCorkell Committed by GitHub
Browse files

Mount host /etc/ca-certificates (#131)

OSes like Arch Linux put certificate files in /etc/ca-certificates, and symlink to those files from /etc/ssl and /etc/pki.
parent aa0f2bb8
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,8 @@ spec: ...@@ -95,6 +95,8 @@ spec:
mountPath: /etc/ssl mountPath: /etc/ssl
- name: etc-pki - name: etc-pki
mountPath: /etc/pki mountPath: /etc/pki
- name: etc-ca-certificates
mountPath: /etc/ca-certificates
- name: tmp - name: tmp
mountPath: /tmp mountPath: /tmp
volumes: volumes:
...@@ -106,5 +108,9 @@ spec: ...@@ -106,5 +108,9 @@ spec:
hostPath: hostPath:
path: /etc/pki path: /etc/pki
type: DirectoryOrCreate type: DirectoryOrCreate
- name: etc-ca-certificates
hostPath:
path: /etc/ca-certificates
type: DirectoryOrCreate
- name: tmp - name: tmp
emptyDir: {} emptyDir: {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment