vectordotdev / helm-charts

Helm charts for Vector.
https://vector.dev
Mozilla Public License 2.0
111 stars 90 forks source link

added extraContainers option for vector & haproxy pods #239

Closed r0b3r4 closed 2 years ago

r0b3r4 commented 2 years ago

extraContainers allows you to run sidecars containers along with the main container

Closes #224

r0b3r4 commented 2 years ago

Was tested on k8s cluster with next values:

extraContainers:
  - name: sleep
    image: busybox
    command: ['sh', '-c', "while true;do sleep 5; done"]

haproxy:
  enabled: true
  extraContainers:
    - name: sleep
      image: busybox
      command:
        - 'sh'
        - '-c'
        - 'while true;do sleep 5; done'
spencergilbert commented 2 years ago

Thanks for the PR, I bumped the version and did some comment/readme cleanup.

r0b3r4 commented 2 years ago

We are waiting another one person for approve?