Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .changelog/1655.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
`provider`: Restore support for the `KUBE_PROXY_URL` environment variable
```
2 changes: 1 addition & 1 deletion helm/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func (p *HelmProvider) Configure(ctx context.Context, req provider.ConfigureRequ
kubeConfigContextAuthInfo := os.Getenv("KUBE_CTX_AUTH_INFO")
kubeConfigContextCluster := os.Getenv("KUBE_CTX_CLUSTER")
kubeToken := os.Getenv("KUBE_TOKEN")
kubeProxy := os.Getenv("KUBE_PROXY")
kubeProxy := os.Getenv("KUBE_PROXY_URL")

// Initialize the HelmProviderModel with values from the config
var config HelmProviderModel
Expand Down
Loading