Skip to content
New issue

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

Document CacheSecretsAndConfigMaps feature flag in source-controller #1354

Merged
merged 1 commit into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/en/flux/components/helm/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ please see the [bootstrap cheatsheet](../../cheatsheets/bootstrap.md).
| `--no-cross-namespace-refs` | boolean | When set to true, references between custom resources are allowed only if the reference and the referee are in the same namespace. |
| `--requeue-dependency` | duration | The interval at which failing dependencies are reevaluated. (default 30s) |
| `--watch-all-namespaces` | boolean | Watch for custom resources in all namespaces, if set to false it will only watch the runtime namespace. (default true) |
| `--feature-gates` | mapStringBool | A comma separated list of key=value pairs defining the state of experimental features. |


### Feature Gates

Expand Down
1 change: 1 addition & 0 deletions content/en/flux/components/source/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ please see the [bootstrap cheatsheet](../../cheatsheets/bootstrap.md).
|-----------------------------------|---------------|---------------------------------------------------------------------------------------------------------------------------------------|
| `OptimizedGitClones` | `true` | Optimises Git resource usage by only cloning repositories when the HEAD commit changed since last reconciliation. |
| `ForceGoGitImplementation` | `true` | Soft-deprecates `libgit2` by ignoring the value set for `spec.gitImplementation`, and using `go-git` for all reconciliations instead. |
| `CacheSecretsAndConfigMaps` | `false` | Configures the caching of Secrets and ConfigMaps by the controller-runtime client. When enabled, it will cache both object types, resulting in increased memory usage and cluster-wide RBAC permissions (list and watch). |