Fix make verify failures
Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
This commit is contained in:
parent
c936fc145b
commit
50cb97f331
|
@ -44,8 +44,8 @@ type GitRepositorySpec struct {
|
|||
// The secret name containing the Git credentials.
|
||||
// For HTTPS repositories the secret must contain username and password
|
||||
// fields.
|
||||
// For SSH repositories the secret must contain identity, identity.pub and
|
||||
// known_hosts fields.
|
||||
// For SSH repositories the secret must contain identity and known_hosts
|
||||
// fields.
|
||||
// +optional
|
||||
SecretRef *meta.LocalObjectReference `json:"secretRef,omitempty"`
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ type GitRepositorySpec struct {
|
|||
// The secret name containing the Git credentials.
|
||||
// For HTTPS repositories the secret must contain username and password
|
||||
// fields.
|
||||
// For SSH repositories the secret must contain identity, identity.pub and
|
||||
// known_hosts fields.
|
||||
// For SSH repositories the secret must contain identity and known_hosts
|
||||
// fields.
|
||||
// +optional
|
||||
SecretRef *corev1.LocalObjectReference `json:"secretRef,omitempty"`
|
||||
|
||||
|
|
2
main.go
2
main.go
|
@ -245,7 +245,7 @@ func main() {
|
|||
ControllerName: controllerName,
|
||||
Cache: c,
|
||||
TTL: ttl,
|
||||
CacheRecorder: cacheRecorder,
|
||||
CacheRecorder: cacheRecorder,
|
||||
}).SetupWithManagerAndOptions(mgr, controllers.HelmChartReconcilerOptions{
|
||||
MaxConcurrentReconciles: concurrent,
|
||||
RateLimiter: helper.GetRateLimiter(rateLimiterOptions),
|
||||
|
|
Loading…
Reference in New Issue