-
Notifications
You must be signed in to change notification settings - Fork 10
draft: clean up environment variables #79
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
Open
killianmuldoon
wants to merge
7
commits into
rh-ecosystem-edge:main
Choose a base branch
from
killianmuldoon:pr-update-env-clean
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fd57b59
move all defaulting to env.defaults
killianmuldoon 6733275
move all defaulted variables to templates
killianmuldoon 2cfcbc4
Add valiation for variable templating
killianmuldoon 6577a80
drop DPU_INTERFACE variable as unused
killianmuldoon c09da1f
drop HBN_HOSTNAME variables as unused
killianmuldoon 4a811ec
make catalog source workaround more generic
killianmuldoon d4b593e
fixup clashes in HOSTED_CONTROL_PLANE_NAMESPACE variable
killianmuldoon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...er-installation/4.19-cataloguesource.yaml → ...er-installation/custom-catalogsource.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 85
🏁 Script executed:
cat -n Makefile | head -30Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 1494
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 21268
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 329
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 57
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 57
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 79
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 685
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 103
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 339
🏁 Script executed:
# Check the ci directory structure ls -la ci/Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 446
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 150
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 57
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 120
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 997
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 232
🏁 Script executed:
Repository: rh-ecosystem-edge/openshift-dpf
Length of output: 57
Fix
.envloading for mixed-goal invocations.Line 2 currently skips
.envif any exempt goal is present. Example:make validate-env-files deploy-dpfwill skip.envfordeploy-dpf, breaking runtime variables that scripts expect.The
filterfunction returns only matching goals; when non-empty, the condition is false and.envis excluded. The solution usesfilter-outto detect non-exempt goals instead—only skip.envif all goals are exempt.Proposed fix
🤖 Prompt for AI Agents