Skip to content

Commit 24b79d2

Browse files
Merge pull request #14741 from giuseppe/system-containers-add-mount-for-etc-pki
System containers: add bind mount for /etc/pki
2 parents a5d87dc + f2847cd commit 24b79d2

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

images/node/system-container/config.json.template

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,15 @@
484484
"mode=755"
485485
]
486486
},
487+
{
488+
"type": "bind",
489+
"source": "/etc/pki",
490+
"destination": "/etc/pki",
491+
"options": [
492+
"bind",
493+
"ro"
494+
]
495+
},
487496
{
488497
"destination": "/tmp",
489498
"type": "tmpfs",

images/origin/system-container/config.json.template

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,15 @@
157157
"mode=755"
158158
]
159159
},
160+
{
161+
"type": "bind",
162+
"source": "/etc/pki",
163+
"destination": "/etc/pki",
164+
"options": [
165+
"bind",
166+
"ro"
167+
]
168+
},
160169
{
161170
"type": "bind",
162171
"source": "$ORIGIN_DATA_DIR",

0 commit comments

Comments
 (0)