deploy(dev): sample-app sha-54f8a2e#6
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the development overlay configuration for sample-app by reformatting the resources and patches, and updating the image tag to sha-54f8a2e. Feedback was provided regarding a redundant newName field in the image configuration, which can be avoided by adjusting the CI pipeline's kustomize command.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| - name: ghcr.io/david-uka/sample-app | ||
| newName: ghcr.io/david-uka/sample-app | ||
| newTag: sha-54f8a2e |
There was a problem hiding this comment.
The newName field is redundant because it is identical to the name field. This redundancy is typically introduced when the CI pipeline runs kustomize edit set image with the = syntax (e.g., kustomize edit set image <image>=<image>:<tag>).
To avoid this redundancy and keep the configuration clean, you can update the CI pipeline to use the simpler syntax:
kustomize edit set image ghcr.io/david-uka/sample-app:sha-54f8a2eThis will only update the newTag field and omit the redundant newName field.
- name: ghcr.io/david-uka/sample-app
newTag: sha-54f8a2e
Automated dev image bump from sample-app CI run 28874930610.