Replies: 1 comment
-
This was a follow-up to the issue report, answered at: In the current state, it's not possible to merge that way. I'm not sure what substantively has changed in the discussion as you propose it now, but thanks for the clarification and moving this to the more appropriate venue, where we can get it in shape to propose an RFC. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We're working on a solution based on Kustomization controller and resources to leverage the inventory and wait capability.
We would like to create a controller to intercept, filter and alter the content (possiblity provide extra signing) before they're actually landing on the cluster after reconcilation.
Per the API definition, currently either
GitRepository
orBucket
is required when a Kustomization resource reconciles.https://fluxcd.io/docs/components/kustomize/kustomization/#source-reference
It basically requires us to set up either a Git repository or S3 bucket (via Minio) inside the cluster which we're trying not to do so to keep our design simple.
Another attampt to go through Azure Blob or Git Repsitory outside the cluster may introduce extra latency since the manifest needs to go outside the cluster and then back in. Also, it might need extra measure to protect the data if credentials or other secret data are involved.
I'm wondering if the Kustomization could be able to support an arbitary HTTP URL which points to an internal service.
This may potentially enable the Kustomization controller to work with any controller inside the cluster.
Or a
Secret
denoting the endpoint would work as wellBeta Was this translation helpful? Give feedback.
All reactions