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
When creating ArgoCD applications with Nly, a pattern I've found useful so far is to create the namespace and application in one file:
--- apiVersion: v1 kind: Namespace metadata: name: backstage --- apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: backstage namespace: argocd spec: project: default sources: - path: charts/backstage repoURL: https://gitlab.example.com/gitops/main.git targetRevision: HEAD helm: valuesObject: host: backstage.local secretName: backstage destination: server: "https://kubernetes.default.svc" namespace: backstage
Nyl should check if the destination.namespace really is the one being referenced here (only if the server is kubernetes.default.svc)
destination.namespace
server
kubernetes.default.svc
The text was updated successfully, but these errors were encountered:
NiklasRosenstein
No branches or pull requests
When creating ArgoCD applications with Nly, a pattern I've found useful so far is to create the namespace and application in one file:
Nyl should check if the
destination.namespace
really is the one being referenced here (only if theserver
iskubernetes.default.svc
)The text was updated successfully, but these errors were encountered: