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
|
// ProxySecretRef specifies the Secret containing the proxy configuration
|
||||||
// to use while communicating with the Bucket server.
|
// to use while communicating with the Bucket server.
|
||||||
//
|
|
||||||
// Only supported for the `generic`, `gcp` and `azure` providers.
|
|
||||||
// +optional
|
// +optional
|
||||||
ProxySecretRef *meta.LocalObjectReference `json:"proxySecretRef,omitempty"`
|
ProxySecretRef *meta.LocalObjectReference `json:"proxySecretRef,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -395,9 +395,6 @@ spec:
|
||||||
description: |-
|
description: |-
|
||||||
ProxySecretRef specifies the Secret containing the proxy configuration
|
ProxySecretRef specifies the Secret containing the proxy configuration
|
||||||
to use while communicating with the Bucket server.
|
to use while communicating with the Bucket server.
|
||||||
|
|
||||||
|
|
||||||
Only supported for the `generic`, `gcp` and `azure` providers.
|
|
||||||
properties:
|
properties:
|
||||||
name:
|
name:
|
||||||
description: Name of the referent.
|
description: Name of the referent.
|
||||||
|
|
|
@ -219,7 +219,6 @@ github.com/fluxcd/pkg/apis/meta.LocalObjectReference
|
||||||
<em>(Optional)</em>
|
<em>(Optional)</em>
|
||||||
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
||||||
to use while communicating with the Bucket server.</p>
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -1648,7 +1647,6 @@ github.com/fluxcd/pkg/apis/meta.LocalObjectReference
|
||||||
<em>(Optional)</em>
|
<em>(Optional)</em>
|
||||||
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
<p>ProxySecretRef specifies the Secret containing the proxy configuration
|
||||||
to use while communicating with the Bucket server.</p>
|
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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<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
|
- `password`, to specify the password to use if the proxy server is protected by
|
||||||
basic authentication. This is an optional key.
|
basic authentication. This is an optional key.
|
||||||
|
|
||||||
This API is only supported for the `generic`, `gcp` and `azure` [providers](#provider).
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
|
Loading…
Reference in New Issue