Changing images for container-orchestrator, connector-sidecar, and socat in Airbyte on k8s

Summary

The user is trying to change the repository images for container-orchestrator, connector-sidecar, and socat in Airbyte running on Kubernetes. They are facing issues with updating these specific images.


Question

i’m using airbyte on k8s, and i’m changing all images to private repositories.
But i coudn’t change de repository image for container-orchestrator, connector-sidecar, and socat, how do i change these??

  extraEnv:
    - name: CONNECTOR_SIDECAR_IMAGE
      value: 851725402472.dkr.ecr.sa-east-1.amazonaws.com/connector-sidecar:0.64.1
    - name: CONTAINER_ORCHESTRATOR_IMAGE
      value: 851725402472.dkr.ecr.sa-east-1.amazonaws.com/container-orchestrator:0.64.1
    - name: JOB_KUBE_SOCAT_IMAGE
      value: 851725402472.dkr.ecr.sa-east-1.amazonaws.com/socat:1.7.3.4-r0
    - name: JOB_KUBE_BUSYBOX_IMAGE
      value: 851725402472.dkr.ecr.sa-east-1.amazonaws.com/busybox:1.28
    - name: JOB_KUBE_CURL_IMAGE
      value: 851725402472.dkr.ecr.sa-east-1.amazonaws.com/curl:7.83.1```

<br>

---

This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1728759955985099) if you want 
to access the original thread.

[Join the conversation on Slack](https://slack.airbyte.com)

<sub>
["airbyte-platform", "kubernetes", "private-repositories", "image-repository", "connector-sidecar", "container-orchestrator", "socat"]
</sub>

I recommend to finding your chart version in repo https://github.com/airbytehq/helm-charts
extract, and verify

examples for 1.1.0

for busybox
global.jobs.kube.images.busybox

for container-orchestrator
worker.containerOrchestrator.image
workload-launcher.containerOrchestrator.enabled
workload-launcher.containerOrchestrator.image

keep in mind that global.jobs.kube.images.busybox “translates to” values.yaml structure like this:

  jobs:
    kube:
      images:
        busybox: "..."```
you will find in the code how to change other images; good luck!