Skip to content

Commit 1333596

Browse files
committed
Fix yaml parser error
1 parent 22c5952 commit 1333596

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scaffolder-templates/agentic-ai-template/template.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,10 @@ spec:
233233
owner: {{ '${{ user.entity.metadata.name }}' }}
234234
cluster: {{ cluster_subdomain }}
235235
host: {{ '${{ parameters.repo.host }}' }}
236-
destination: {{ '${{ parameters.repo.owner }}' }}/{{ '${{ parameters.component_id }}' }}
237-
quay_destination: {{ '${{ parameters.image_organization}}' }}/{{ '${{ parameters.component_id }}' }}
236+
# destination: {{ '${{ parameters.repo.owner }}' }}/{{ '${{ parameters.component_id }}' }}
237+
# quay_destination: {{ '${{ parameters.image_organization}}' }}/{{ '${{ parameters.component_id }}' }}
238+
destination: ${{ parameters.repo.owner }}/${{ parameters.component_id }}
239+
quay_destination: ${{ parameters.image_organization}}/${{ parameters.component_id }}
238240
port: 8080
239241
verify_commits: {{ '${{ parameters.repo.verify_commits }}' }}
240242
ai_model: {{ '${{ parameters.ai_model }}' }}

0 commit comments

Comments
 (0)