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

Only enable flux helm and source controller #5

Merged
merged 3 commits into from
Feb 25, 2024
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
22 changes: 13 additions & 9 deletions charts/fluxcd-addon-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,19 @@ The command removes all the Kubernetes components associated with the chart and

The following table lists the configurable parameters of the `fluxcd-addon-manager` chart and their default values.

| Parameter | Description | Default |
|--------------------------------------|-------------|---------------------------------------------------|
| image | | <code>ghcr.io/kluster-manager/fluxcd-addon</code> |
| tag | | <code></code> |
| kubeconfigSecretName | | <code>""</code> |
| kubectl.image | | <code>ghcr.io/appscode/kubectl:1.23</code> |
| fluxcdConfig.installCRDs | | <code>true</code> |
| fluxcdConfig.helmController.create | | <code>true</code> |
| fluxcdConfig.sourceController.create | | <code>true</code> |
| Parameter | Description | Default |
|-----------------------------------------------|-------------|---------------------------------------------------|
| image | | <code>ghcr.io/kluster-manager/fluxcd-addon</code> |
| tag | | <code></code> |
| kubeconfigSecretName | | <code>""</code> |
| kubectl.image | | <code>ghcr.io/appscode/kubectl:1.23</code> |
| fluxcdConfig.installCRDs | | <code>true</code> |
| fluxcdConfig.helmController.create | | <code>true</code> |
| fluxcdConfig.sourceController.create | | <code>true</code> |
| fluxcdConfig.imageReflectionController.create | | <code>false</code> |
| fluxcdConfig.imageAutomationController.create | | <code>false</code> |
| fluxcdConfig.kustomizeController.create | | <code>false</code> |
| fluxcdConfig.notificationController.create | | <code>false</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:
Expand Down
8 changes: 8 additions & 0 deletions charts/fluxcd-addon-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ fluxcdConfig:
create: true
sourceController:
create: true
imageReflectionController:
create: false
imageAutomationController:
create: false
kustomizeController:
create: false
notificationController:
create: false
Loading