Merge pull request #1568 from fluxcd/bucket-aws-proxy
Add proxy support for AWS S3 buckets
This commit is contained in:
commit
e1ff038fca
|
@ -112,8 +112,6 @@ type BucketSpec struct {
|
|||
|
||||
// ProxySecretRef specifies the Secret containing the proxy configuration
|
||||
// to use while communicating with the Bucket server.
|
||||
//
|
||||
// Only supported for the `generic`, `gcp` and `azure` providers.
|
||||
// +optional
|
||||
ProxySecretRef *meta.LocalObjectReference `json:"proxySecretRef,omitempty"`
|
||||
|
||||
|
|
|
@ -395,9 +395,6 @@ spec:
|
|||
description: |-
|
||||
ProxySecretRef specifies the Secret containing the proxy configuration
|
||||
to use while communicating with the Bucket server.
|
||||
|
||||
|
||||
Only supported for the `generic`, `gcp` and `azure` providers.
|
||||
properties:
|
||||
name:
|
||||
description: Name of the referent.
|
||||
|
|
|
@ -219,7 +219,6 @@ github.com/fluxcd/pkg/apis/meta.LocalObjectReference
|
|||
<em>(Optional)</em>
|
||||
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
||||
to use while communicating with the Bucket server.</p>
|
||||
<p>Only supported for the <code>generic</code>, <code>gcp</code> and <code>azure</code> providers.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -1648,7 +1647,6 @@ github.com/fluxcd/pkg/apis/meta.LocalObjectReference
|
|||
<em>(Optional)</em>
|
||||
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
||||
to use while communicating with the Bucket server.</p>
|
||||
<p>Only supported for the <code>generic</code>, <code>gcp</code> and <code>azure</code> providers.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -854,8 +854,6 @@ The Secret can contain three keys:
|
|||
- `password`, to specify the password to use if the proxy server is protected by
|
||||
basic authentication. This is an optional key.
|
||||
|
||||
This API is only supported for the `generic`, `gcp` and `azure` [providers](#provider).
|
||||
|
||||
Example:
|
||||
|
||||
```yaml
|
||||
|
|
Loading…
Reference in New Issue