-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore(dockerfiles/cd/utils/release): pretty output for offline package steps #352
Conversation
Based on the title and diff, it seems that the pull request is related to improving the output of offline package steps in Dockerfiles. More specifically, the changes made to the pull request replace There are no potential problems with this pull request. The changes made are minor but helpful in terms of improving the readability of the output of offline package steps. Suggestion: As the changes made in the pull request are minor, I suggest merging the pull request once it's approved. |
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Reviewer Guide 🔍
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨
|
…e steps Signed-off-by: wuhuizuo <[email protected]>
From oras v1.2.0, there's a break change for cli option of sub command `discover`. Ref: https://github.com/oras-project/oras/releases/tag/v1.2.0 Signed-off-by: wuhuizuo <[email protected]>
7e83838
to
78d8678
Compare
This pull request includes changes related to improving the output of some commands in the Dockerfiles. Specifically, it removes the "profile" attribute from enterprise server packages and adds "-oy" flag to "yq" command for pretty output in the "fetch_file_from_oci_artifact" and "check_file_in_oci_artifact" functions. There are no potential problems identified in this pull request. However, there are some suggestions that could be made to further improve the changes. For instance, it would be beneficial to add more context to the PR description to help other reviewers understand the purpose of the changes. Additionally, it would be helpful to add some explanation of why the "profile" attribute was removed from enterprise server packages. Overall, this pull request looks good, and the changes should be merged once the suggestions are implemented. |
depends on PingCAP-QE/ee-ops#1181 |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wuhuizuo The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
User description
Signed-off-by: wuhuizuo [email protected]
PR Type
enhancement, bug fix
Description
profile
attribute from enterprise server package definitions inpackages/offline-packages.yaml.tmpl
.-oy
flag toyq
command for pretty output infetch_file_from_oci_artifact
function inpackages/scripts/build-package-artifacts.sh.tmpl
.-oy
flag toyq
command for pretty output infetch_file_from_oci_artifact
andcheck_file_in_oci_artifact
functions inpackages/scripts/compose-offline-packages-artifacts.sh.tmpl
.Changes walkthrough 📝
offline-packages.yaml.tmpl
Remove profile attribute from enterprise server packages
packages/offline-packages.yaml.tmpl
profile
attribute from enterprise server package definitions.build-package-artifacts.sh.tmpl
Add pretty output flag to yq command in build script
packages/scripts/build-package-artifacts.sh.tmpl
-oy
flag toyq
command for pretty output infetch_file_from_oci_artifact
function.compose-offline-packages-artifacts.sh.tmpl
Add pretty output flag to yq command in compose script
packages/scripts/compose-offline-packages-artifacts.sh.tmpl
-oy
flag toyq
command for pretty output infetch_file_from_oci_artifact
andcheck_file_in_oci_artifact
functions.