feat: add gubbins-charts Helm chart for gubbins extension - #691
Merged
Conversation
Add umbrella Helm chart for the gubbins DiracX extension following the lhcbdiracx-charts pattern. This chart extends the base diracx chart with gubbins-specific configuration including: - Gubbins container image registry configuration - LollygagDB database setup - Developer mode enabled for testing - Example hostname configuration The chart serves as a tutorial and test example for community extensions.
chrisburr
marked this pull request as draft
October 27, 2025 12:51
This was referenced Oct 27, 2025
chrisburr
force-pushed
the
feat/add-gubbins-charts
branch
4 times, most recently
from
October 28, 2025 08:03
78d6eb7 to
60741e9
Compare
Update the gubbins pytest-integration CI to use the gubbins-charts umbrella chart instead of directly using the diracx chart with value overrides. Changes: - Copy gubbins-charts to /tmp/ during CI setup - Run helm dependency build on gubbins-charts before starting demo - Add --chart-path argument to run_demo.sh pointing to gubbins-charts - Simplify gubbins_values.yaml to only contain CI-specific overrides - Move base gubbins configuration to gubbins-charts/values.yaml This approach provides better separation of concerns: - Base configuration lives in gubbins-charts (part of the extension) - CI-specific overrides remain in gubbins_values.yaml - Pattern is reusable for other community extensions Related: DIRACGrid/diracx-charts#186
chrisburr
force-pushed
the
feat/add-gubbins-charts
branch
2 times, most recently
from
October 28, 2025 14:53
902c644 to
81a1d9d
Compare
chrisburr
marked this pull request as ready for review
October 28, 2025 15:31
chaen
approved these changes
Oct 28, 2025
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.
Summary
Add Helm charts for the gubbins DiracX extension and update the CI to use it.
This PR creates:
Changes
New Files
extensions/gubbins-charts/Chart.yaml- Chart metadata with diracx dependencyextensions/gubbins-charts/values.yaml- Gubbins-specific configurationextensions/gubbins-charts/README.md- Documentation and usage instructionsextensions/gubbins-charts/.gitignore- Standard Helm ignoresModified Files
extensions/gubbins_values.yaml- Simplified to only CI-specific overrides (imagePullPolicy).github/workflows/main.yml- Updated to download helm deps and use --chart-pathHow It Works
The pytest-integration CI workflow now:
run_demo.sh --only-download-deps--chart-path /tmp/gubbins-chartsThis provides clean separation:
gubbins-charts/values.yamlgubbins_values.yamlRelated PRs