Skip to content

helm chart: fix /root/.kube/config (No such file or directory) #11475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/airbyte/templates/env-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ data:
WORKER_ENVIRONMENT: kubernetes
WORKSPACE_DOCKER_MOUNT: airbyte_workspace
WORKSPACE_ROOT: /workspace
KUBERNETES_AUTH_TRYSERVICEACCOUNT: 'true'
KUBERNETES_AUTH_TRYKUBECONFIG: 'false'
10 changes: 10 additions & 0 deletions charts/airbyte/templates/worker/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ spec:
configMapKeyRef:
name: airbyte-env
key: DATABASE_USER
- name: KUBERNETES_AUTH_TRYSERVICEACCOUNT
valueFrom:
configMapKeyRef:
name: airbyte-env
key: KUBERNETES_AUTH_TRYSERVICEACCOUNT
- name: KUBERNETES_AUTH_TRYKUBECONFIG
valueFrom:
configMapKeyRef:
name: airbyte-env
key: KUBERNETES_AUTH_TRYKUBECONFIG
- name: TRACKING_STRATEGY
valueFrom:
configMapKeyRef:
Expand Down