From 9c29d347dd6183ad15cffbb89217e8e619a93c9d Mon Sep 17 00:00:00 2001 From: Ian MacDougall Date: Thu, 31 May 2018 15:04:27 +0100 Subject: [PATCH] fix: add in volume --- mirroroperator/registrymirror.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mirroroperator/registrymirror.py b/mirroroperator/registrymirror.py index a37b938..3be62cc 100644 --- a/mirroroperator/registrymirror.py +++ b/mirroroperator/registrymirror.py @@ -416,6 +416,11 @@ def generate_stateful_set(self, stateful_set): name="image-store", mount_path="/var/lib/registry" ), + client.V1VolumeMount( + name=self.cert_name, + mount_path="/etc/ssl/certs", + read_only=True + ), client.V1VolumeMount( name="tls", mount_path="/etc/registry-certs",