-
Notifications
You must be signed in to change notification settings - Fork 3
feat(kubernetes): add agent execution mode, executor-agent, sidecar refactor, GKE Sandbox, image & deps upgrades #33
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
Closed
Closed
Changes from 7 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
cfc5c69
feat: add GKE Sandbox (gVisor) support for execution pods
gafda 836645b
feat(kubernetes): add agent execution mode and image pull secrets
gafda fd2e3a6
feat(docs): update sidecar image and executor port
gafda 317db84
feat(docker): upgrade base image to trixie-dev
gafda 5a5fe2d
feat(docker): upgrade base images and dependencies
gafda 9f6f43d
feat(kubernetes): add image pull policy and secrets support
gafda 0104bd6
feat: add Redis Cluster, Sentinel, and TLS/SSL support
gafda c7c4bcb
feat(kubernetes): add GKE Sandbox compatibility checks
gafda 0f1a573
fix: pass TLS kwargs in config validator and disable ssl_check_hostna…
gafda 851dad1
fix: use mode-aware Redis client in config validator and remove local…
gafda 8afdee4
fix: address Copilot review issues from PR #33
gafda 35de004
feat(redis): fix cluster connection failures and add TLS integration …
gafda c527804
fix: Redis Cluster cross-slot transaction errors and version display
gafda d0ae73f
fix: address open Copilot review comments from PR #33
gafda 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -200,3 +200,5 @@ config/local.py | |
|
|
||
| # Hatch auto-generated version file | ||
| _version.py | ||
|
|
||
| .pdm-python | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,22 @@ | ||
| module preload | ||
|
|
||
| go 1.25 | ||
| go 1.26 | ||
|
|
||
| require ( | ||
| github.com/gorilla/mux v1.8.1 | ||
| github.com/davidbyttow/govips/v2 v2.16.0 | ||
| github.com/fatih/color v1.18.0 | ||
| github.com/gin-gonic/gin v1.11.0 | ||
| github.com/sirupsen/logrus v1.9.4 | ||
| github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1 | ||
| github.com/google/uuid v1.6.0 | ||
| github.com/shopspring/decimal v1.4.0 | ||
| gonum.org/v1/gonum v0.17.0 | ||
| github.com/gorilla/mux v1.8.1 | ||
| github.com/montanaflynn/stats v0.7.1 | ||
| github.com/xuri/excelize/v2 v2.10.0 | ||
| github.com/shopspring/decimal v1.4.0 | ||
| github.com/sirupsen/logrus v1.9.4 | ||
| github.com/spf13/cobra v1.10.2 | ||
| github.com/fatih/color v1.18.0 | ||
| github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1 | ||
| github.com/tidwall/gjson v1.18.0 | ||
| github.com/unidoc/unioffice/v2 v2.8.0 | ||
| github.com/xuri/excelize/v2 v2.10.0 | ||
| github.com/yuin/goldmark v1.7.16 | ||
| gonum.org/v1/gonum v0.17.0 | ||
| gopkg.in/yaml.v3 v3.0.1 | ||
| ) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,58 @@ | ||
| # Node.js global packages | ||
| # One package per line for npm install -g | ||
| # Node.js packages | ||
| # One package per line: npm install -g <package> | ||
|
|
||
| lodash | ||
| # Core utilities | ||
| archiver | ||
| axios | ||
| moment | ||
| uuid | ||
| chalk | ||
| commander | ||
| express | ||
| fs-extra | ||
| csv-parser | ||
| json2csv | ||
| papaparse | ||
| archiver | ||
| yauzl | ||
| pdf-lib | ||
| crypto-js | ||
| date-fns | ||
| fs-extra | ||
| lodash | ||
| luxon | ||
| uuid | ||
| validator | ||
| crypto-js | ||
| zod | ||
|
|
||
| # Web scraping & parsing | ||
| cheerio | ||
|
|
||
| # Data processing | ||
| papaparse | ||
| mathjs | ||
| ml-matrix | ||
| simple-statistics | ||
| sharp | ||
|
|
||
| # File formats - Office documents | ||
| exceljs | ||
| xlsx | ||
| pptxgenjs | ||
| mammoth | ||
|
|
||
| # File formats - Other | ||
| js-yaml | ||
| marked | ||
| pdf-lib | ||
|
|
||
| # Images | ||
| jimp | ||
| sharp | ||
|
|
||
| # Compression | ||
| yauzl | ||
|
|
||
| # TypeScript (recommended local + global) | ||
| typescript | ||
| ts-node | ||
| xlsx | ||
| exceljs | ||
| luxon | ||
| zod | ||
| @types/node | ||
|
|
||
| # Web frameworks | ||
| express | ||
| handlebars | ||
| cheerio | ||
| marked | ||
|
|
||
| # UI libraries | ||
| jquery | ||
| jquery-ui-dist | ||
| three | ||
| p5 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,18 @@ | ||
| # Math, science, and analysis packages | ||
|
|
||
| scipy>=1.11 | ||
| scikit-learn>=1.3 | ||
| statsmodels>=0.14 | ||
| sympy>=1.12 | ||
| mpmath>=1.3 | ||
| numba>=0.58 | ||
| llvmlite>=0.41 | ||
| numexpr>=2.8 | ||
| networkx>=3.2 | ||
| lifelines>=0.27 | ||
| autograd>=1.6 | ||
| autograd-gamma>=0.5 | ||
| formulaic>=1.0 | ||
| patsy>=0.5 | ||
| kiwisolver>=1.4 | ||
| joblib>=1.3 | ||
| threadpoolctl>=3.2 | ||
| # Math, science, and analysis | ||
| autograd-gamma>=0.5.0 | ||
| autograd>=1.7.0 | ||
| formulaic>=1.0.2 | ||
| joblib>=1.4.2 | ||
| kiwisolver>=1.4.7 | ||
| lifelines>=0.30.0 | ||
| llvmlite>=0.44.0 | ||
| mpmath>=1.3.0 | ||
| networkx>=3.4.2 | ||
| numba>=0.61.0 | ||
| numexpr>=2.10.2 | ||
| patsy>=1.0.1 | ||
| scikit-learn>=1.7.2 | ||
| scipy>=1.16.1 | ||
| statsmodels>=0.14.4 | ||
| sympy>=1.13.3 | ||
| threadpoolctl>=3.5.0 |
Oops, something went wrong.
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.
It appears you are no longer building
sidecar-nsenter?