-
Notifications
You must be signed in to change notification settings - Fork 75
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
Include value variables for customization arguments supported by flux -install
#53
Labels
enhancement
New feature or request
Comments
smurfralf
added a commit
to smurfralf/helm-charts
that referenced
this issue
Dec 20, 2021
…ity#53 Example helm cli usage to provide an imagePullSecret ``` helm ... --set "imagePullSecrets[0].name=secret1" ``` Signed-off-by: Robert R Allen <robert.r.allen@ericsson.com>
4 tasks
smurfralf
added a commit
to smurfralf/helm-charts
that referenced
this issue
Dec 20, 2021
…ity#53 Example helm cli usage to provide an imagePullSecret ``` helm ... --set "imagePullSecrets[0].name=secret1" ``` Signed-off-by: Robert R Allen <robert.r.allen@ericsson.com>
smurfralf
added a commit
to smurfralf/helm-charts
that referenced
this issue
Dec 20, 2021
…ity#53 Example helm cli usage to provide an imagePullSecret ``` helm ... --set "imagePullSecrets[0].name=secret1" ``` Signed-off-by: Robert R Allen <robert.r.allen@ericsson.com>
dwerder
pushed a commit
that referenced
this issue
Dec 21, 2021
imagePullSecrets is now taken care of. The enhancement request remains for the cluster-domain and network-policy fields (at a lower priority for me). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem ? Yes
I'd like to migrate from using
flux install --export
to using the flux2 helm chart. However our usage offlux
currently takes advantage of some of the extra flags thatflux install
supports. Specifically we do not download containers from the internet, so the container images need to come from an internal repository and need to use an image-pull-secret (which is already available in the k8s cluster).it would stand to reason that there is a need for the optional
flux
arguments, i.e. being able to set these values will be needed by other users who would like to migrate.The flux 0.24.1 version currently supports
create
boolean valuescreate
boolean valuesimage
setting for each controllertolerations
array valueswatchallnamespaces
boolean valueDescribe the solution you'd like.
At a minimum I'd like a new value variable defined for the
image-pull-secret
setting which would apply to all controllers.Although for my use case it would be sufficient to add a stanza to the
sa-*
(service account) templates, theflux install
manifests add the stanza to the deployment specs, so probably that would be the way to do it so it doesn't assume use ofserviceaccount: create: true
.A more general solution would cover the other empty cases in the table above:
cluster-domain
andnetwork-policy
Describe alternatives you've considered.
flux install --export
.Additional context.
Relevant abridged snippet of a manifest generated by
flux install --export --image-pull-secret mysecret --registry myartifactory.mycompany.net/fluxcd
:The text was updated successfully, but these errors were encountered: