Add auth-fake-executor profile for local development - #5118
Open
nikola-jokic wants to merge 3 commits into
Open
Conversation
Contributor
Greptile SummaryThe PR adds an authenticated local-development profile using the fake executor, including standard and Delve variants.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains; both previously reported issues are fixed by adding the DAP Procfile and including the new selector in the conflict warning.
|
| Filename | Overview |
|---|---|
| magefiles/dev.go | Adds the new profile selector, includes it in conflict diagnostics, enables auth dependencies, and waits for Keycloak. |
| _local/procfiles/auth-fake-executor.Procfile | Defines the authenticated local stack with the fake executor and profile-appropriate service configurations. |
| _local/procfiles/auth-fake-executor-dap.Procfile | Supplies the previously missing Delve variant using the repository's established DAP process and port conventions. |
| docs/developer_guide.md | Documents profile selection, purpose, and the new Procfile. |
| _local/README.md | Updates the local-stack Procfile inventory to include the new profile. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart LR
A[mage dev:up auth-fake-executor] --> B[Select auth-fake-executor Procfile]
B --> C[Enable auth compose profile]
C --> D[Start Keycloak dependencies]
D --> E[Start authenticated Armada services]
E --> F[Run fake executor without Kubernetes]
A2[mage dev:up auth-fake-executor -dap] --> B2[Select auth-fake-executor-dap Procfile]
B2 --> C
Reviews (5): Last reviewed commit: "fix msg" | Re-trigger Greptile
nikola-jokic
force-pushed
the
auth-fake-executor-profile
branch
3 times, most recently
from
August 18, 2026 10:20
a905c3b to
4fb6203
Compare
nikola-jokic
force-pushed
the
auth-fake-executor-profile
branch
from
August 21, 2026 13:46
4fb6203 to
dcb2f29
Compare
Contributor
|
Tick the box to add this pull request to the merge queue (same as
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What type of PR is this?
Dev experience
What this PR does / why we need it
makes it easier to test job transformations without running executor while still having auth logic.