-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
fix: remove unused CONTAINER_ORCHESTRATOR_ENABLED var #20261
Conversation
@@ -1043,11 +1042,6 @@ public Set<Integer> getTemporalWorkerPorts() { | |||
return Arrays.stream(ports.split(",")).map(Integer::valueOf).collect(Collectors.toSet()); | |||
} | |||
|
|||
@Override |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that is is missing an update to the Configs.java
file as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@cpdeethree Faced an error due to this PR where installation failed with the following error: Error: INSTALLATION FAILED: template: airbyte/templates/env-configmap.yaml:67:42: executing "airbyte/templates/env-configmap.yaml" at <.Values.worker.containerOrchestrator.image>: nil pointer evaluating interface {}.image Fixed it by adding back the following code in values.yaml file edit: Reference issue #20282 |
This was mistakenly removed as part of #20261
this isn't right Lines 46 to 47 in f76833e
|
What
The behavior that this environment variable affects was removed in this pr. Therefore, this environment variable is no longer used and can be removed entirely.
How
Remove all references to the environment variable from code and charts