We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add the possibility to add custom resources yaml to an Application.
Application
Some charts don't allow to add custom yaml values. In some cases, it could be great to add custom code to the original chart.
apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: myapp namespace: argo-cd spec: project: default source: repoURL: 'https://github.com/xxx/yyy/' path: client/config/crd targetRevision: v4.2.1 destination: server: 'https://kubernetes.default.svc' namespace: myns syncPolicy: syncOptions: - PruneLast=true additionalResources: # valueFiles: [] values: | apiVersion: v1 kind: Service metadata: name: my-service spec: selector: app: MyApp ports: - protocol: TCP port: 80 targetPort: 9376
The text was updated successfully, but these errors were encountered:
Would a multi-source application fit your use case? #8322
Sorry, something went wrong.
Yes it could :)
I see that I must wait until the 2.5 release ;)
Yep! An umbrella chart (pulling in your Helm chart as a dependency of a new, top-level chart) is probably the way to go until then.
PR is here for those following. #10432
Closing since this feature has been out for a while: https://argo-cd.readthedocs.io/en/stable/user-guide/multiple_sources/
No branches or pull requests
Summary
Add the possibility to add custom resources yaml to an
Application
.Motivation
Some charts don't allow to add custom yaml values. In some cases, it could be great to add custom code to the original chart.
Proposal
The text was updated successfully, but these errors were encountered: