Add Custom Init Containers in Helm Installation

Init Containers are containers that run before the main container runs with your containerized application.

Init Containers are containers that run before the main container runs with your containerized application. In some cases, you will need to use a specialized, unsupported init process, for example, to check something in the file system or to test something before spinning up the main container. If you need to add a custom init container, use the section for defining a custom init container in the values.yaml file (by default this section is commented out).

Artifactory

artifactory:
  ## Add custom init containers
  customInitContainers: |
    ## Init containers template goes here ##

Xray

common:
  ## Add custom init containers executed before predefined init containers
  customInitContainersBegin: |
    ## Init containers template goes here ##

    ## Add custom init containers executed after predefined init containers
  customInitContainers: |
    ## Init containers template goes here ##

Distribution

distribution:
  ## Add custom init containers
  customInitContainers: |
    ## Init containers template goes here ##