extraExe

Description

The extraExe property is an array of strings that represent name(s) of ConfigMaps in the cluster. When the DataPower pod(s) are created, the ConfigMaps specified by extraExe are mounted with r+x permissions at /usr/local/extra.

This property can be used in conjunction with the initCmds property to run custom initialization scripts that you've added to the DataPower pod(s), or any custom sidecar processes you wish to run in the DataPower containers.

Example

apiVersion: datapower.ibm.com/v1beta3
kind: DataPowerService
metadata:
  name: example-dpservice
spec:
  extraExe:
  - config-map-one
  - config-map-two
  - config-map-three
  ...