dazzling-sundown-39670
06/04/2020, 1:09 PMbitnami/phpmyadmin
but the maximum upload size is too low for me and they don't offer a way to set it. So I would like to override the config file with a different onebillowy-army-68599
ancient-megabyte-79588
06/04/2020, 2:29 PMvalues.yaml
replacement option which Pulumi supports providing.values.yaml
, figure out what config you need to change, and then create teh pulumi values: {}
comparable object in your Chart options.
https://github.com/bitnami/charts/blob/master/bitnami/phpmyadmin/values.yamlbillowy-army-68599
php.ini
ancient-megabyte-79588
06/04/2020, 2:38 PMbillowy-army-68599
PHP_UPLOAD_MAX_FILESIZE
as an environment variable. The chart doesn't appear to support arbitrary env vars, but you can use a transform to set it. Let me know if you'd like an exampledazzling-sundown-39670
06/04/2020, 2:52 PMtransformations: [
(obj: any) => {
if (obj.kind === 'Deployment') {
obj.spec.template.spec.containers[0].env.push({
name: 'PHP_UPLOAD_MAX_FILESIZE',
value: '1G',
});
console.log(JSON.stringify(obj, null, 2));
}
},
],
billowy-army-68599
dazzling-sundown-39670
06/04/2020, 3:52 PM