We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm configuring helm-publish as follows:
helm { publishing { repositories { artifactory { url = uri('https://artifactory.example.com/my-helm-repo') credentials { username = 'user' password = 'pass' } } } } }
Instead of the plugin writing the Basic Auth header as:
Authorization: Basic <base64-string> it writes Authorization: Basic Basic <base64-string>
Authorization: Basic <base64-string>
Authorization: Basic Basic <base64-string>
I think this is of prefixing the response of okhttp3 that also contains "Basic" literal with another "Basic" literal:
gradle-helm-plugin/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/publishing/publishers/AbstractHttpHelmChartPublisher.kt
Line 114 in 29d61f1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm configuring helm-publish as follows:
Instead of the plugin writing the Basic Auth header as:
Authorization: Basic <base64-string>
it writesAuthorization: Basic Basic <base64-string>
I think this is of prefixing the response of okhttp3 that also contains "Basic" literal with another "Basic" literal:
gradle-helm-plugin/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/publishing/publishers/AbstractHttpHelmChartPublisher.kt
Line 114 in 29d61f1
The text was updated successfully, but these errors were encountered: