Remove insecure TLS option for Helm spec
This commit is contained in:
parent
a490b25647
commit
086f6a350a
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
The is the v1alpha1 API specification for defining the desired state sources of Kubernetes clusters.
|
The is the v1alpha1 API specification for defining the desired state sources of Kubernetes clusters.
|
||||||
|
|
||||||
|
## Specification
|
||||||
|
|
||||||
* [Common](common.md)
|
* [Common](common.md)
|
||||||
* Source kinds:
|
* Source kinds:
|
||||||
|
@ -9,5 +10,6 @@ The is the v1alpha1 API specification for defining the desired state sources of
|
||||||
+ [HelmRepository](helmrepositories.md)
|
+ [HelmRepository](helmrepositories.md)
|
||||||
- [HelmChart](helmrepositories.md)
|
- [HelmChart](helmrepositories.md)
|
||||||
|
|
||||||
Implementations:
|
## Implementation
|
||||||
|
|
||||||
* source-controller [v0.0.1-alpha.1](https://github.com/fluxcd/source-controller/releases)
|
* source-controller [v0.0.1-alpha.1](https://github.com/fluxcd/source-controller/releases)
|
||||||
|
|
|
@ -22,7 +22,7 @@ The controller can be told to check for updates right away by setting an annotat
|
||||||
|
|
||||||
```go
|
```go
|
||||||
const (
|
const (
|
||||||
// ForceSyncAnnotation is the timestamp corresponding to an on-demand source sync.
|
// ForceSyncAnnotation is the timestamp corresponding to an on-demand source sync.
|
||||||
ForceSyncAnnotation string = "source.fluxcd.io/syncAt"
|
ForceSyncAnnotation string = "source.fluxcd.io/syncAt"
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
|
@ -160,7 +160,6 @@ data:
|
||||||
certFile: <BASE64>
|
certFile: <BASE64>
|
||||||
keyFile: <BASE64>
|
keyFile: <BASE64>
|
||||||
caFile: <BASE64>
|
caFile: <BASE64>
|
||||||
insecureSkipTLSVerify: <base64>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Helm chart
|
### Helm chart
|
||||||
|
|
Loading…
Reference in New Issue