You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, when we don't upload kubeconfig, it replaces all the AZ level configs such as Helm overrides with {"KUBECONFIG": ""}. It should be changed to use the new method az.updateConfig instead.
The text was updated successfully, but these errors were encountered:
c0b9786 changed the behavior of
az.setConfig and added az.updateConfig. This change uses the correct
method to add `{"KUBECONFIG": ""}` to the existing configuration
instead of overwriting the whole AZ configuration.
This was missed when I rebased
yugabyte#8371 against latest
changes.
Fixesyugabyte#10860
Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
…10928)
c0b9786 changed the behavior of
az.setConfig and added az.updateConfig. This change uses the correct
method to add `{"KUBECONFIG": ""}` to the existing configuration
instead of overwriting the whole AZ configuration.
This was missed when I rebased
#8371 against latest
changes.
Fixes#10860
Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
jayant07-yb
pushed a commit
to jayant07-yb/yugabyte-db
that referenced
this issue
Mar 8, 2022
…ugabyte#10928)
c0b9786 changed the behavior of
az.setConfig and added az.updateConfig. This change uses the correct
method to add `{"KUBECONFIG": ""}` to the existing configuration
instead of overwriting the whole AZ configuration.
This was missed when I rebased
yugabyte#8371 against latest
changes.
Fixesyugabyte#10860
Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
Description
The commit d29f73f#diff-fc957da0b60dcc2d3632c191ca98d5b5d765d560800f4a34b0e224fc3232d1acR262 added support for in-cluster credentials. It basically sets KUBECONFIG variable to a blank string.
It uses
az.setConfig
whose behavior has been changed in c0b9786#diff-440e6f700b5643beb4942f556420450439b718acf8faf493cd5c7311be538274R66So, when we don't upload kubeconfig, it replaces all the AZ level configs such as Helm overrides with
{"KUBECONFIG": ""}
. It should be changed to use the new methodaz.updateConfig
instead.The text was updated successfully, but these errors were encountered: