github.com/replicatedhq/ship@v0.55.0/pkg/lifecycle/render/config/resolve/test-cases/api/circular-references.yml (about) 1 ## this has three options, charlie depends on bravo depends on alpha depends on charlie 2 ## Program should not crash 3 4 - name: A circular reference 5 error: true 6 config: 7 - name: alpha_group 8 description: Alpha Group 9 items: 10 - name: alpha 11 title: Alpha Value 12 type: text 13 readonly: true 14 value: '{{repl ConfigOption "charlie"}}' 15 16 - name: bravo 17 title: Bravo Value 18 type: text 19 readonly: true 20 value: '{{repl ConfigOption "alpha"}}' 21 22 - name: charlie 23 title: Charlie Value 24 type: text 25 readonly: true 26 value: '{{repl ConfigOption "bravo"}}' 27 28 responses: 29 json: | 30 []