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
Cue File :
_environments: [ "0", "1" ] stages: [ "lint", "diff", "apply" ] ".k8s-workloads-image": { image: name: "registry.gitlab.com/gitlab-com/gl-infra/ci-images/k8s-workloads:1.2.0" } for k, _ in _environments { "\(k):dryrun": { extends: ".k8s-workloads-image" resource_group: "\(k)" script: """ make gen """ stage: "dryrun" } }
cue export test.cue --out yaml, Yaml File:
cue export test.cue --out yaml
stages: - lint - diff - apply 0:dryrun: extends: .k8s-workloads-image resource_group: "0" script: make gen stage: dryrun .k8s-workloads-image: image: name: registry.gitlab.com/gitlab-com/gl-infra/ci-images/k8s-workloads:1.2.0 1:dryrun: extends: .k8s-workloads-image resource_group: "1" script: make gen stage: dryrun
why generated out of order? I want output like this:
stages: - lint - diff - apply .k8s-workloads-image: image: name: registry.gitlab.com/gitlab-com/gl-infra/ci-images/k8s-workloads:1.2.0 0:dryrun: extends: .k8s-workloads-image resource_group: "0" script: make gen stage: dryrun 1:dryrun: extends: .k8s-workloads-image resource_group: "1" script: make gen stage: dryrun
Thank for your help!
The text was updated successfully, but these errors were encountered:
@Awadabang - please can you complete the information the bug issue template and update the issue description accordingly?
https://github.com/cue-lang/cue/issues/new?assignees=&labels=NeedsInvestigation%2C+Triage&projects=&template=bug_report.md&title=
Sorry, something went wrong.
No branches or pull requests
Cue File :
cue export test.cue --out yaml
, Yaml File:why generated out of order? I want output like this:
Thank for your help!
The text was updated successfully, but these errors were encountered: