-
Notifications
You must be signed in to change notification settings - Fork 4
ci: wire p987 into the build, release, and deploy automation #227
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,7 +77,7 @@ jobs: | |
| # Surgically rewrite the newTag of each mapache/* image only, leaving | ||
| # kerbecs and all comments/formatting untouched for a clean diff. | ||
| awk -v new="$NEW" ' | ||
| $0 ~ "- name: ghcr.io/gaucho-racing/mapache/(auth|vehicle|gr26|live|query|dashboard)$" { inmap=1; print; next } | ||
| $0 ~ "- name: ghcr.io/gaucho-racing/mapache/(auth|vehicle|gr26|p987|live|query|dashboard)$" { inmap=1; print; next } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For every release that changes the p987 pin, the generated infrastructure PR body remains incomplete because the changelog loop reads the unchanged Useful? React with 👍 / 👎. |
||
| inmap==1 && $1=="newTag:" { sub(/newTag:[[:space:]]*.*/, "newTag: " new); inmap=0 } | ||
| { print } | ||
| ' "infra/$KUSTOMIZATION" > "infra/$KUSTOMIZATION.tmp" && mv "infra/$KUSTOMIZATION.tmp" "infra/$KUSTOMIZATION" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When the next
mapacherelease runs, this newly advances the p987 deployment to the release image, butscripts/release.shstill excludes p987 fromGO_CONFIG_SERVICES; consequentlyp987/config/config.goremains at0.1.0, so the deployed service's banner and/p987/pingresponse report the wrong version. Add p987 to the release script's Go service list so the image tag and runtime version stay synchronized.Useful? React with 👍 / 👎.