Merge pull request #1624 from ArthurSens/grafana-volume

Add extra-volume mount for plugins downloads
This commit is contained in:
Philip Gough
2022-02-14 11:15:14 +00:00
committed by GitHub
2 changed files with 14 additions and 0 deletions

View File

@@ -100,7 +100,16 @@ function(params)
readOnlyRootFilesystem: true,
capabilities: { drop: ['ALL'] },
},
volumeMounts+: [{
mountPath: '/tmp',
name: 'tmp-plugins',
readOnly: false,
}],
}, super.containers),
volumes+: [{
name: 'tmp-plugins',
emptyDir: {},
}],
},
},
},