renovate[bot]
b80d8354af
chore(deps): update docker/setup-buildx-action digest to 8d2750c
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-26 19:08:22 +00:00
Alex Jones
2276b12b0f
Update sister project link in README.md ( #1621 )
...
Signed-off-by: Alex Jones <1235925+AlexsJones@users.noreply.github.com >
2026-02-26 19:05:48 +00:00
Alex Jones
fd5bba6ab3
chore: updated readme ( #1620 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2026-02-25 13:52:00 +00:00
praveen0612
19a172e575
docs: align Go version with go.mod toolchain ( #1609 )
...
Signed-off-by: Praveen Kumar <kumarpraveen@adobe.com >
Co-authored-by: Praveen Kumar <kumarpraveen@adobe.com >
Co-authored-by: Alex Jones <1235925+AlexsJones@users.noreply.github.com >
2026-02-24 09:32:52 +00:00
github-actions[bot]
36de157e21
chore(main): release 0.4.30 ( #1618 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-20 10:47:51 +00:00
Three Foxes (in a Trenchcoat)
458aa9deba
fix: validate namespace before running custom analyzers ( #1617 )
...
* feat(serve): add short flag and env var for metrics port
Add short flag -m for --metrics-port to improve discoverability.
Add K8SGPT_METRICS_PORT environment variable support, consistent
with other K8SGPT_* environment variables.
This helps users who encounter port conflicts on the default
metrics port (8081) when running k8sgpt serve with --mcp or
other configurations.
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com >
* fix: validate namespace before running custom analyzers
Custom analyzers previously ignored the --namespace flag entirely,
executing even when an invalid or misspelled namespace was provided.
This was inconsistent with built-in filter behavior, which respects
namespace scoping.
Add namespace existence validation in RunCustomAnalysis() before
executing custom analyzers. If a namespace is specified but does
not exist, an error is reported and custom analyzers are skipped.
Fixes #1601
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com >
---------
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com >
Co-authored-by: Alex Jones <1235925+AlexsJones@users.noreply.github.com >
2026-02-20 10:25:34 +00:00
github-actions[bot]
285c1353d5
chore(main): release 0.4.29 ( #1614 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-20 09:06:18 +00:00
Three Foxes (in a Trenchcoat)
4f63e9737c
feat(serve): add short flag and env var for metrics port ( #1616 )
...
Add short flag -m for --metrics-port to improve discoverability.
Add K8SGPT_METRICS_PORT environment variable support, consistent
with other K8SGPT_* environment variables.
This helps users who encounter port conflicts on the default
metrics port (8081) when running k8sgpt serve with --mcp or
other configurations.
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com >
2026-02-20 06:27:44 +00:00
renovate[bot]
a56e4788c3
fix(deps): update k8s.io/utils digest to b8788ab ( #1572 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-18 14:00:10 +00:00
Three Foxes (in a Trenchcoat)
99911fbb3a
fix: use proper JSON marshaling for customrest prompt to handle special characters ( #1615 )
...
This fixes issue #1556 where the customrest backend fails when error messages
contain quotes or other special characters.
The root cause was that fmt.Sprintf was used to construct JSON, which doesn't
escape special characters like quotes, newlines, or tabs. When Kubernetes error
messages contain image names with quotes (e.g., "nginx:1.a.b.c"), the resulting
JSON was malformed and failed to parse.
The fix uses json.Marshal to properly construct the JSON payload, which
automatically handles all special character escaping according to JSON spec.
Fixes #1556
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Co-authored-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
2026-02-16 17:35:22 +00:00
Three Foxes (in a Trenchcoat)
abc46474e3
refactor: improve MCP server handlers with better error handling and pagination ( #1613 )
...
* refactor: improve MCP server handlers with better error handling and pagination
This PR refactors the MCP server handler functions to improve code quality,
maintainability, and user experience.
## Key Improvements
### 1. Eliminated Code Duplication
- Introduced a **resource registry pattern** that maps resource types to their
list and get functions
- Reduced ~500 lines of repetitive switch-case statements to ~100 lines of
declarative registry configuration
- Makes adding new resource types trivial (just add to the registry)
### 2. Proper Error Handling
- Fixed all ignored JSON marshaling errors (previously using `_`)
- Added `marshalJSON()` helper function with explicit error handling
- Improved error messages with context about what failed
### 3. Input Validation
- Added required field validation (resourceType, name, namespace where needed)
- Returns clear error messages when required fields are missing
- Validates resource types before attempting operations
### 4. Pagination Support
- Added `limit` parameter to `list-resources` handler
- Defaults to 100 items, max 1000 (configurable via constants)
- Prevents returning massive amounts of data that could overwhelm clients
- Consistent with `list-events` handler which already had limits
### 5. Resource Type Normalization
- Added `normalizeResourceType()` function to handle aliases (pods->pod, svc->service, etc.)
- Centralized resource type validation
- Better error messages listing supported resource types
### 6. Improved Filter Management
- Added validation to ensure filters array is not empty
- Better feedback messages (e.g., "filters already active", "no filters removed")
- Tracks which filters were actually added/removed
## Technical Details
**Constants Added:**
- `DefaultListLimit = 100` - Default max resources to return
- `MaxListLimit = 1000` - Hard limit for list operations
**New Functions:**
- `normalizeResourceType()` - Converts aliases to canonical types
- `marshalJSON()` - Marshals with proper error handling
**Registry Pattern:**
- `resourceRegistry` - Maps resource types to list/get functions
- `resourceTypeAliases` - Maps aliases to canonical types
## Backward Compatibility
All changes are backward compatible:
- No API changes to tool signatures
- Existing clients will work without modification
- New `limit` parameter is optional (defaults to 100)
## Testing
Tested with:
- All resource types (pods, deployments, services, nodes, etc.)
- Various aliases (svc, cm, pvc, sts, ds, rs)
- Edge cases (missing required fields, invalid resource types)
- Large result sets (pagination working correctly)
Fixes code duplication and improves maintainability of the MCP server.
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
* fix: remove duplicate mcp_handlers_old.go file causing build failures
The old handlers file was accidentally left in place after refactoring,
causing 'redeclared' errors for all handler methods. This commit removes
the old file to resolve the build failures.
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
---------
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Co-authored-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Co-authored-by: Alex Jones <1235925+AlexsJones@users.noreply.github.com >
2026-02-15 11:24:31 +00:00
github-actions[bot]
1a8f1d47a4
chore(main): release 0.4.28 ( #1591 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-15 11:11:48 +00:00
Three Foxes (in a Trenchcoat)
1f2ff98834
fix: align CI Go versions with go.mod to ensure consistency ( #1611 )
...
Fixes #1610
The CI workflows were using inconsistent Go versions (1.22, 1.23) that
didn't match go.mod (go 1.24.1, toolchain go1.24.11). This creates
confusion for contributors and risks version-specific issues.
Changes:
- test.yaml: GO_VERSION ~1.22 -> ~1.24
- build_container.yaml: GO_VERSION ~1.23 -> ~1.24
- release.yaml: go-version 1.22 -> ~1.24
This aligns with PR #1609 which updates CONTRIBUTING.md to reflect
go.mod's Go 1.24 requirement.
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
Co-authored-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com >
2026-02-15 11:04:03 +00:00
kk573
c80b2e2c34
fix: use MaxCompletionTokens instead of deprecated MaxTokens for OpenAI ( #1604 )
...
The OpenAI API deprecated 'max_tokens' parameter in favor of
'max_completion_tokens' for newer models (o1, gpt-4o, etc.).
This change fixes the error:
'Unsupported parameter: max_tokens is not supported with this model.
Use max_completion_tokens instead.'
Refs: https://platform.openai.com/docs/api-reference/chat/create#chat-create-max_tokens
Signed-off-by: Evgenii Kuzakov <evgeniy.kuzakov@csssr.com >
Co-authored-by: Evgenii Kuzakov <evgeniy.kuzakov@csssr.com >
2026-01-27 17:46:51 +00:00
lif
867bce1907
feat: add Groq as LLM provider ( #1600 )
...
Add Groq as a new AI backend provider. Groq provides an OpenAI-compatible
API, so this implementation reuses the existing OpenAI client library
with Groq's API endpoint.
Closes #1269
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Signed-off-by: majiayu000 <1835304752@qq.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-05 12:05:17 +00:00
Alex Jones
f5fb2a7e12
feat: multiple security fixes. Prometheus: v0.302.1 → v0.306.0 ( #1597 )
...
Kubernetes client-go: v0.32.2 → v0.32.3 (security patches)
gRPC Gateway: v2.25.1 → v2.26.3
Prometheus Sigv4: v0.1.1 → v0.2.0
OpenTelemetry: Multiple v1.34.0 → v1.36.0 updates
gRPC: v1.70.0 → v1.73.0
Docker SDK: v27.4.1 → v28.3.0
Cloud/Auth SDKs: Multiple security updates
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-12-22 13:56:02 +00:00
renovate[bot]
a303ffa21c
chore(deps): update actions/setup-go digest to 40f1582 ( #1593 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-22 08:37:11 +00:00
Alex Jones
21369c5c09
chore: util tests ( #1594 )
...
* chore: incremental test coverage
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: incremental test coverage
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixed some security stuff
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing linting issues
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing linting issues
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing linting issues
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-12-22 08:24:18 +00:00
renovate[bot]
40ffcbec6b
chore(deps): update actions/checkout digest to 93cb6ef ( #1592 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-18 16:45:32 +00:00
renovate[bot]
7fe3bdbd95
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1550 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-18 16:08:12 +00:00
github-actions[bot]
e7b7a5db47
chore(main): release 0.4.27 ( #1590 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-18 13:52:08 +00:00
Alex Jones
5480051230
feat: mcp v2 ( #1589 )
...
* feat: bringing in 9 new mcp capabilities
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: bringing in 9 new mcp capabilities
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixed linting issue
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-12-18 13:11:10 +00:00
github-actions[bot]
ee6f58443b
chore(main): release 0.4.26 ( #1584 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-16 08:31:09 +01:00
Alex Jones
f1d2e306f3
chore: missing filter arg on serve ( #1583 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-10-16 08:27:39 +01:00
github-actions[bot]
83c5d67084
chore(main): release 0.4.25 ( #1576 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-03 20:09:29 +01:00
Alex Jones
291e42dc4b
feat: fix to broken inference ( #1575 )
...
Signed-off-by: Alex <alexsimonjones@gmail.com >
2025-09-03 20:08:44 +01:00
github-actions[bot]
8bbffed643
chore(main): release 0.4.24 ( #1560 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-24 18:59:36 +01:00
Umesh Kaul
53345895de
feat: update helm charts with mcp support and fix Google ADA issue ( #1568 )
...
* migrated to more actively maintained mcp golang lib and added AI explain support for mcp mode
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* added a makefile option to create local docker image for testing
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* fixed linter errors and made anonymize as an arg
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* added mcp support for helm chart and fixed google adk support issue
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
---------
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
Co-authored-by: Alex Jones <1235925+AlexsJones@users.noreply.github.com >
2025-08-18 19:33:12 +01:00
Alex Jones
7e332761d8
feat: reintroduced inference code ( #1548 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-08-18 19:32:11 +01:00
renovate[bot]
0239b2fe6e
chore(deps): update docker/login-action digest to 184bdaa ( #1559 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-17 20:17:52 +01:00
renovate[bot]
c5c9135900
chore(deps): update amannn/action-semantic-pull-request action to v6 ( #1565 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-16 12:06:30 +01:00
renovate[bot]
5e86f4925c
chore(deps): update goreleaser/goreleaser-action digest to e435ccd ( #1569 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-15 14:07:28 +01:00
Bruno Andrade
0cf4cae07e
feat: add ClusterServiceVersion, Subscription, InstallPlan, OperatorGroup, and CatalogSource analyzers ( #1564 )
...
Signed-off-by: Bruno Andrade <bruno.balint@gmail.com >
2025-08-13 17:39:12 +01:00
renovate[bot]
e385e77da9
chore(deps): update actions/checkout action to v5 ( #1562 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-12 16:56:30 +01:00
Umesh Kaul
c47ae595fb
fix: migrated to more actively maintained mcp golang lib and added AI explain ( #1557 )
...
* migrated to more actively maintained mcp golang lib and added AI explain support for mcp mode
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* added a makefile option to create local docker image for testing
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* fixed linter errors and made anonymize as an arg
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
---------
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-08-10 12:52:17 +01:00
github-actions[bot]
00c99dc934
chore(main): release 0.4.23 ( #1549 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-10 07:48:03 +01:00
Jian Zhang
a821814125
feat: add ClusterCatalog and ClusterExtension analyzers ( #1555 )
...
Signed-off-by: Jian Zhang <jiazha@redhat.com >
2025-08-08 17:12:05 +01:00
renovate[bot]
50d5d78c06
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1537 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-20 20:27:15 +01:00
renovate[bot]
5b4224951e
fix(deps): update module helm.sh/helm/v3 to v3.17.4 [security] ( #1541 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-20 19:20:42 +01:00
Anders Swanson
290a4be210
feat: oci genai chat models ( #1337 )
...
Signed-off-by: Anders Swanson <anders.swanson@oracle.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-07-20 10:02:47 +01:00
github-actions[bot]
fe4608793d
chore(main): release 0.4.22 ( #1545 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-18 15:28:01 +01:00
Umesh Kaul
3a1187ad5a
feat: add streamable-http support for MCP server ( #1546 )
...
* use mcp library to support streamable http and fix resourceResponse
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* added name and version for mcp server
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* added tests
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
* chore: fixed linter
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fixed linter issues in server_test.go
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
---------
Signed-off-by: Umesh Kaul <umeshkaul@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Co-authored-by: AlexsJones <alexsimonjones@gmail.com >
2025-07-18 15:14:54 +01:00
koichi
1819e6f410
feat: add APAC region Claude models support for Amazon Bedrock ( #1543 )
...
Signed-off-by: Koichi Shimada <jumpe1programming@gmail.com >
2025-07-14 11:24:03 +01:00
github-actions[bot]
392c79d0be
chore(main): release 0.4.21 ( #1536 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-27 11:55:09 +01:00
HarelMil
00c07999e2
feat: add latest and legacy stable models ( #1539 )
...
Signed-off-by: HarelMil <HarelMil@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-06-27 08:34:23 +01:00
Alex Jones
8002d94345
feat: support for claude4 && model names listed ( #1540 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-06-27 08:24:38 +01:00
renovate[bot]
0c917fc601
chore(deps): update docker/setup-buildx-action digest to e468171 ( #1527 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-24 14:47:12 +01:00
renovate[bot]
08f2855a4d
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1511 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-20 17:20:36 +01:00
github-actions[bot]
57d32720dc
chore(main): release 0.4.20 ( #1533 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-20 16:56:13 +01:00
Alex Jones
0f700f0cd3
chore: model name ( #1535 )
...
* feat: added cache purge
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: improved AWS creds errors
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: removed model name
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated tests
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-06-20 16:30:50 +01:00
Alex Jones
74fbde0053
feat: added cache purge ( #1532 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-06-20 16:00:08 +01:00
github-actions[bot]
ff619481cc
chore(main): release 0.4.19 ( #1531 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-20 13:54:13 +01:00
Alex Jones
5636515db9
feat: fixed haiku ( #1530 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-06-20 13:49:24 +01:00
github-actions[bot]
47f09ac686
chore(main): release 0.4.18 ( #1510 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-20 13:28:54 +01:00
Alex Jones
be4fb1cc03
chore: model access ( #1529 )
...
* chore: improve the node analyzer reporting false positives
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: improving the bedrock model access message
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: improving the bedrock model access message
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: improving the bedrock model access message
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: repairing tests
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-06-20 13:27:49 +01:00
renovate[bot]
5947876e49
chore(deps): update softprops/action-gh-release digest to 72f2c25 ( #1526 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-11 06:17:02 +01:00
renovate[bot]
7d4cb26713
fix(deps): update k8s.io/utils digest to 4c0f3b2 ( #1523 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-10 19:04:24 +01:00
renovate[bot]
6b9f346bf6
chore(deps): update softprops/action-gh-release digest to d5382d3 ( #1525 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-06-10 18:50:49 +01:00
renovate[bot]
42654e7f55
chore(deps): update codecov/codecov-action digest to 18283e0 ( #1513 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-27 18:56:55 +01:00
renovate[bot]
7dfe8bef0f
chore(deps): update docker/build-push-action digest to 2634353 ( #1517 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-27 18:43:24 +01:00
renovate[bot]
dfcc5dc5a1
chore(deps): update docker/build-push-action digest to 1dc7386 ( #1512 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-20 11:21:03 +01:00
renovate[bot]
d7cb19ad29
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1509 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 09:08:24 +01:00
github-actions[bot]
306b3c9997
chore(main): release 0.4.17 ( #1499 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-05-14 20:57:55 +01:00
renovate[bot]
1e57b7774c
chore(deps): update golangci/golangci-lint-action action to v8 ( #1490 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-14 20:45:57 +01:00
renovate[bot]
d308c511fb
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1500 )
...
* fix(deps): update module gopkg.in/yaml.v2 to v3
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* chore: resolved conflict in deps
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-14 20:38:36 +01:00
Alex Jones
4faf77d91a
chore: golangci lint ( #1508 )
...
* feat: added token for goreleaser
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: updated the bedrock supported regions
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updating golangci_lint
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-14 17:04:49 +01:00
rkarthikr
b2241c03c9
feat: adding fixes for Messages API issue 1391 ( #1504 )
...
Signed-off-by: rkarthikr <38294804+rkarthikr@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-14 14:33:54 +01:00
Kay Yan
0b7ddf5e3b
feat: new job analyzer ( #1506 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
2025-05-14 09:22:05 +01:00
renovate[bot]
d0f03641ae
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1454 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-09 15:30:11 +01:00
renovate[bot]
e76bdb0c23
chore(deps): update actions/setup-go digest to d35c59a ( #1495 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-09 13:17:19 +01:00
typeid
cae94e7b6d
fix: panic in k8sgpt auth update ( #1497 )
...
Signed-off-by: Claudio Busse <cbusse@redhat.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-09 13:02:37 +01:00
typeid
7e375a30be
fix: align documentation to reflect default analyzers properly ( #1498 )
...
Signed-off-by: Claudio Busse <cbusse@redhat.com >
2025-05-09 12:58:29 +01:00
github-actions[bot]
34ff645fa0
chore(main): release 0.4.16 ( #1478 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-05-06 19:24:25 +01:00
Naveen Thangaraj
61b60d5768
feat: enhancement of deployment analyzer ( #1406 )
...
* Updated the deployment analyzer
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Enhanced the deployment analyzer
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
---------
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-06 16:30:16 +01:00
renovate[bot]
6a81d2c140
fix(deps): update k8s.io/utils digest to 0f33e8f ( #1484 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-06 11:30:48 +01:00
rkarthikr
21bc76e5b7
feat: add support for Amazon Bedrock Inference Profiles ( #1492 )
...
Signed-off-by: rkarthikr <38294804+rkarthikr@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-06 11:18:40 +01:00
renovate[bot]
d5341f3c00
chore(deps): update golangci/golangci-lint-action digest to 9fae48a ( #1489 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-06 09:23:12 +01:00
Alex Jones
752a16c407
feat: supported regions govcloud ( #1483 )
...
* feat: added token for goreleaser
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: updated the bedrock supported regions
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-05-01 09:01:25 +01:00
renovate[bot]
81da402d46
chore(deps): update docker/build-push-action digest to 14487ce ( #1472 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-29 13:58:23 +01:00
github-actions[bot]
f2f25edef7
chore(main): release 0.4.15 ( #1477 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-29 12:57:30 +01:00
Alex Jones
85935a46d8
feat: added token for goreleaser ( #1476 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-29 12:49:44 +01:00
github-actions[bot]
a56e663169
chore(main): release 0.4.14 ( #1470 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-29 09:26:48 +01:00
Alex Jones
e41ffd80d0
feat: add MCP support ( #1471 )
...
* feat: first mcp impl
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: update
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: wip
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: switcheed to stdio transport
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: readme
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: fix the linter 🤖
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: fix the linter 🤖
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat(mcp): implement MCP server and handler
- Implement MCP server and handler
- Add MCP server to serve
- Add MCP handler to handle MCP requests
- Add MCP server to serve
- Add MCP handler to handle MCP requests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: consolidating code duplication
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added http sse support
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixed broken tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated and fixed linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated and fixed linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated the linter issues
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-29 09:22:44 +01:00
ju187
f603948935
feat: using modelName will calling completion ( #1469 )
...
* using modelName will calling completion
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* sign
Signed-off-by: Tony Chen <tony_chen@discovery.com >
---------
Signed-off-by: Tony Chen <tony_chen@discovery.com >
2025-04-24 09:15:17 +01:00
github-actions[bot]
67f5855695
chore(main): release 0.4.13 ( #1465 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-22 11:28:20 +01:00
Antoine Deschênes
ebb0373f69
fix: reverse hpa ScalingLimited error condition ( #1366 )
...
* fix: reverse hpa ScalingLimited error condition
Signed-off-by: Antoine Deschênes <antoine.deschenes@linux.com >
* chore: removed break
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Antoine Deschênes <antoine.deschenes@linux.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-22 11:27:02 +01:00
Alex Jones
3b6ad06de1
feat: slack announce ( #1466 )
...
* chore: added slack integration on release
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: patched two go dep security warnings
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-22 10:49:52 +01:00
renovate[bot]
443469960a
chore(deps): update softprops/action-gh-release digest to da05d55 ( #1464 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-19 20:27:30 +01:00
github-actions[bot]
17863c24d5
chore(main): release 0.4.12 ( #1460 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-17 20:57:10 +01:00
renovate[bot]
e588fc316d
fix(deps): update module golang.org/x/net to v0.38.0 [security] ( #1462 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-17 20:50:44 +01:00
Alex Jones
a128906136
feat: new analyzers ( #1459 )
...
* chore: rebased
chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: switching old sonnet to message API
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added three new analyzers
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.2 (#1400 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* docs: remove extra dollar sign in README.md (#1410 )
Signed-off-by: Qian_Xiao <heyheyco@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* test: add tests for `k8sgpt/pkg/analyzer/events.go` (#913 )
* test: add tests for events_test.go
Signed-off-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
* feat: fixed event tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* docs: add table of contents and cleanup (#1413 )
Signed-off-by: hadi2f244 <m.h.azaddel@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: linter (#1414 )
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): pin golangci/golangci-lint-action action to 1481404 (#1415 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): update goreleaser/goreleaser-action digest to 9c156ee (#1411 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: prometheus UTF8Validation (#1404 )
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix(deps): update module gopkg.in/yaml.v2 to v3 (#1363 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: added new AmazonBedrock model (#1390 )
* Update AI Bedrock region - Added mumbai region
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
* Update amazonbedrock.go
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
* Added new AI model to work for ap-south-1 region[that does not uses inference profile]
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
---------
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.3 (#1412 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): update module github.com/docker/docker to v28 (#1376 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updating deps (#1422 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): update docker/setup-buildx-action digest to b5ca514 (#1371 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.4 (#1421 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fix workflows (#1423 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.5 (#1424 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing docker build push action (#1426 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated actor for login (#1430 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): pin docker/build-push-action action to 471d1dc (#1428 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.6 (#1427 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing build (#1431 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): update actions/upload-artifact digest to ea165f8 (#1425 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.7 (#1432 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: removed krew release (#1434 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.8 (#1435 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixing (#1437 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(deps): pin dependencies (#1440 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.9 (#1439 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: pod analyzer catches errors when containers are in Terminated state (#1438 )
Signed-off-by: Guoxun Wei <guwe@microsoft.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: add a naive support of bedrock inference profile (#1446 )
* feat: add a naive support of bedrock inference profile
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* feat: improving the tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Tony Chen <tony_chen@discovery.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix(deps): update module gopkg.in/yaml.v2 to v3 (#1417 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix(deps): update module helm.sh/helm/v3 to v3.17.3 [security] (#1448 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.10 (#1441 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: call bedrock with inference profile (#1449 )
* call bedrock with inference profile
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* add validation and test
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* update test
Signed-off-by: Tony Chen <tony_chen@discovery.com >
---------
Signed-off-by: Tony Chen <tony_chen@discovery.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix(deps): update module gopkg.in/yaml.v2 to v3 (#1447 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* docs: fix the slack invite link (#1450 )
Signed-off-by: Pengfei Ni <feiskyer@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: add verbose flag to enable detailed output (#1420 )
* feat: add verbose flag to enable detailed output
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
* test: add verbose output tests for analysis.go and root.go
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
---------
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix(deps): update module gopkg.in/yaml.v2 to v3 (#1453 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: improved test coverage (#1455 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: config ai provider in query (#1457 )
Signed-off-by: Guoxun Wei <guwe@microsoft.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore(main): release 0.4.11 (#1451 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixed test
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixed test
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Signed-off-by: Qian_Xiao <heyheyco@gmail.com >
Signed-off-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: hadi2f244 <m.h.azaddel@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
Signed-off-by: Guoxun Wei <guwe@microsoft.com >
Signed-off-by: Tony Chen <tony_chen@discovery.com >
Signed-off-by: Pengfei Ni <feiskyer@gmail.com >
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Qian_Xiao <heyheyco@gmail.com >
Co-authored-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
Co-authored-by: Hadi Azaddel <m.h.azaddel@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kay Yan <kay.yan@daocloud.io >
Co-authored-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
Co-authored-by: gossion <guwe@microsoft.com >
Co-authored-by: ju187 <tony_chen@discovery.com >
Co-authored-by: Pengfei Ni <feiskyer@users.noreply.github.com >
Co-authored-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
2025-04-15 13:43:38 +01:00
renovate[bot]
0553b984b7
chore(deps): update codecov/codecov-action digest to ad3126e ( #1456 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:45:00 +01:00
github-actions[bot]
96d86d3eb0
chore(main): release 0.4.11 ( #1451 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-15 11:24:06 +01:00
gossion
df17e3e728
fix: config ai provider in query ( #1457 )
...
Signed-off-by: Guoxun Wei <guwe@microsoft.com >
2025-04-15 11:11:40 +01:00
Alex Jones
80904e3063
feat: improved test coverage ( #1455 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-14 14:15:26 +01:00
renovate[bot]
cf6f9289e1
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1453 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-14 13:50:15 +01:00
Yicheng
a79224e2bf
feat: add verbose flag to enable detailed output ( #1420 )
...
* feat: add verbose flag to enable detailed output
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
* test: add verbose output tests for analysis.go and root.go
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
---------
Signed-off-by: Yicheng <36285652+zyc140345@users.noreply.github.com >
2025-04-14 13:06:24 +01:00
Pengfei Ni
9ce33469d8
docs: fix the slack invite link ( #1450 )
...
Signed-off-by: Pengfei Ni <feiskyer@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-14 11:48:35 +01:00
renovate[bot]
969fe99b33
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1447 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-11 09:53:59 +01:00
ju187
91d423b147
feat: call bedrock with inference profile ( #1449 )
...
* call bedrock with inference profile
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* add validation and test
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* update test
Signed-off-by: Tony Chen <tony_chen@discovery.com >
---------
Signed-off-by: Tony Chen <tony_chen@discovery.com >
2025-04-11 07:11:38 +01:00
github-actions[bot]
766b51cd3e
chore(main): release 0.4.10 ( #1441 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-10 21:45:59 +01:00
renovate[bot]
060a3b2a26
fix(deps): update module helm.sh/helm/v3 to v3.17.3 [security] ( #1448 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-10 18:59:22 +01:00
renovate[bot]
ce4b3c2e7d
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1417 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-10 11:25:50 +01:00
ju187
78ffa5904a
feat: add a naive support of bedrock inference profile ( #1446 )
...
* feat: add a naive support of bedrock inference profile
Signed-off-by: Tony Chen <tony_chen@discovery.com >
* feat: improving the tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Tony Chen <tony_chen@discovery.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-10 09:47:58 +01:00
gossion
dceda9a6a1
fix: pod analyzer catches errors when containers are in Terminated state ( #1438 )
...
Signed-off-by: Guoxun Wei <guwe@microsoft.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-08 10:49:53 +01:00
github-actions[bot]
e7783482ce
chore(main): release 0.4.9 ( #1439 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-08 09:17:34 +01:00
renovate[bot]
a5574ee49d
chore(deps): pin dependencies ( #1440 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-08 09:08:25 +01:00
Alex Jones
f68ff0efee
chore: fixing ( #1437 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-08 08:36:39 +01:00
github-actions[bot]
0c63044254
chore(main): release 0.4.8 ( #1435 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-07 20:31:33 +01:00
Alex Jones
39ae2aa635
chore: removed krew release ( #1434 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-07 20:28:36 +01:00
github-actions[bot]
05040da188
chore(main): release 0.4.7 ( #1432 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-07 17:32:40 +01:00
renovate[bot]
9bffc7cff7
chore(deps): update actions/upload-artifact digest to ea165f8 ( #1425 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-07 16:54:08 +01:00
Alex Jones
c5fe2c68d1
chore: fixing build ( #1431 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-07 16:50:19 +01:00
github-actions[bot]
c1b267b818
chore(main): release 0.4.6 ( #1427 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-07 15:22:49 +01:00
renovate[bot]
5086ccd659
chore(deps): pin docker/build-push-action action to 471d1dc ( #1428 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-07 15:16:26 +01:00
Alex Jones
b6261026f8
chore: updated actor for login ( #1430 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-07 15:07:49 +01:00
Alex Jones
1681aadac1
chore: fixing docker build push action ( #1426 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-07 07:37:25 +01:00
github-actions[bot]
9874cef8bf
chore(main): release 0.4.5 ( #1424 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-07 06:51:58 +01:00
Alex Jones
3dbc9e1a20
chore: fix workflows ( #1423 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-07 06:50:46 +01:00
github-actions[bot]
e0d66f43f7
chore(main): release 0.4.4 ( #1421 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-06 20:41:54 +01:00
renovate[bot]
d4de5d9e3f
chore(deps): update docker/setup-buildx-action digest to b5ca514 ( #1371 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-06 20:34:35 +01:00
Alex Jones
5b7fb7e619
chore: updating deps ( #1422 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-06 19:30:25 +01:00
renovate[bot]
68ddac0089
chore(deps): update module github.com/docker/docker to v28 ( #1376 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-06 16:47:40 +01:00
github-actions[bot]
d1a29e4001
chore(main): release 0.4.3 ( #1412 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-04 11:49:09 +01:00
Sakshi Singh
ad2c90a129
chore: added new AmazonBedrock model ( #1390 )
...
* Update AI Bedrock region - Added mumbai region
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
* Update amazonbedrock.go
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
* Added new AI model to work for ap-south-1 region[that does not uses inference profile]
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
---------
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-04-04 11:45:05 +01:00
renovate[bot]
e4861e9e2d
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1363 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-02 16:19:03 +01:00
Kay Yan
3c353b0e93
fix: prometheus UTF8Validation ( #1404 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
2025-04-02 16:07:32 +01:00
renovate[bot]
c823de12e6
chore(deps): update goreleaser/goreleaser-action digest to 9c156ee ( #1411 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-01 07:34:51 +01:00
renovate[bot]
e231032e1b
chore(deps): pin golangci/golangci-lint-action action to 1481404 ( #1415 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-31 20:14:41 +01:00
Alex Jones
f0b18cfb1c
chore: linter ( #1414 )
...
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: changing linter
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2025-03-31 19:17:55 +01:00
Hadi Azaddel
a31d07c802
docs: add table of contents and cleanup ( #1413 )
...
Signed-off-by: hadi2f244 <m.h.azaddel@gmail.com >
2025-03-31 19:04:59 +01:00
Eshaan Aggarwal
06d201ca5d
test: add tests for k8sgpt/pkg/analyzer/events.go ( #913 )
...
* test: add tests for events_test.go
Signed-off-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
* feat: fixed event tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Eshaan Aggarwal <96648934+EshaanAgg@users.noreply.github.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-03-31 14:33:02 +01:00
Qian_Xiao
a962741220
docs: remove extra dollar sign in README.md ( #1410 )
...
Signed-off-by: Qian_Xiao <heyheyco@gmail.com >
2025-03-31 14:09:41 +01:00
github-actions[bot]
a75ec50789
chore(main): release 0.4.2 ( #1400 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-03-28 14:17:21 +00:00
Alex Jones
e5817f9e55
feat: old sonnet ( #1408 )
...
* chore: rebased
chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: switching old sonnet to message API
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-03-28 13:51:47 +00:00
renovate[bot]
f5eaf817f0
fix(deps): update k8s.io/utils digest to 1f6e0b7 ( #1405 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-25 07:26:43 +00:00
renovate[bot]
eb381b8087
chore(deps): update actions/upload-artifact digest to ea165f8 ( #1402 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-21 10:42:48 +00:00
Alex Jones
288ca862b3
chore: fix error ( #1403 )
...
* chore: rebased
chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* fix: missing error
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-03-19 21:05:53 +00:00
renovate[bot]
81d4aaf402
chore(deps): update actions/setup-go digest to 0aaccfd ( #1401 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-19 15:39:46 +00:00
renovate[bot]
fdf8e7a95a
chore(deps): update docker/login-action digest to 74a5d14 ( #1397 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-17 19:17:47 +00:00
github-actions[bot]
5a48bae667
chore(main): release 0.4.1 ( #1389 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-03-17 12:23:11 +00:00
popsiclexu
7540e0084e
feat: add custom restful backend for complex scenarios (e.g, rag) ( #1228 )
...
* feat: add custom restful backend for complex scenarios (e.g, rag)
Signed-off-by: popsiclexu <zhenxuexu@gmail.com >
* chore: rebased
chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: resolved issues
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: popsiclexu <zhenxuexu@gmail.com >
Signed-off-by: popsiclexu <ZhenxueXu@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Co-authored-by: popsiclexu <zhenxue.xu@mthreads.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-03-17 12:21:38 +00:00
renovate[bot]
eb7b36aa27
fix(deps): update module golang.org/x/net to v0.36.0 [security] ( #1395 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-17 12:06:10 +00:00
renovate[bot]
d6d2e3bc42
chore(deps): update goreleaser/goreleaser-action digest to 90a3faa ( #1308 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-11 21:20:04 +00:00
100daysofdevops
4e39cb65b3
fix(deps): update default model to gpt-4o for improved performance and cost efficiency ( #1332 )
...
* fix: update OpenAI API key generation URL to reflect new platform link
Updated the outdated URL 'https://beta.openai.com/account/api-keys ' to the current OpenAI API key generation page 'https://platform.openai.com/account/api-keys '.
This resolves the issue where users were directed to an incorrect URL when generating an OpenAI API key.
Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com >
* fix(deps):Add transition plan for GPT-3.5 Turbo to GPT-4o
- A comprehensive comparison of GPT-3.5 Turbo and GPT-4o models, focusing on performance and cost improvements.
- Documentation updates highlighting the planned deprecation of gpt-3.5-turbo-0301 on February 13, 2025.
- Clear migration guidelines for transitioning to GPT-4o or GPT-4o mini to ensure service continuity.
Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com >
---------
Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-03-11 20:58:21 +00:00
renovate[bot]
db5e517dbb
chore(deps): update softprops/action-gh-release digest to c95fe14 ( #1359 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-11 20:52:28 +00:00
Cindy Tong
aa1e237ebb
feat: add amazon bedrock nova pro and nova lite models ( #1383 )
...
* feat: add amazon bedrock nova pro and nova lite models
Signed-off-by: Cindy Tong <tongcindyy@gmail.com >
* fix nova responses
Signed-off-by: Cindy Tong <tongcindyy@gmail.com >
* remove printing of Nova Response
Signed-off-by: Cindy Tong <tongcindyy@gmail.com >
* remove comments
Signed-off-by: Cindy Tong <tongcindyy@gmail.com >
* chore: rebased
chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: adding inference profile labels as model names
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added some tests around completions and responses
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added model test
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: Cindy Tong <tongcindyy@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Co-authored-by: AlexsJones <alexsimonjones@gmail.com >
2025-03-11 12:55:21 +00:00
renovate[bot]
f2fdfd8dca
chore(deps): update actions/setup-go digest to f111f33 ( #1364 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-07 12:07:47 +00:00
github-actions[bot]
e14c3dad55
chore(main): release 0.4.0 ( #1382 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-03-07 11:15:27 +00:00
renovate[bot]
093975e50d
chore(deps): update actions/upload-artifact digest to 4cec3d8 ( #1378 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-06 15:02:06 +00:00
Sakshi Singh
4f4f4f13a0
chore: Adding region ( #1388 )
...
* Update AI Bedrock region - Added mumbai region
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
* Update amazonbedrock.go
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
---------
Signed-off-by: Sakshi Singh <66963254+sakshirajput02@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-03-06 12:22:57 +00:00
renovate[bot]
2a6f48500c
chore(deps): update codecov/codecov-action digest to 0565863 ( #1387 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-06 12:19:13 +00:00
renovate[bot]
f2e3b9a8a7
chore(deps): update docker/build-push-action digest to 471d1dc ( #1358 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-04 07:55:27 +00:00
Alex Jones
d1b2227ff9
feat!: Removal of Trivy ( #1386 )
...
* feat: removal of trivy integration
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: removal of trivy integration
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: removed trivy
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-03-04 07:33:14 +00:00
Alex Jones
1f953585c9
chore: remediating security issue ( #1381 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-02-24 19:45:06 +00:00
Kay Yan
9dcb21e160
fix: [Bug] Filter PolicyReport ignores namespace flag ( #1355 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
2025-02-24 19:40:34 +00:00
github-actions[bot]
d956f32e1e
chore(main): release 0.3.50 ( #1379 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-24 11:05:33 +00:00
Alex Jones
7dadea2570
feat: rework to how bedrock data models are structured and accessed ( #1369 )
...
* feat: rework to how bedrock data models are structured and accessed
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: rework to how bedrock data models are structured and accessed
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2025-02-24 11:03:19 +00:00
github-actions[bot]
3b85f09348
chore(main): release 0.3.49 ( #1345 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-02-20 12:02:20 +00:00
Justin Santa Barbara
06b8f78150
chore: fix typo in "completion" ( #1362 )
...
Signed-off-by: justinsb <justinsb@google.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-02-20 11:48:52 +00:00
Dirc
076ca2f148
docs: fix broken schema link in README.md ( #1373 )
...
Signed-off-by: Dirc <e.e.cornet@gmail.com >
2025-02-20 11:46:12 +00:00
renovate[bot]
fcc8563e4e
fix(deps): update k8s.io/utils digest to 24370be ( #1344 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-06 16:08:33 +00:00
renovate[bot]
5de4f7704a
fix(deps): update module golang.org/x/net to v0.33.0 [security] ( #1354 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-06 12:00:58 +00:00
Daniel Clark
83672fa768
fix: prevent npe by handling checking error in NewAnalysis call ( #1365 )
...
If there is an issue in creating the Analysis config when calling
analysis.NewAnalysis, then we want to check before assigning the context to a
potentially nil pointer.
Signed-off-by: Danny Clark <danielclark@google.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2025-01-31 14:26:35 +00:00
renovate[bot]
990d723909
chore(deps): update codecov/codecov-action digest to 13ce06b ( #1342 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-25 17:06:09 +00:00
renovate[bot]
c506a4b441
chore(deps): update actions/upload-artifact digest to 65c4c4a ( #1350 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-18 20:48:55 +00:00
renovate[bot]
2918556793
chore(deps): update docker/setup-buildx-action digest to 6524bf6 ( #1349 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-18 20:21:46 +00:00
renovate[bot]
19abbef9a3
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1336 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-13 07:35:23 +00:00
renovate[bot]
939e0672aa
chore(deps): update actions/setup-go digest to 3041bf5 ( #1347 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-12 17:24:09 +00:00
renovate[bot]
8cd3b2985e
fix(deps): update all non-major dependencies ( #1335 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-10 09:41:16 +00:00
github-actions[bot]
1827c43696
chore(main): release 0.3.48 ( #1341 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-12-04 14:07:11 +00:00
Alex Jones
1363219b1b
feat: fixed missing cache params ( #1340 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-12-04 10:30:57 +00:00
github-actions[bot]
c3f448693d
chore(main): release 0.3.47 ( #1320 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-12-02 16:45:20 +00:00
renovate[bot]
5514ebb53b
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1326 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-02 13:45:39 +00:00
renovate[bot]
c21ba86237
chore(deps): update docker/build-push-action digest to 48aba3b ( #1333 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-02 13:08:07 +00:00
Alex Jones
d6d80ee860
feat: adds interplex as a caching provider ( #1328 )
...
* feat: adds interplex as a caching provider
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: refactored cache input to lower
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: refactored cache input to lower
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-12-02 12:58:08 +00:00
renovate[bot]
a841568a9c
chore(deps): update all non-major dependencies ( #1327 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-02 12:08:02 +00:00
renovate[bot]
4d7eb0f622
chore(deps): update codecov/codecov-action digest to 015f24e ( #1325 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-26 13:56:01 +00:00
ju187
a12aa07b1a
feat: add new AWS Bedrock model ids ( #1330 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-11-25 07:37:39 +00:00
100daysofdevops
ec5e42b8f4
fix: update OpenAI API key generation URL to reflect new platform link ( #1331 )
...
Updated the outdated URL 'https://beta.openai.com/account/api-keys ' to the current OpenAI API key generation page 'https://platform.openai.com/account/api-keys '.
This resolves the issue where users were directed to an incorrect URL when generating an OpenAI API key.
Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com >
2024-11-25 07:32:11 +00:00
renovate[bot]
69c67bd1d9
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1321 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-17 19:59:22 +00:00
renovate[bot]
b3f60b2d20
fix(deps): update all non-major dependencies ( #1323 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-17 16:41:15 +00:00
renovate[bot]
cb1e1ffede
chore(deps): update codecov/codecov-action action to v5 ( #1324 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-15 12:24:26 +00:00
renovate[bot]
f37d923918
chore(deps): update docker/build-push-action action to v6 ( #1294 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-12 20:36:32 +00:00
Samir Tahir
a50375c960
fix: add maxTokens to serve mode ( #1280 )
...
Signed-off-by: samir-tahir <samirtahir91@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-11-12 20:16:29 +00:00
Alex Jones
da266b3c82
feat: dump ( #1322 )
...
* feat: reverting the cncf runners
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: creating a dump file for debugging
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: ran the linter
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: improved the function readme
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added k8sgpt version info
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added k8sgpt version info
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: added additional command
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-12 12:04:01 +00:00
renovate[bot]
896a53be83
chore(deps): update rajatjindal/krew-release-bot action to v0.0.47 ( #1317 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-12 07:13:06 +00:00
renovate[bot]
2da057360b
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1303 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-11 06:09:39 +00:00
github-actions[bot]
69fd7c7696
chore(main): release 0.3.46 ( #1316 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-10 21:00:49 +00:00
Alex Jones
ad86e7aa39
feat: reverting the cncf runners ( #1319 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-10 20:54:16 +00:00
Alex Jones
1ae70e806e
feat: updated runners to enterprise ( #1318 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-10 20:26:43 +00:00
renovate[bot]
2ce8450e03
chore(deps): update actions/setup-go digest to 41dfa10 ( #1284 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-10 17:13:38 +00:00
renovate[bot]
b6b3d0c856
chore(deps): update softprops/action-gh-release action to v2 ( #1295 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-10 16:29:01 +00:00
Alex Jones
5f7d9de46a
feat: switching to higher spec runners ( #1312 )
...
* feat: switching to higher spec runners
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: switched to runner groups
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: switched to runner groups
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: switched to runner groups
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-10 16:06:06 +00:00
Alex Jones
7dcdfc83d2
feat: testupdate ( #1315 )
...
* feat: updated server test function
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: fixed server test
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated go.sum
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added free disk space to release job
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-10 15:33:50 +00:00
github-actions[bot]
44f4f7437f
chore(main): release 0.3.45 ( #1314 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-10 09:25:48 +00:00
Alex Jones
783cd1cfc6
feat: free disk ( #1313 )
...
* chore: updated go.sum
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added free disk space to release job
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* feat: added free disk space to release job
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-10 09:11:54 +00:00
github-actions[bot]
62ba6d84a4
chore(main): release 0.3.44 ( #1311 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-09 17:55:26 +00:00
Alex Jones
cc9b3ea657
feat: test revert runner on release job ( #1310 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-11-09 17:44:56 +00:00
github-actions[bot]
8ad288152f
chore(main): release 0.3.43 ( #1301 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-11-09 16:05:58 +00:00
renovate[bot]
004d9efc55
fix(deps): update all non-major dependencies ( #1307 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-09 15:10:05 +00:00
renovate[bot]
2f62c7b3e0
fix(deps): update k8s.io/utils digest to 6fe5fd8 ( #1302 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-07 17:24:45 +00:00
renovate[bot]
a6b19a81b0
fix(deps): update all non-major dependencies ( #1306 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-06 14:54:35 +00:00
renovate[bot]
32e8bc3253
chore(deps): update all non-major dependencies ( #1304 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-05 19:56:29 +00:00
Alex Jones
5f01cc685f
chore: updated to use CNCF runners ( #1305 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-11-05 16:48:01 +00:00
renovate[bot]
c67add30c6
chore(deps): update dependency ubuntu to v24 ( #1293 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-05 07:07:28 +00:00
renovate[bot]
2f759865b6
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #1296 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-04 12:52:27 +00:00
github-actions[bot]
9d68c47040
chore(main): release 0.3.42 ( #1258 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-04 07:38:22 +00:00
renovate[bot]
14e0f19b12
fix(deps): update all non-major dependencies ( #1291 )
...
* fix(deps): update all non-major dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* chore: fixed the topk type
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: AlexsJones <alexsimonjones@gmail.com >
2024-11-04 07:12:57 +00:00
renovate[bot]
c1a38c2b35
chore(deps): update codecov/codecov-action action to v4 ( #1292 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 18:42:55 +00:00
Alex Jones
458fcfe8d3
chore: renovate.json ( #1290 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-10-31 16:56:49 +00:00
renovate[bot]
173e4dc5ac
chore(deps): update anchore/sbom-action action to v0.17.6 ( #1285 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 16:14:53 +00:00
renovate[bot]
7a3fb3cf67
fix(deps): update module github.com/cohere-ai/cohere-go/v2 to v2.12.0 ( #1276 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 15:16:05 +00:00
renovate[bot]
0cfecbdd87
chore(deps): update actions/checkout digest to 11bd719 ( #1283 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 09:05:10 +00:00
renovate[bot]
161bc11294
chore(deps): update docker/setup-buildx-action digest to c47758b ( #1213 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 08:42:10 +00:00
renovate[bot]
ad349ae263
fix(deps): update module github.com/google/generative-ai-go to v0.18.0 ( #1278 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 08:34:03 +00:00
renovate[bot]
911d578bf0
chore(deps): update actions/upload-artifact digest to b4b15b8 ( #1272 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-31 07:42:42 +00:00
Matthis
3eec9bbb05
feat: add stats option to analyze command for performance insights ( #1237 )
...
* feat: add stats option to analyze command for performance insights
Introduced a new feature to the analyze command that enables users to print detailed performance statistics of each analyzer. This enhancement aids in debugging and understanding the time taken by various components during analysis, providing valuable insights for performance optimization.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: enhance analysis command with statistics option
Refactored the analysis command to support an enhanced statistics option, enabling users to opt-in for detailed performance metrics of the analysis process. This change introduces a more flexible approach to handling statistics, allowing for a clearer separation between the analysis output and performance metrics, thereby improving the usability and insights provided to the user.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-10-30 13:58:18 +00:00
Milap Jhumkhawala
87565a0bcc
fix: [Bug] Make lint command is not working ( #1282 )
...
* fix: [Bug] Make lint command is not working
Signed-off-by: Milap Jhumkhawala <milap.jhumkhawala@gmail.com >
* forgot to sign commit
Signed-off-by: Milap Jhumkhawala <milap.jhumkhawala@gmail.com >
---------
Signed-off-by: Milap Jhumkhawala <milap.jhumkhawala@gmail.com >
2024-10-30 10:49:44 +00:00
renovate[bot]
c128bf7942
chore(deps): update anchore/sbom-action action to v0.17.4 ( #1273 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-16 15:41:54 +01:00
renovate[bot]
c9b11b6eee
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.4.1 ( #1275 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-15 07:07:41 +01:00
renovate[bot]
9f39abf89e
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go to v1.35.1-20240920204244-7a91c8620515.1 ( #1274 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-14 12:55:19 +01:00
renovate[bot]
98237b6408
fix(deps): update module github.com/adrg/xdg to v0.5.0 ( #1262 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-14 07:58:02 +01:00
renovate[bot]
4143e9fd52
fix(deps): update module cloud.google.com/go/storage to v1.44.0 ( #1265 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-14 06:48:07 +01:00
renovate[bot]
72eb8159fb
chore(deps): update actions/checkout digest to eef6144 ( #1270 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-14 06:38:32 +01:00
renovate[bot]
36135857ac
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/azidentity to v1.8.0 ( #1264 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-11 08:02:01 +01:00
renovate[bot]
9c1927b497
chore(deps): update module github.com/docker/docker to v27.3.1+incompatible ( #1225 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-04 07:54:27 +01:00
renovate[bot]
0148a5b354
fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5 ( #1263 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-03 19:19:28 +01:00
renovate[bot]
037e745c6f
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.22.0 ( #1034 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-03 19:05:04 +01:00
Naveen Thangaraj
d8fad956f4
feat: error from events for STS analyzer ( #1256 )
...
* error from events for sts analyzer
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Signedoff this commit
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
---------
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-10-03 18:33:50 +01:00
renovate[bot]
7785dd12a0
fix(deps): update k8s.io/utils digest to 49e7df5 ( #1259 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-29 20:55:29 +01:00
renovate[bot]
04582d8516
chore(deps): update anchore/sbom-action action to v0.17.2 ( #1248 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-27 07:45:54 +01:00
Yanwei Li
da0764d951
fix: add providerId to serve mode ( #1260 )
...
Signed-off-by: yanweili <yanweili@ibm.com >
Co-authored-by: yanweili <yanweili@ibm.com >
2024-09-27 07:32:58 +01:00
renovate[bot]
b62b7dbe3c
chore(deps): update golang docker tag to v1.23 ( #1254 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-25 09:13:45 +01:00
Guangya Liu
5ff6dc9be5
fix: rename watsonxai to ibmwatsonxai ( #1234 )
...
Signed-off-by: Guangya Liu <gyliu@ibm.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-09-24 21:58:01 +01:00
github-actions[bot]
f071b32aa8
chore(main): release 0.3.41 ( #1217 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-09-23 06:33:03 +01:00
Alex Jones
53465d5c83
feat: adding a query mode for the schednex scheduler ( #1257 )
...
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-09-22 19:29:29 +01:00
renovate[bot]
1dfd139731
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.13 ( #1251 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-19 12:08:13 +01:00
Alex Jones
d9c81494b7
Update README.md ( #1253 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-09-19 09:04:52 +01:00
renovate[bot]
e0e86ea60f
chore(deps): update actions/upload-artifact digest to 5076954 ( #1239 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-19 08:41:46 +01:00
renovate[bot]
8405778cb2
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.22.0-20240807134501-ea98c104104d.1 ( #1186 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-18 20:18:03 +01:00
awsyshah
4f3ecf0083
feat: added support for A21 and Amazon Titan models via bedrock api ( #1101 )
...
* feat: added support for A21 and Amazon Titan models via bedrock api
Signed-off-by: Yomesh Shah <yomesh@gmail.com >
* fix: response type for diffrent models and use of constant for top_P
Signed-off-by: Yomesh Shah <yomesh@gmail.com >
* fix: constant for top_P as int vs string
Signed-off-by: Yomesh Shah <yomesh@gmail.com >
* feat: moved topP and maxTokens to config rather than being constants in the code
Signed-off-by: Yomesh Shah <yomesh@gmail.com >
---------
Signed-off-by: Yomesh Shah <yomesh@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-09-17 16:24:21 +01:00
renovate[bot]
d30563d8cd
fix(deps): update k8s.io/utils digest to 702e33f ( #1246 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-17 15:01:52 +01:00
Aris Boutselis
e02c0ddd2d
fix: typo ( #1244 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-09-17 08:39:39 +01:00
renovate[bot]
025a069ff1
fix(deps): update module github.com/schollz/progressbar/v3 to v3.15.0 ( #1227 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-16 11:43:11 +01:00
renovate[bot]
453d5c37dd
chore(deps): update dependency go to v1.23.1 ( #1176 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-16 07:09:27 +01:00
Dominik Augustin
be4ca86af0
fix: helm chart security context rendering if empty ( #1235 )
...
Signed-off-by: Dominik Augustin <botchk@users.noreply.github.com >
Co-authored-by: Dominik Augustin <botchk@users.noreply.github.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-09-09 07:58:05 +01:00
renovate[bot]
477ef155d3
chore(deps): update docker/login-action digest to 9780b0c ( #1212 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-02 07:43:20 +01:00
michael12312
8edb053b3e
fix: issue-1168, remove duplicate CVE ( #1230 )
2024-08-27 07:21:38 +02:00
Guangya Liu
644581f495
fix: disable adding multiple openai provider ( #1191 )
...
Signed-off-by: Guangya Liu <gyliu@ibm.com >
Co-authored-by: Matthis <matthish29@gmail.com >
2024-08-20 15:52:44 +02:00
Guangya Liu
d702209941
fix: enabled auth add support watsonx backend ( #1190 )
...
Signed-off-by: Guangya Liu <gyliu@ibm.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Matthis <matthish29@gmail.com >
2024-08-20 09:35:45 +02:00
renovate[bot]
7019d0b62f
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.12 ( #1226 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-15 18:38:16 +01:00
renovate[bot]
f57381961f
chore(deps): update anchore/sbom-action action to v0.17.1 ( #1224 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-15 18:22:11 +01:00
Alex Jones
02fa109429
feat: refactoring to the new schema ( #1219 )
...
* feat: refactoring to the new schema
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated readme with grpc commands
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
---------
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
Co-authored-by: Matthis <matthish29@gmail.com >
2024-08-15 14:42:55 +01:00
renovate[bot]
3148b5c61d
fix(deps): update module github.com/docker/docker to v27.1.1+incompatible [security] ( #1220 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-13 13:17:40 +01:00
Xuetao Song
a4e44d59e3
feat: add event failure handling in service analyzer ( #1132 )
...
Signed-off-by: magicsong <songxuetao@bytedance.com >
Co-authored-by: magicsong <songxuetao@bytedance.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-08-13 06:36:15 +01:00
renovate[bot]
24ebeaf3a7
chore(deps): update actions/checkout digest to 692973e ( #1129 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-13 06:34:46 +01:00
Matthis
db26d24ac6
feat: add custom-analyzer cmd ( #1207 )
...
* feat: add custom analyzer management capability
Introduced the ability to manage custom analyzers in the K8sGPT application, enabling users to add, deploy, and configure custom analyzers from various sources. This enhancement supports extending the application's analytical capabilities by integrating external analysis tools, thus offering more flexibility and customization options to meet specific user needs.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: enhance custom analyzer management with removal functionality
Introduced the ability to remove custom analyzers, streamlining the management process and ensuring flexibility in custom analyzer configuration. This enhancement addresses the need for dynamic customization and maintenance of analyzer setups, facilitating easier updates and modifications to the analysis environment.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: add list command to customAnalyzer for displaying configured analyzers
Implemented a new list command within the customAnalyzer module to enable users to view all configured custom analyzers. This enhancement aims to improve usability by providing a straightforward method for users to inspect their custom analyzer configurations directly from the command line.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: add support for listing, adding, and removing custom analyzers
This update introduces commands to manage custom analyzers in the k8sgpt tool, enhancing flexibility and control over analyzer configurations without the need for direct installation or docker dependency.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: support private docker image authentication for custom analyzers
Added authentication support for pulling private Docker images when adding custom analyzers, enhancing security and access control.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: remove Docker custom analyzer installation
Removed the installation and deployment functionality for custom analyzers, streamlining the process of adding analyzers. This change focuses on simplifying the configuration by eliminating the need for specifying installation types, package URLs, and authentication details for Docker images. The goal is to enhance user experience by making the addition of custom analyzers more straightforward and less error-prone.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* fix: remove unused packageUrl
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: update add command description to reflect broader functionality
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: Add name validation for custom analyzer creation
To ensure the integrity and consistency of analyzer names, we introduced a validation step that checks the format of the name against a predefined regex pattern. This change aims to prevent the creation of analyzers with invalid names, enhancing the system's reliability and usability.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: refactor customAnalyzer package for consistent naming
Refactored the customAnalyzer package and its references to use consistent snake_case naming for improved code readability and alignment with Go naming conventions.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2024-08-10 22:05:11 +01:00
Bo Wong
b2b86826e5
docs: update "CLI Installation" section in README.md ( #1126 ) ( #1127 )
...
Signed-off-by: Bo Wang <wangbob@uniontech.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-08-08 10:34:22 +01:00
R0CKSTAR
8e37369e5c
fix: set logger for controller-runtime ( #1211 )
...
Signed-off-by: Xiaodong Ye <yeahdongcn@gmail.com >
2024-08-08 07:10:49 +01:00
renovate[bot]
2a8a9b4867
chore(deps): update actions/upload-artifact digest to 834a144 ( #1214 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-07 09:49:06 +01:00
Kay Yan
b7e5394caa
fix: segmentation violation during serve ( #1215 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
2024-08-07 09:47:09 +01:00
github-actions[bot]
ad117a530f
chore(main): release 0.3.40 ( #1202 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-08-04 21:30:21 +01:00
Alex Jones
16d57e5a55
feat: initial custom analysis server mode ( #1205 )
...
* chore: initial custom analysis
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: saving the missing stuff
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: removed redundant error handling
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: missing piece of the custom analysis response
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: AlexsJones <alexsimonjones@gmail.com >
2024-08-04 21:03:34 +01:00
renovate[bot]
3547c4808a
fix(deps): update module github.com/schollz/progressbar/v3 to v3.14.5 ( #1145 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-08-02 15:01:47 +01:00
renovate[bot]
407c855e14
chore(deps): update anchore/sbom-action action to v0.17.0 ( #1197 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-02 14:42:24 +01:00
Yanwei Li
d43fd878ba
fix: add default maxToken value of watsonxai backend ( #1209 )
...
Signed-off-by: yanweili <yanweili@ibm.com >
Co-authored-by: yanweili <yanweili@ibm.com >
2024-08-02 05:15:28 -04:00
Naveen Thangaraj
a068310731
feat: getting the error from status field for HPA analyzer ( #1164 )
...
* getting the error from status field for hpa analyzer
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Signed-off
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Updated the hpaAnalyzer_test.go
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Updated hpa_test.go
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Updated the hpa
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Updated the Conflicts
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Resolved all the conflicts
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
* Updated the test case
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
---------
Signed-off-by: naveenthangaraj03 <tnaveen3402@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Matthis <matthish29@gmail.com >
2024-07-22 09:25:38 +02:00
renovate[bot]
8949f5bac3
fix(deps): update module cloud.google.com/go/storage to v1.43.0 ( #1198 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-21 18:20:27 +01:00
Matthis
f1b7b37fb8
feat: custom analysis paralelism ( #1203 )
2024-07-20 07:58:26 +02:00
Guangya Liu
391a3cd5ad
fix: auth update throw out exception ( #1193 )
...
Signed-off-by: Guangya Liu <gyliu@ibm.com >
Co-authored-by: Matthis <matthish29@gmail.com >
2024-07-18 16:49:51 +01:00
github-actions[bot]
3c08118104
chore(main): release 0.3.39 ( #1181 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-18 15:03:49 +01:00
JuHyung Son
eb3b81f176
feat: add label selector ( #1201 )
...
* feat: fix the custom-analysis printing (#1195 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* feat: add label selector
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* feat: add label selector on analyzers
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* chore(deps): pin goreleaser/goreleaser-action action to 286f3b1 (#1171 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.4.0-20240715142657-3785f0a44aae.2 (#1196 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* chore(deps): update actions/upload-artifact digest to 0b2256b (#1175 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* chore: update proto pkg version
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* chore: fix typo
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* feat: add label string to LabelSelector util func
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* feat: add test using 2 label selector
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: JuHyung Son <sonju0427@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-18 14:31:41 +01:00
Ronald Petty
5176759bd0
feat: initial kyverno support ( #1200 )
...
* refresh fork
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* let out, wasn't sure it was needed, but seems it might be in CI pipeline
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): update docker/setup-buildx-action digest to 4fd8129 (#1173 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.20.0-20240406062209-1cc152efbf5c.1 (#1147 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): update anchore/sbom-action action to v0.16.0 (#1146 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module google.golang.org/grpc to v1.64.1 [security] (#1178 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module github.com/mittwald/go-helm-client to v0.12.10 (#1177 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* feat: add custom http headers to openai related api backends (#1174 )
* feat: add custom http headers to openai related api backends
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* ci: add custom headers test
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* add error handling
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore(deps): update docker/setup-buildx-action digest to 4fd8129 (#1173 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.20.0-20240406062209-1cc152efbf5c.1 (#1147 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore(deps): update anchore/sbom-action action to v0.16.0 (#1146 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* Update README.md
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
---------
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(main): release 0.3.38 (#1165 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): update anchore/sbom-action action to v0.16.1 (#1179 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): update actions/setup-go digest to 0a12ed9 (#1182 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* ci: release to krew index as kubectl-gpt (#1100 )
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update k8s.io/utils digest to 18e509b (#1183 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module github.com/prometheus/prometheus to v0.53.1 (#1035 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module github.com/ibm/watsonx-go to v1.0.1 (#1187 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* feat: skip k3s node type EtcdIsVoter (#1167 )
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* feat: fix the custom-analysis printing (#1195 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): pin goreleaser/goreleaser-action action to 286f3b1 (#1171 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.4.0-20240715142657-3785f0a44aae.2 (#1196 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* chore(deps): update actions/upload-artifact digest to 0b2256b (#1175 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* Update pkg/integration/kyverno/kyverno.go
lgtm
Co-authored-by: Alex Jones <alex@k8sgpt.ai >
Signed-off-by: Ronald Petty <ronald.petty@minimumdistance.com >
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
* remove unused function
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
---------
Signed-off-by: Ronald Petty <ronald.petty@rx-m.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ronald Petty <ronald.petty@minimumdistance.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Miguel Varela Ramos <miguel@cohere.ai >
Co-authored-by: Kay Yan <kay.yan@daocloud.io >
Co-authored-by: Alex Jones <alex@k8sgpt.ai >
2024-07-18 07:57:11 +01:00
renovate[bot]
4b13727ef5
chore(deps): update actions/upload-artifact digest to 0b2256b ( #1175 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-15 19:09:43 +01:00
renovate[bot]
f9edbf34f3
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.4.0-20240715142657-3785f0a44aae.2 ( #1196 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-15 18:50:16 +01:00
renovate[bot]
1a00aafbb2
chore(deps): pin goreleaser/goreleaser-action action to 286f3b1 ( #1171 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-15 14:12:06 +01:00
Alex Jones
b6dd2a1181
feat: fix the custom-analysis printing ( #1195 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-07-15 12:02:16 +01:00
Kay Yan
4366ad97b8
feat: skip k3s node type EtcdIsVoter ( #1167 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-07-12 16:17:45 +01:00
renovate[bot]
34b6de3404
fix(deps): update module github.com/ibm/watsonx-go to v1.0.1 ( #1187 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 17:12:43 +01:00
renovate[bot]
de9ef85878
fix(deps): update module github.com/prometheus/prometheus to v0.53.1 ( #1035 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 12:33:10 +01:00
renovate[bot]
0b906511d5
fix(deps): update k8s.io/utils digest to 18e509b ( #1183 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 11:05:15 +01:00
Miguel Varela Ramos
4d76e9c5ae
ci: release to krew index as kubectl-gpt ( #1100 )
...
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-07-11 09:37:46 +01:00
renovate[bot]
593139cffb
chore(deps): update actions/setup-go digest to 0a12ed9 ( #1182 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 09:12:37 +01:00
renovate[bot]
3e9340925c
chore(deps): update anchore/sbom-action action to v0.16.1 ( #1179 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-11 06:07:49 +01:00
github-actions[bot]
f6ce47c3a9
chore(main): release 0.3.38 ( #1165 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-10 10:15:14 +01:00
Aris Boutselis
02e754ed59
feat: add custom http headers to openai related api backends ( #1174 )
...
* feat: add custom http headers to openai related api backends
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* ci: add custom headers test
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* add error handling
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore(deps): update docker/setup-buildx-action digest to 4fd8129 (#1173 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.20.0-20240406062209-1cc152efbf5c.1 (#1147 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore(deps): update anchore/sbom-action action to v0.16.0 (#1146 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* Update README.md
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
---------
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-07-10 09:59:08 +01:00
renovate[bot]
fef853966f
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.10 ( #1177 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-10 09:54:48 +01:00
renovate[bot]
dd20dbc982
fix(deps): update module google.golang.org/grpc to v1.64.1 [security] ( #1178 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-10 09:48:40 +01:00
renovate[bot]
dd66355797
chore(deps): update anchore/sbom-action action to v0.16.0 ( #1146 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-07-08 07:41:28 +01:00
renovate[bot]
314f25ac8b
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.20.0-20240406062209-1cc152efbf5c.1 ( #1147 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-08 07:38:28 +01:00
renovate[bot]
d4abb33b3c
chore(deps): update docker/setup-buildx-action digest to 4fd8129 ( #1173 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-08 07:27:44 +01:00
renovate[bot]
27ac60aed2
chore(deps): update amannn/action-semantic-pull-request action to v5.5.3 ( #1172 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-04 11:03:15 +01:00
renovate[bot]
0c0216096e
chore(deps): update docker/build-push-action digest to ca052bb ( #1140 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-03 21:23:15 +01:00
Kay Yan
b35dbd9b09
feat: add Ollama backend ( #1065 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
2024-07-03 21:16:06 +01:00
renovate[bot]
a075792119
fix(deps): update module github.com/spf13/cobra to v1.8.1 ( #1161 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-01 10:31:27 +01:00
Jin Song Wang
ce63821beb
feat: add watsonx ai provider ( #1163 )
...
Signed-off-by: JINSONG WANG <jswang@ibm.com >
2024-07-01 10:20:44 +01:00
Rui Chen
ab534d184f
chore: update brew installation note ( #1155 )
...
Signed-off-by: Rui Chen <rui@chenrui.dev >
2024-06-20 17:43:47 +01:00
github-actions[bot]
3f80bbaa1b
chore(main): release 0.3.37 ( #1159 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-17 20:47:21 +01:00
Alex Jones
9bace02a67
chore: updated the goreleaser action ( #1160 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-17 20:40:28 +01:00
renovate[bot]
7b1b63322e
chore(deps): update reviewdog/action-golangci-lint digest to 7708105 ( #1157 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-17 20:36:35 +01:00
github-actions[bot]
f963e4e0f4
chore(main): release 0.3.36 ( #1152 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-17 20:25:59 +01:00
Alex Jones
2382de4c6f
chore: fixed the goreleaser file ( #1158 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-17 20:09:24 +01:00
renovate[bot]
55ae7c3298
chore(deps): update goreleaser/goreleaser-action digest to 5742e2a ( #1153 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-17 19:59:44 +01:00
Rui Chen
aeae2ba765
chore: update goreleaser ldflags ( #1154 )
...
Signed-off-by: Rui Chen <rui@chenrui.dev >
2024-06-17 19:59:20 +01:00
renovate[bot]
602d111d85
chore(deps): update docker/login-action digest to 0d4c9c5 ( #1141 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-14 10:37:03 +01:00
github-actions[bot]
c3f164eb2b
chore(main): release 0.3.35 ( #1150 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-14 10:19:09 +01:00
ChristianBieri1995
92dd1bd8b0
feat: add spec.template.spec.securityContext ( #1109 )
...
* feat: add spec.template.spec.securityContext
Signed-off-by: ChristianBieri1995 <122007149+ChristianBieri1995@users.noreply.github.com >
* make securityContext adjustable
Signed-off-by: ChristianBieri1995 <122007149+ChristianBieri1995@users.noreply.github.com >
* adjust values.yaml accordingly to enable adjustable securityContext
Signed-off-by: ChristianBieri1995 <122007149+ChristianBieri1995@users.noreply.github.com >
* Remove default values from securityContext
Signed-off-by: ChristianBieri1995 <122007149+ChristianBieri1995@users.noreply.github.com >
---------
Signed-off-by: ChristianBieri1995 <122007149+ChristianBieri1995@users.noreply.github.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-14 09:05:24 +01:00
JuHyung Son
4867d39c66
feat: support openai organization Id ( #1133 )
...
* feat: add organization flag
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* feat: add orgId on openai backend
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
---------
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-14 08:39:56 +01:00
Alex Jones
c834c09996
chore: updated goreleaser config ( #1149 )
...
Signed-off-by: Alex Jones <axjns@amazon.com >
Co-authored-by: Alex Jones <axjns@amazon.com >
2024-06-14 08:37:46 +01:00
github-actions[bot]
038e52e044
chore(main): release 0.3.34 ( #1144 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-14 08:30:27 +01:00
Alex Jones
f9d734ee53
Revert "chore(deps): update goreleaser/goreleaser-action digest to 5742e2a (#…" ( #1148 )
...
This reverts commit c101e8a3ea .
2024-06-14 08:27:40 +01:00
renovate[bot]
c101e8a3ea
chore(deps): update goreleaser/goreleaser-action digest to 5742e2a ( #1142 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-13 10:33:11 +01:00
renovate[bot]
63b63f7664
chore(deps): update google-github-actions/release-please-action action to v4.1.1 ( #1143 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-13 10:27:24 +01:00
github-actions[bot]
0fe984966a
chore(main): release 0.3.33 ( #1128 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-13 10:02:26 +01:00
renovate[bot]
3a893184af
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/azidentity to v1.6.0 [security] ( #1138 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-13 09:44:24 +01:00
Kay Yan
6652fbe7cb
feat: bump golang version to 1.22 ( #1117 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-13 09:33:19 +01:00
Alex Jones
728555c0ef
fix: advisory k8sgpt ghsa 85rg 8m6h 825p ( #1139 )
...
* chore: updated helmclient and helmv3
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixing tests
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-06-13 09:30:09 +01:00
renovate[bot]
bdd470f9ca
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.21 ( #1106 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-12 18:52:04 +01:00
Ronald Petty
fad00eac49
fix(deps): typo in prometheus.go ( #1137 )
...
fix(deps): typo in prometheus.go
Signed-off-by: Ronald Petty <ronald.petty@gmail.com >
2024-06-12 18:34:38 +01:00
renovate[bot]
3452c0def6
chore(deps): update actions/setup-go digest to cdcb360 ( #1096 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-04 12:59:53 +01:00
github-actions[bot]
ffd017fbd7
chore(main): release 0.3.32 ( #1119 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-20 09:29:10 +01:00
Rui Chen
e261c09889
fix: remove shorthand flag for topp option in add command ( #1115 )
...
Signed-off-by: Rui Chen <rui@chenrui.dev >
2024-05-20 09:06:35 +01:00
github-actions[bot]
cc890dfa46
chore(main): release 0.3.31 ( #1077 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-05-16 16:23:41 +01:00
Anders Swanson
047afd46d6
feat: oci genai ( #1102 )
...
Signed-off-by: Anders Swanson <anders.swanson@oracle.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-05-16 15:44:41 +01:00
Vaibhav Malik
eda52312ae
feat: implement Top-K sampling for improved user control ( #1110 )
...
This commit adds Top-K sampling, a feature that allows users to control
the randomness of the generated text by specifying the number of most
probable next words considered by the model. This enhances user control
and potentially improves the quality of the generated outputs.
Fixes: https://github.com/k8sgpt-ai/k8sgpt/issues/1105
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-05-16 15:41:07 +01:00
JuHyung Son
882c6f5225
feat: support AWS_PROFILE ( #1114 )
...
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
2024-05-16 15:36:33 +01:00
renovate[bot]
fe53907c44
fix(deps): update module golang.org/x/net to v0.25.0 ( #1092 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 07:49:49 +01:00
Vaibhav Malik
63f7fcfef7
test: added tests for the pkg/integration package ( #904 )
...
This commit adds new tests for the `pkg/integration` package. As a
result, the code the code coverage of the package has increased from 0%
to 100%
This also includes a minor adjustment in the error statements of the
`Activate` and `Deactive` functions to ensure better understanding of
the cause of the error.
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-05-09 07:18:59 +01:00
Vaibhav Malik
2c7c74472c
test: added tests for the log analyzer ( #1010 )
...
* Added new tests for `LogAnalyzer` defined in the `pkg/analyzer`
package. Increased the code coverage of the `log.go` file to >90%
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-05-09 07:18:22 +01:00
renovate[bot]
3c4823127c
fix(deps): update module github.com/aws/aws-sdk-go to v1.52.3 ( #1094 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-07 12:18:15 +01:00
Vaibhav Malik
c3a884f0c4
test: added missing tests for pkg/analysis package ( #908 )
...
This commit bumps the code coverage of the `pkg/analysis` package to
60.8%
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: JuHyung Son <sonju0427@gmail.com >
2024-05-05 17:24:26 +01:00
renovate[bot]
e74fc0838f
fix(deps): update module github.com/sashabaranov/go-openai to v1.23.0 ( #1091 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 19:37:34 +01:00
renovate[bot]
f30c9f5554
fix(deps): update module github.com/google/generative-ai-go to v0.11.0 ( #1089 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 14:30:22 +01:00
renovate[bot]
36ccc62846
fix(deps): update module github.com/cohere-ai/cohere-go/v2 to v2.7.3 ( #1087 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 14:23:48 +01:00
renovate[bot]
a809a455f5
chore(deps): update amannn/action-semantic-pull-request action to v5.5.2 ( #1088 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 14:18:07 +01:00
renovate[bot]
12fa5aef4d
chore(deps): update anchore/sbom-action action to v0.15.11 ( #1082 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 14:10:59 +01:00
renovate[bot]
75c2addf66
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.32 ( #1083 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 14:05:39 +01:00
renovate[bot]
9b797d7e8b
chore(deps): update actions/upload-artifact digest to 6546280 ( #1079 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 13:59:19 +01:00
renovate[bot]
820cd2e16c
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20240406062209-1cc152efbf5c.3 ( #1086 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 11:33:41 +01:00
renovate[bot]
43953ffa34
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.3.2 ( #1085 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-01 09:12:47 +01:00
renovate[bot]
bd695d0987
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/azidentity to v1.5.2 ( #1084 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-29 20:14:39 +01:00
renovate[bot]
b12c006c63
chore(deps): update docker/build-push-action digest to 2cdde99 ( #1032 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-29 20:01:10 +01:00
renovate[bot]
e0af76f3c9
chore(deps): pin codecov/codecov-action action to ab904c4 ( #1031 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-29 19:55:39 +01:00
renovate[bot]
e894e778e9
fix(deps): update k8s.io/utils digest to 0849a56 ( #1080 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-29 10:53:52 +01:00
JuHyung Son
5cfe3325cb
docs: add logAnalyzer in README.md ( #1081 )
...
Signed-off-by: JuHyung Son <sonju0427@gmail.com >
2024-04-28 09:08:43 +01:00
renovate[bot]
ea8183ce84
chore(deps): update actions/checkout digest to 0ad4b8f ( #1078 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-26 17:24:30 +01:00
renovate[bot]
24cff90a0c
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc-ecosystem/gateway/v2 to v2.19.1-20240406062209-1cc152efbf5c.1 ( #1070 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-26 14:44:25 +01:00
renovate[bot]
bf6f642c28
chore(deps): update google-github-actions/release-please-action action to v4.1.0 ( #1045 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-26 10:58:29 +01:00
github-actions[bot]
6279f358ca
chore(main): release 0.3.30 ( #1027 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-04-26 10:17:15 +01:00
Peter Pan
b2ab94375e
fix: invalid ParentObj in output ( #1068 )
...
* Fix invalid ParentObj in output
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
* fix UT as well for ParentObj changes
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
* remove meta.Name in false output
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
* fix UT as well
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
---------
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-04-26 07:26:06 +01:00
DragonAlex98
9a73d1923f
feat: add keda integration ( #1058 )
...
* refactor: move FetchLatestEvent inside util package
Signed-off-by: DragonAlex98 <a.antinori@reply.it >
* feat: add Keda integration and ScaledObject analyzer
Signed-off-by: DragonAlex98 <a.antinori@reply.it >
---------
Signed-off-by: DragonAlex98 <a.antinori@reply.it >
2024-04-25 11:41:01 +01:00
Christoph Enne
85a76a3be0
chore: update license file path to avoid conflicting installations ( #878 ) ( #1073 )
...
Signed-off-by: christoph <christoph.enne@glasskube.eu >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-04-20 21:12:49 +01:00
Peter Pan
aa276a5379
feat: add Resource Kind in output ( #1069 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-04-20 21:11:02 +01:00
Miguel Varela Ramos
eb7687a089
chore(deps): update cohere client implementation to v2 ( #1062 )
...
* chore(deps): update cohere client implementation to v2 and to use chat endpoint
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
* chore: remove renovate rule for cohere-go
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
* style: remove unused attribute
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
* fix: go mod
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
---------
Signed-off-by: Miguel Varela Ramos <miguel@cohere.ai >
Signed-off-by: Miguel Varela Ramos <miguelvramos92@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-04-20 21:10:17 +01:00
Guido Muscioni
c162cc22ee
fix: set topP from config ( #1053 )
...
* fix: set topP from config
Signed-off-by: “Guido <muscionig@gmail.com >
* style: correct format of openai ai provider
Signed-off-by: “Guido <muscionig@gmail.com >
* feat: set topP from the environment
Signed-off-by: “Guido <muscionig@gmail.com >
---------
Signed-off-by: “Guido <muscionig@gmail.com >
2024-04-19 16:38:52 +01:00
izturn
1ae4e75196
refactor: replace util.SliceContainsString with slices.Contains & make fmt ( #1041 )
...
* use std package's func instead
Signed-off-by: gang.liu <gang.liu@daocloud.io >
* refactor: replace util.SliceContainsString with slices.Contains & make fmt
Signed-off-by: gang.liu <gang.liu@daocloud.io >
---------
Signed-off-by: gang.liu <gang.liu@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-04-19 13:15:50 +01:00
renovate[bot]
693b23f1fc
fix(deps): update module golang.org/x/net to v0.23.0 [security] ( #1071 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-19 12:04:55 +01:00
Aris Boutselis
e6085d4191
feat: add minio support ( #1048 )
...
* feat: add minio support
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: add TLS skip for custom https minio endpoint
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: update cache with the new proto schema
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
---------
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-04-19 11:58:41 +01:00
renovate[bot]
3eaf776249
chore(deps): update docker/setup-buildx-action digest to d70bba7 ( #1066 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 13:55:03 +01:00
renovate[bot]
ccb692c1fd
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.21 ( #1056 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-16 07:55:03 +01:00
Kay Yan
9e0263778f
fix: remove show password in auth list ( #1061 )
...
Signed-off-by: Kay Yan <kay.yan@daocloud.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-04-16 07:20:20 +01:00
Vaibhav Malik
9dfcce842e
test: added missing tests for the Pod analyzer ( #1021 )
...
- Fixed a small bug where failures were being appended multiple times
for CrashLoopBackOff and ContainerCreating container status reasons.
- Added missing test cases to ensure proper testing of the Pod analyzer.
The addition of these missing test cases has increased the code
coverage of this analyzer to 98%.
- Added checks for init containers in a pod.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-04-13 21:08:33 +01:00
renovate[bot]
6df0169491
fix(deps): update module cloud.google.com/go/storage to v1.40.0 ( #1054 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-05 11:34:51 +01:00
renovate[bot]
007b4bb8ec
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.14 ( #1051 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-04 11:23:42 +01:00
renovate[bot]
6b38a56afb
fix(deps): update module github.com/google/generative-ai-go to v0.10.0 ( #1047 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-03 14:40:40 +01:00
renovate[bot]
19ae31b5dd
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.8 ( #1046 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-27 10:01:58 +00:00
renovate[bot]
6a46a26789
fix(deps): update module github.com/sashabaranov/go-openai to v1.20.4 ( #1039 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-27 09:48:52 +00:00
renovate[bot]
e05a902d90
chore(deps): update anchore/sbom-action action to v0.15.10 ( #1044 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-27 09:34:52 +00:00
renovate[bot]
a3896f4518
fix(deps): update module cloud.google.com/go/storage to v1.39.1 ( #1029 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-26 20:26:15 +00:00
Vaibhav Malik
4262c9292c
test: removed pkg/kubernetes/testdata ( #1018 )
...
The `testdata` was no longer being used. Hence, removed it.
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-26 13:48:28 +00:00
renovate[bot]
94cdce44b4
fix(deps): update k8s.io/utils digest to 4693a02 ( #1037 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-25 13:16:40 +00:00
renovate[bot]
10c00ba9fe
chore(deps): update docker/setup-buildx-action digest to 2b51285 ( #1036 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-25 13:09:40 +00:00
renovate[bot]
c872e495ad
chore(deps): update docker/login-action digest to e92390c ( #1033 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-25 13:04:55 +00:00
Aris Boutselis
bd2e06bae7
chore: update renovate config and bundle deps in groups ( #1026 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-03-24 20:57:43 +00:00
github-actions[bot]
5db4bc28a7
chore(main): release 0.3.29 ( #1024 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-22 10:26:55 +00:00
Alex Jones
8f8f5c6df7
chore: allows an environmental override of the default AWS region and… ( #1025 )
...
* chore: allows an environmental override of the default AWS region and using it for bedrock
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: missing provider region
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-22 10:19:11 +00:00
Vaibhav Malik
3c1c055ac7
test: added missing tests for the CronJob analyzer ( #1019 )
...
* test: added missing tests for the CronJob analyzer
- Fixed a small bug where pre-analysis was incorrectly appended to the
results every time at the end of the for loop. This caused the result
for a single cronjob failure to be appended multiple times in the
final results.
- Added missing test cases to ensure proper testing of the CronJob
analyzer. The addition of these missing test cases has increased the
code coverage of this analyzer to over 96%.
Partially Addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
* test: removed failure strings matching from tests
It is possible that the error or failure strings might change in the
future, causing the tests to fail. This commit addresses that issue by
removing the matching of failure text from various analyzer tests.
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
---------
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-21 18:13:32 +00:00
Vaibhav Malik
ebfbba98ca
test: added missing test case for events.go ( #1017 )
...
With the addition of the latest changes, the missing test case when an
event happens after the currently set latest event has been covered.
Partially Addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-21 11:42:12 +00:00
Vaibhav Malik
47463d4412
test: added missing tests for the Ingress analyzer ( #1020 )
...
- Added missing test cases to ensure proper testing of the Ingress
analyzer. The addition of these missing test cases has increased the
code coverage of this analyzer to over 97%.
Partially Addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-21 11:02:19 +00:00
Alex Jones
fe81d16f75
feat: codecov ( #1023 )
...
* chore: missing schedule on auto merge
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: adding codecoverage back in
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-20 11:07:33 +00:00
Vaibhav Malik
a1d0d0a180
test: added tests for the Node analyzer ( #1014 )
...
* Added new tests for the `Node` analyzer defined in the `pkg/analyzer`
package.
* The addition of these new tests has increased the code coverage of the
node.go file to over 96%.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-20 09:32:23 +00:00
Vaibhav Malik
f60467cd4d
test: added missing tests for the Netpool analyzer ( #1016 )
...
- Added a network policy allowing traffic to all pods. Resulting in
additional failures in the results.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-15 18:45:36 +00:00
Vaibhav Malik
20892b48d0
test: removed useless tests from pkg/kubernetes ( #1015 )
...
- This commit removes unnecessary tests defined in the pkg/kubernetes
package.
- The removed tests were found to be flaky and were causing a
significant increase in CI time without adding much value to
the codebase.
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-14 21:51:15 +00:00
github-actions[bot]
ea7f0a5b4e
chore(main): release 0.3.28 ( #964 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-14 10:15:49 +00:00
Vaibhav Malik
531f0bc46d
test: added tests for the Service analyzer ( #1011 )
...
* Added new tests for the `Service` analyzer defined in the
`pkg/analyzer` package.
* The addition of these new tests has increased the code coverage of the
service.go file to over 97%.
* Additionally addressed some flaky tests related to the `ReplicaSet`and
`PersisentVolumeClaim` analyzers.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-03-14 09:42:16 +00:00
Vaibhav Malik
28e19a9d4e
test: added tests for the pkg/kubernetes package ( #896 )
...
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-12 21:34:12 +00:00
Vaibhav Malik
3475e2de0c
test: fixed various flaky tests ( #1009 )
...
- Removed test cases which required access to `/root` from the
`pkg/util` package.
- Fixed flaky `PodDisruptionBudget` test.
- Fixed a typo in `PersistentVolumeClaim` test.
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-12 07:25:03 +00:00
Aris Boutselis
adf4f17085
chore: attempt to group renovate deps ( #1007 )
2024-03-11 17:48:18 +00:00
Mario
55ac0b2129
feat: add Google Vertex AI as provider to utilize gemini via GCP ( #984 )
...
* feat: add Google Vertex AI as provider to utilize gemini via GCP
Signed-off-by: Mario Fahlandt <mfahlandt@pixel-haufen.de >
* fix: adjust providerId description
Signed-off-by: Mario Fahlandt <mfahlandt@pixel-haufen.de >
---------
Signed-off-by: Mario Fahlandt <mfahlandt@pixel-haufen.de >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2024-03-11 07:33:29 +00:00
Vaibhav Malik
a0225d4f70
test: added tests for the PVC analyzer ( #1000 )
...
This commit introduces comprehensive tests for the
`PersistentVolumeClaim` analyzer defined in the `pkg/analyzer` package.
Adding these tests increases the code coverage of the `pvc.go` file to
>95%.
I also made minor modifications to the ReplicaSet test to ensure all
expectations were met.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-08 19:26:19 +00:00
renovate[bot]
b05b6a38ed
chore(deps): update anchore/sbom-action action to v0.15.9 ( #1004 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-08 11:21:34 +00:00
Vaibhav Malik
1340ead860
test: added tests for the PDB analyzer ( #1001 )
...
This commit introduces comprehensive tests for the `PodDisruptionBudget`
analyzer defined in the `pkg/analyzer` package.
Adding these tests increases the code coverage of the `pdb.go` file to
>96%.
Additionally, a potential crash in case of empty or nil PDB status
conditions has been addressed.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-08 11:09:14 +00:00
renovate[bot]
b58b7191af
chore(deps): update docker/build-push-action digest to af5a7ed ( #1003 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-08 11:08:46 +00:00
renovate[bot]
1491e67567
fix(deps): update module github.com/stretchr/testify to v1.9.0 ( #999 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-03-08 09:37:23 +00:00
renovate[bot]
4ec143ab77
chore(deps): update reviewdog/action-golangci-lint digest to 00311c2 ( #1002 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-08 09:36:58 +00:00
Vaibhav Malik
5199dadb2a
test: added tests for mutating webhook analyzer ( #995 )
...
This commit introduces comprehensive tests for the mutating webhook
analyzer defined in the `pkg/analyzer` package.
Adding these tests increases the code coverage of the
`mutating_webhook.go` file to almost 95%.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-08 08:18:20 +00:00
renovate[bot]
425f33bb2d
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.34 ( #974 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-08 08:12:15 +00:00
Vaibhav Malik
f5c3f18d87
test: added tests for the ReplicaSet analyzer ( #997 )
...
This commit introduces comprehensive tests for the ReplicaSet analyzer
defined in the `pkg/analyzer` package.
Adding these tests increases the code coverage of the `rs.go` file to
>95%.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-05 19:39:31 +00:00
renovate[bot]
d2754d320f
fix(deps): update module github.com/sashabaranov/go-openai to v1.20.2 ( #991 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-05 14:04:04 +00:00
renovate[bot]
85f18dde1f
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.3.1 ( #992 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-05 13:57:29 +00:00
Vaibhav Malik
16a4aaab81
test: added tests for validating webhook analyzer ( #996 )
...
This commit introduces comprehensive tests for the validating webhook
analyzer defined in the `pkg/analyzer` package.
Adding these tests increases the code coverage of the
`validating_webhook.go` file to almost 95%.
Partially addresses: https://github.com/k8sgpt-ai/k8sgpt/issues/889
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-03-05 13:36:55 +00:00
renovate[bot]
4065faef13
fix(deps): update module github.com/prometheus/client_golang to v1.19.0 ( #989 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 16:52:50 +00:00
renovate[bot]
f24bcd88b6
chore(deps): update docker/setup-buildx-action digest to 0d103c3 ( #988 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 16:40:38 +00:00
Tanuj Dwivedi
307710eddc
feat: add proxysettings for azureopenai and openai ( #987 )
...
Signed-off-by: tanujd11 <dwiveditanuj41@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-28 16:10:42 +00:00
Vaibhav Malik
aab8d77feb
fix: analyze command default backend bug ( #966 )
...
Now, the default value of the `backend` flag for the analyze command
will be an empty string. And the `NewAnalysis` function has been
modified to use the default backend set by the user if the backend flag
is not provided and the `defaultprovider` is set in the config file.
Otherwise, backend will be set to "openai".
Fixes: https://github.com/k8sgpt-ai/k8sgpt/issues/902
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: JuHyung Son <sonju0427@gmail.com >
2024-02-28 16:09:30 +00:00
renovate[bot]
334a86aaf4
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #980 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-27 19:50:30 +00:00
renovate[bot]
88a7907db4
fix(deps): update module github.com/sashabaranov/go-openai to v1.20.1 ( #986 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-27 19:39:10 +00:00
renovate[bot]
af3732ad06
fix(deps): update module github.com/schollz/progressbar/v3 to v3.14.2 ( #983 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-26 18:47:52 +00:00
Alex Jones
a81377f72d
feat: aws integration ( #967 )
...
* chore: updated deps
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: adding aws types
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: first cut
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: first pass at aws integration with EKS
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixed linting
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated wording based on PR
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: improved the kubeconfig
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-26 10:16:32 +00:00
renovate[bot]
6103c96c41
fix(deps): update module google.golang.org/api to v0.167.0 ( #973 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-25 17:34:36 +00:00
renovate[bot]
35f5185914
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #979 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-23 11:00:30 +00:00
renovate[bot]
97446aae07
fix(deps): update module google.golang.org/grpc to v1.62.0 ( #975 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-23 08:28:25 +00:00
renovate[bot]
e07822c10b
fix(deps): update module github.com/sashabaranov/go-openai to v1.20.0 ( #977 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-23 08:05:22 +00:00
renovate[bot]
f929e7feea
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #957 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-22 17:48:25 +00:00
Vaibhav Malik
6e640e6921
test: added unit tests for the pkg/util package ( #894 )
...
This commit adds new unit tests for the `pkg/util` package bumping the
code coverage to 84%
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-22 16:21:33 +00:00
lili-wan
98286a965e
fix: log analyzer failed with multiple containers in the pod ( #920 )
...
* Log analyzer failed with multiple containers in the pod #884
Signed-off-by: lwan3 <lili_wan@intuit.com >
* Merge conflicts from main
Signed-off-by: lwan3 <lili_wan@intuit.com >
---------
Signed-off-by: lwan3 <lili_wan@intuit.com >
Co-authored-by: lwan3 <lili_wan@intuit.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-21 12:33:44 +00:00
renovate[bot]
6ac815c10f
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.22 ( #971 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-21 12:27:49 +00:00
renovate[bot]
8f00218090
fix(deps): update module go.uber.org/zap to v1.27.0 ( #972 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-21 08:51:54 +00:00
renovate[bot]
00c91f05a6
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.21 ( #970 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-20 20:48:13 +00:00
renovate[bot]
6207c70c51
fix(deps): update module cloud.google.com/go/storage to v1.38.0 ( #950 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-19 21:14:38 +00:00
renovate[bot]
8b0b61e596
fix(deps): update module github.com/sashabaranov/go-openai to v1.19.4 ( #963 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-19 11:45:37 +00:00
renovate[bot]
248260e081
fix(deps): update module github.com/google/generative-ai-go to v0.8.0 ( #965 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-19 08:10:12 +00:00
Vaibhav Malik
f55f8370eb
fix: shorthand for the http flag in serve command ( #969 )
...
Removed the shorthand for the `http` flag in the serve command because
it was contradicting with the shorthand of the `help` command which is
automatically added on execution if the `help` flag is not already
defined.
Fixes: https://github.com/k8sgpt-ai/k8sgpt/issues/968
Signed-off-by: VaibhavMalik4187 <vaibhavmalik2018@gmail.com >
2024-02-19 07:48:16 +00:00
Johannes Kleinlercher
a3cd7e6385
fix: set result name and namespace to trivy vulnreport and configaudi… ( #869 )
...
* fix: set result name and namespace to trivy vulnreport and configauditreport
Signed-off-by: Johannes Kleinlercher <johannes.kleinlercher@suxess-it.com >
* fix: increase linter timeout
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
---------
Signed-off-by: Johannes Kleinlercher <johannes.kleinlercher@suxess-it.com >
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-18 15:47:19 +00:00
Sahil Badla
f2138c7101
feat: enable Rest api using grpc-gateway ( #834 )
...
* grpc-gateway changes
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: grpc-gateway impl
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: enable REST/http api support
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: enable rest/http support
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: enable rest/http support
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: enable rest/http support
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* chore: resolved mod
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: fix grpc-gateway codegen path
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: merge from master
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
* feat: flag to enable rest api
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
---------
Signed-off-by: Sahil Badla <sahil_badla@intuit.com >
Signed-off-by: Sahil Badla <146279034+sbadla1@users.noreply.github.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Sahil Badla <sahil_badla@intuit.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-17 15:38:15 +00:00
renovate[bot]
3f0356be66
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.20 ( #930 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-17 08:43:26 +00:00
renovate[bot]
cc99bd51f0
fix(deps): update module google.golang.org/api to v0.165.0 ( #959 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-16 14:07:23 +00:00
github-actions[bot]
729d14db4d
chore(main): release 0.3.27 ( #870 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-02-16 12:53:55 +00:00
renovate[bot]
fea2ed1fff
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.3.0 ( #952 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-15 12:48:17 +00:00
Alex Jones
c8c9dbfadc
feat: enables remote custom analyzers ( #906 )
...
* feat: enables remote custom analyzers
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixed test that was broken
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: hiding custom analysis behind a flag
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: resolved govet issue
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated deps
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-15 07:28:00 +00:00
renovate[bot]
070aa7fdd0
chore(deps): update actions/upload-artifact digest to 5d5d22a ( #925 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 19:35:47 +00:00
renovate[bot]
ce7c9551bc
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/azidentity to v1.5.1 ( #939 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-14 12:33:02 +00:00
renovate[bot]
d9fe7446af
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #956 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 11:01:22 +00:00
renovate[bot]
9c1f1b8804
fix(deps): update module google.golang.org/grpc to v1.61.1 ( #954 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 10:48:40 +00:00
renovate[bot]
37228d88e3
chore(deps): update golang docker tag to v1.22 ( #931 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 10:22:39 +00:00
renovate[bot]
29b482f597
fix(deps): update module google.golang.org/api to v0.164.0 ( #953 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-14 08:26:35 +00:00
Alex Jones
015bccfc2e
chore: updated deps ( #951 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-13 20:45:33 +00:00
Amit Amrutiya
3f0964ad38
fix: unused variable failure warning in webhooks file ( #916 )
...
Signed-off-by: amitamrutiya2210 <amitamrutiya2210@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-13 20:28:11 +00:00
renovate[bot]
3c8d9d42e5
fix(deps): update module github.com/google/generative-ai-go to v0.7.0 ( #940 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-13 19:59:37 +00:00
renovate[bot]
bfbb5c7e03
fix(deps): update module github.com/pterm/pterm to v0.12.79 ( #943 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-13 15:19:27 +00:00
renovate[bot]
28c4c57e45
fix(deps): update k8s.io/utils digest to e7106e6 ( #897 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-13 15:09:48 +00:00
renovate[bot]
4e57088a01
fix(deps): update module golang.org/x/term to v0.17.0 ( #941 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-09 22:10:45 +00:00
renovate[bot]
f2eb1ef533
fix(deps): update module github.com/sashabaranov/go-openai to v1.19.3 ( #937 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-09 12:41:58 +00:00
Alex Jones
bbf61f53d4
chore: grpc update ( #938 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-02-09 09:42:00 +00:00
renovate[bot]
3d2554b9cd
fix(deps): update module cloud.google.com/go/storage to v1.37.0 ( #934 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-09 09:25:55 +00:00
renovate[bot]
f61c3e228c
chore(deps): update anchore/sbom-action action to v0.15.8 ( #926 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-08 09:35:32 +01:00
renovate[bot]
c6019728ae
fix(deps): update module github.com/sashabaranov/go-openai to v1.19.2 ( #886 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-08 08:25:47 +00:00
renovate[bot]
e3eee6d956
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20240128172516-6bf6a55ff115.2 ( #899 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-07 18:43:30 +00:00
renovate[bot]
599be33f38
chore(deps): update reviewdog/action-golangci-lint digest to 8e1117c ( #915 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-07 15:44:45 +00:00
Amit Amrutiya
3415031006
fix: lint errors ( #923 )
...
Signed-off-by: amitamrutiya2210 <amitamrutiya2210@gmail.com >
2024-02-07 11:30:45 +00:00
simone ragonesi
d97dea2896
chore: improve codebase and doc quality ( #922 )
...
* chore(prometheus integration): fix mispelling
Signed-off-by: r3drun3 <simone.ragonesi@sighup.io >
* docs(readme): add badges to improve doc quality
Signed-off-by: r3drun3 <simone.ragonesi@sighup.io >
---------
Signed-off-by: r3drun3 <simone.ragonesi@sighup.io >
2024-02-07 09:12:41 +00:00
renovate[bot]
f9c1b90338
fix(deps): update module github.com/pterm/pterm to v0.12.78 ( #890 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-05 07:38:34 +00:00
lili-wan
78126b2328
feat: added FailedMount event reason to get the failure ( #883 )
...
Signed-off-by: lwan3 <lili_wan@intuit.com >
Co-authored-by: lwan3 <lili_wan@intuit.com >
2024-02-01 18:57:20 +00:00
renovate[bot]
60853fe4eb
chore(deps): update anchore/sbom-action action to v0.15.5 ( #885 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-29 12:18:39 +00:00
renovate[bot]
a253af23b6
fix(deps): update module github.com/prometheus/prometheus to v2 ( #863 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-29 11:21:22 +00:00
JuHyung Son
2fd476e126
feat: add huggingface provider ( #893 )
...
* feat: add huggingface ai provider
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* chore: update readme
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
* fix: set huggingface maxtokens default to 500, use ptr instead of pointer
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
---------
Signed-off-by: JuHyung-Son <sonju0427@gmail.com >
2024-01-28 15:41:49 +00:00
renovate[bot]
483a9dad10
chore(deps): update actions/upload-artifact digest to 26f96df ( #888 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-24 14:09:03 +00:00
renovate[bot]
817d9cf754
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.2 ( #887 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-24 10:55:01 +00:00
renovate[bot]
72e08efff1
fix(deps): update module google.golang.org/api to v0.157.0 ( #860 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-23 13:12:44 +00:00
renovate[bot]
e7d690afd1
fix(deps): update module github.com/pterm/pterm to v0.12.75 ( #881 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-23 08:06:44 +00:00
renovate[bot]
3cf18e783e
chore(deps): update actions/upload-artifact digest to 694cdab ( #880 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-23 08:02:18 +00:00
souleb
cdbeb146a2
fix: typo in httproute files name ( #877 )
...
Signed-off-by: Soule BA <bah.soule@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2024-01-23 07:51:57 +00:00
Alex Jones
2effbb345a
chore: linting improvements and catching false positives ( #882 )
...
* chore: linting improvements and catching false positives
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: linting improvements and catching false positives
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: linting improvements and catching false positives
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: increase linter time out
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-01-23 07:46:01 +00:00
renovate[bot]
335616c20f
chore(deps): update reviewdog/action-golangci-lint digest to f016e79 ( #714 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-22 07:36:28 +00:00
renovate[bot]
d213399161
chore(deps): update anchore/sbom-action action to v0.15.4 ( #879 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-22 07:35:27 +00:00
renovate[bot]
1f371e2807
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #875 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-18 16:52:31 +00:00
renovate[bot]
4de1bbd6f7
fix(deps): update module github.com/sashabaranov/go-openai to v1.18.2 ( #874 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-16 12:43:49 +00:00
renovate[bot]
81d660447d
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #866 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-16 09:56:21 +00:00
Philip Miglinci
a34f5dea69
ci: replace deprecated brew config ( #873 )
...
tap got replaces by repository and is now deprecated.
This deprecation warning can also be seen in the goreleaser logs:
> • DEPRECATED: brews.tap should not be used anymore, check https://goreleaser.com/deprecations#brewstap for more info
https://github.com/k8sgpt-ai/k8sgpt/actions/runs/7521548656/job/20472514099
Signed-off-by: Philip Miglinci <pmig@glasskube.eu >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2024-01-16 10:35:36 +01:00
renovate[bot]
6c62c1a0fc
fix(deps): update module github.com/sashabaranov/go-openai to v1.18.1 ( #871 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-16 09:30:32 +00:00
Philip Miglinci
42be51bc8f
chore: set correct license during package build ( #872 )
...
Signed-off-by: Philip Miglinci <pmig@glasskube.eu >
2024-01-16 08:23:49 +00:00
renovate[bot]
88002e7e8c
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.21 ( #868 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-15 19:21:58 +00:00
github-actions[bot]
6d3a3933cd
chore(main): release 0.3.26 ( #846 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-01-14 20:28:11 +00:00
Alex Jones
9da75e02bc
feat: interactive mode ( #854 )
...
* chore: wip interactive mode
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: tidied up a bit
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated go mod
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: const prompt
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated based on comments feedback
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated enum
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated enum
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-01-14 20:22:00 +00:00
renovate[bot]
4ce56f38b4
chore(deps): update actions/upload-artifact digest to 1eb3cb2 ( #867 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-14 20:08:49 +00:00
renovate[bot]
40b5b7e185
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.11 ( #861 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-12 16:41:19 +00:00
renovate[bot]
c55025d04e
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #865 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-12 14:39:52 +00:00
renovate[bot]
36ba6c5147
fix(deps): update module gopkg.in/yaml.v2 to v3 ( #864 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-12 14:27:06 +00:00
renovate[bot]
6a2f315b2f
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.19 ( #859 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-12 12:56:45 +00:00
Daniel Clark
45fa827c04
feat: initial Prometheus analyzers ( #855 )
...
* feat: initial Prometheus analyzers
Added a prometheus integration with two analyzers:
1. PrometheusConfigValidate
2. PrometheusConfigRelabelReport
The integration does not deploy any Prometheus stack in the cluster.
Instead, it searches the provided --namespace for a Prometheus
configuration, stored in a ConfigMap or Secret. If it finds one, it
unmarshals it into memory and runs the analyzers on it.
PrometheusConfigValidate checks if the actual Prometheus configuration is valid or has
any errors.
PrometheusConfigRelabelReport tries to distill the scrape config
relabeling rules to give a concise label set per job that targets need
to have to be scraped. This analyzer is unconventional, in that it does
not necessarily mean there are issues with the config. It merely tries
to give a human-readable explanation of the relabel rules it discovers,
leaning on the LLM and prompt.
Tested on both kube-prometheus and Google Managed Prometheus
stacks.
Signed-off-by: Daniel Clark <danielclark@google.com >
* review: feedback cycle 1
Simplify ConfigValidate prompt and add comments.
Signed-off-by: Daniel Clark <danielclark@google.com >
* review: feedback cycle 2
Add Prometheus configuration discovery to integration activate command.
Also improve logging to make this more clear to users.
Signed-off-by: Daniel Clark <danielclark@google.com >
---------
Signed-off-by: Daniel Clark <danielclark@google.com >
2024-01-12 09:58:09 +00:00
renovate[bot]
4106d39c32
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.18 ( #856 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-11 08:44:46 +00:00
renovate[bot]
1979c86d0f
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.11 ( #853 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-09 21:03:14 +01:00
renovate[bot]
12f764d584
chore(deps): update anchore/sbom-action action to v0.15.3 ( #850 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-09 09:21:21 +00:00
renovate[bot]
85ebd12c30
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.17 ( #852 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-09 08:44:58 +00:00
Matthis
5c17c24055
feat: unify aiClientName const for all providers ( #848 )
2024-01-07 13:01:15 +01:00
renovate[bot]
ce4910bc5d
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.16 ( #847 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-05 22:49:23 +01:00
Anais Urlichs
d8d0beef65
make cli more intuitive when adding openai default backend ( #838 )
...
Signed-off-by: AnaisUrlichs <urlichsanais@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2024-01-05 22:43:08 +01:00
Bartlomiej Plotka
745e960f49
docs: adjusted README information about providers ( #844 )
...
Mentioned the basics and referred to website for more details to keep ~one source of truth.
Signed-off-by: bwplotka <bwplotka@gmail.com >
2024-01-05 22:30:34 +01:00
github-actions[bot]
6d29fcf294
chore(main): release 0.3.25 ( #812 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-01-05 07:35:44 +00:00
Bartlomiej Plotka
e7d41496dd
feat: added Google GenAI client; simplified IAI/clients API surface. ( #829 )
...
* refactor: Simplified IAI; made caching and processing consisent.
Signed-off-by: bwplotka <bwplotka@gmail.com >
* feat: Added Google AI API e.g. for Gemini models.
Signed-off-by: bwplotka <bwplotka@gmail.com >
---------
Signed-off-by: bwplotka <bwplotka@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2024-01-05 06:53:36 +01:00
renovate[bot]
e78ff05419
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.15 ( #835 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-05 06:25:05 +01:00
renovate[bot]
105a239d94
fix(deps): update module google.golang.org/api to v0.155.0 ( #836 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-05 06:16:07 +01:00
renovate[bot]
4de989c803
fix(deps): update module golang.org/x/term to v0.16.0 ( #831 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-04 19:56:11 +01:00
Alex Jones
a7e9b486ba
chore: lint fixes ( #833 )
...
* chore: added basic server startup test
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: refactored wg.add move
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-01-04 17:03:32 +00:00
Alex Jones
a77426593d
chore: remove code cov ( #832 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2024-01-04 16:47:39 +00:00
renovate[bot]
526e22f88b
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.14 ( #822 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-04 08:48:08 +00:00
renovate[bot]
4314804ca7
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.10 ( #824 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-04 06:48:12 +01:00
Bartlomiej Plotka
035348d8a0
fix: no explain case, improved readability. ( #825 )
...
Signed-off-by: bwplotka <bwplotka@gmail.com >
2024-01-03 17:59:28 +01:00
renovate[bot]
70c68929d8
chore(deps): update anchore/sbom-action action to v0.15.2 ( #823 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 13:10:43 +00:00
Debasish Biswas
b17fd7c986
deps: go module bump to fix CVE: GHSA-45x7-px36-x8w8 & GHSA-7ww5-4wqc-m92c ( #810 )
...
Signed-off-by: debasishbsws <debasishbsws.dev@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-29 14:36:11 +00:00
renovate[bot]
2f0f2dfa8a
chore(deps): pin codecov/codecov-action action to eaaf4be ( #820 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-29 14:20:29 +00:00
Alex Jones
3e7cea7bd3
chore: added basic server startup test ( #817 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-29 14:15:32 +00:00
Alex Jones
fcd29a547d
feat: code_cov badge ( #821 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-29 14:08:06 +00:00
Alex Jones
3d0ba3e78c
feat: coverage reports ( #819 )
...
* Update test.yaml
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* Update test.yaml
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-29 14:05:27 +00:00
renovate[bot]
91613baa5c
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.12 ( #813 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-29 08:48:36 +00:00
renovate[bot]
6eb8f6793e
fix(deps): update module github.com/prometheus/client_golang to v1.18.0 ( #814 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-29 08:24:31 +00:00
renovate[bot]
e5cc4a28cb
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.10 ( #811 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-27 10:32:16 +01:00
github-actions[bot]
eac9f07abf
chore(main): release 0.3.24 ( #781 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-12-24 07:39:44 +00:00
renovate[bot]
130e4c2efd
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.9 ( #808 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-23 08:15:53 +00:00
renovate[bot]
93b5ca1985
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.8 ( #807 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-22 12:57:46 +00:00
renovate[bot]
aa057565b5
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.2.1 ( #801 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-22 07:59:01 +00:00
renovate[bot]
13d64a5875
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.9 ( #772 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 17:00:38 +00:00
Akhil Rane
03b63befa2
fix: lowercase logs before running regex matching in LogAnalyzer ( #794 )
...
Signed-off-by: Akhil Rane <akhil131192@gmail.com >
2023-12-21 16:59:13 +00:00
renovate[bot]
3c6c7597e0
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.7 ( #804 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 16:08:02 +00:00
renovate[bot]
71f36bdb0b
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.17.1 ( #780 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 16:04:07 +00:00
renovate[bot]
d6fb648e23
chore(deps): update actions/upload-artifact action to v4 ( #806 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 12:15:52 +00:00
fossabot
343aec8f04
feat: Add license scan report and status ( #796 )
...
Signed off by: fossabot <badges@fossa.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-12-21 13:11:44 +01:00
renovate[bot]
78f7f2ba85
fix(deps): update module google.golang.org/api to v0.154.0 ( #779 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 12:06:30 +00:00
renovate[bot]
a8e1932122
fix(deps): update module helm.sh/helm/v3 to v3.13.3 ( #803 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 13:04:37 +01:00
renovate[bot]
390f309088
fix(deps): update module cloud.google.com/go/storage to v1.36.0 ( #805 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 10:37:14 +00:00
renovate[bot]
5d54c3f840
fix(deps): update module google.golang.org/grpc to v1.60.1 ( #790 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 10:12:32 +00:00
renovate[bot]
4a7bad313b
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.5 ( #802 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-21 10:00:54 +00:00
renovate[bot]
be4b0bb3c2
chore(deps): update google-github-actions/release-please-action action to v4.0.2 ( #800 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-20 17:14:55 +01:00
renovate[bot]
1b386f64f2
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.6 ( #783 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-20 16:08:33 +00:00
renovate[bot]
8dea6170a2
fix(deps): update module github.com/spf13/viper to v1.18.2 ( #787 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-20 16:04:32 +00:00
Swastik Gour
928b39a728
fix: added the ability to set the trivy variables by the user ( #797 )
...
Signed-off-by: swastik959 <Sswastik959@gmail.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-20 15:57:28 +00:00
Alex Jones
c23f24de2e
feat: version upgrade to 1.21 ( #798 )
...
* feat: version upgrade to 1.21
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: updated dockerfile
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: updated dockerfile
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-12-20 15:51:27 +00:00
Akhil Rane
ff4aaf7c32
feat: add last termination state when pod is in CrashloopBackoff ( #792 )
...
Signed-off-by: Akhil Rane <akhil131192@gmail.com >
Co-authored-by: Akhil Rane <akhil_rane@intuit.com >
2023-12-20 12:57:17 +00:00
renovate[bot]
2c28c555cf
chore(deps): update google-github-actions/release-please-action action to v4 ( #782 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-08 08:55:55 +00:00
renovate[bot]
d00ed33678
chore(deps): update actions/setup-go action to v5 ( #788 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-07 12:46:57 +00:00
renovate[bot]
6473a2b532
chore(deps): update anchore/sbom-action action to v0.15.1 ( #784 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-06 09:24:38 +00:00
Xiangkun Yin
1d196286b7
refactor: replace rest client with controller-runtime clientset for Trivy analyzers ( #776 )
...
* refactor: replace rest client with controller-runtime clientset for Trivy analyzers
Signed-off-by: ptyin <peteryin1604@gmail.com >
* refactor: remove rest client
Signed-off-by: ptyin <peteryin1604@gmail.com >
---------
Signed-off-by: ptyin <peteryin1604@gmail.com >
2023-11-29 15:13:38 +00:00
Matthis
71ae5a7301
doc: use grpcurl instead curl ( #773 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-11-25 16:42:49 +00:00
github-actions[bot]
eb32a0f2bc
chore(main): release 0.3.23 ( #769 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-24 14:01:28 +00:00
Aris Boutselis
ec08cac214
feat: add Gateway analysers ( #764 )
...
* feat: add GatewayClass analyser
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore: add a valid GW class object
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: add gw analyzer and switch to controller-runtime client
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore: add unit tests for gw analyser
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore: replace constants with condition status
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: add httproute analyzer
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: add HTTPRoute individual tests.
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* docs: add analyzers
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
---------
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2023-11-24 10:09:54 +00:00
renovate[bot]
dca5b4710d
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.4 ( #767 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-23 08:14:48 +00:00
renovate[bot]
b1c791a396
fix(deps): update module github.com/aws/aws-sdk-go to v1.48.3 ( #768 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-23 08:02:35 +00:00
github-actions[bot]
b780105807
chore(main): release 0.3.22 ( #748 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-22 09:32:57 +00:00
renovate[bot]
16469c01c9
fix(deps): update module github.com/aws/aws-sdk-go to v1.48.1 ( #766 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-21 09:23:08 +00:00
renovate[bot]
cf1e243708
chore(deps): update anchore/sbom-action action to v0.15.0 ( #765 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-20 19:07:58 +00:00
renovate[bot]
b5853de8a6
chore(deps): update docker/build-push-action digest to 4a13e50 ( #760 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-20 18:54:37 +00:00
renovate[bot]
58d182e94f
fix(deps): update module cloud.google.com/go/storage to v1.35.1 ( #762 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-20 13:49:32 +00:00
Jesang Myung
5b27c3e352
fix: cover more error reason messages ( #759 )
...
* fix: cover more error reasons (#758 )
Signed-off-by: Jesang Myung <jesang.myung@gmail.com >
* fix: refactoring for simplify conditions
Signed-off-by: Jesang Myung <jesang.myung@gmail.com >
---------
Signed-off-by: Jesang Myung <jesang.myung@gmail.com >
2023-11-20 13:01:04 +00:00
renovate[bot]
3e3f6a903a
fix(deps): update module google.golang.org/api to v0.151.0 ( #763 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-20 12:42:13 +00:00
Matthis
12146bf356
feat: rework cache package - add gcs cache - add cache purge command ( #750 )
...
* feat: rework cache pkg
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: Completion of cache pkg rework. Added cache purge command.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* doc: add purgin command note
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* fix: disable cache if noCache is set
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: improve GetCacheConfiguration lisibility & transform add method to addOrUpdate
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: transform server mode to work with new cache configuration
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* fix: use 'switch' instead 'if' to evaluate Cache from grpc
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: add mutually exclusive flags for command options
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* doc: update readme.md
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: return err on bucket creation failed
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: update dependencies
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Signed-off-by: Matthis <matthish29@gmail.com >
2023-11-18 22:08:38 +01:00
renovate[bot]
beaa53251c
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.8 ( #761 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-18 20:23:44 +00:00
renovate[bot]
e2bb567d2f
fix(deps): update module github.com/aws/aws-sdk-go to v1.48.0 ( #754 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-18 20:14:37 +00:00
renovate[bot]
24132c2d87
fix(deps): update kubernetes packages to v0.28.4 ( #756 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-16 07:02:15 -05:00
Alex Jones
11e568c6c2
Update README.md ( #757 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-11-16 06:47:27 -05:00
renovate[bot]
9971699fcf
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.7 ( #753 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-15 21:10:29 +00:00
renovate[bot]
531fa79ed6
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.11 ( #752 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-15 06:55:39 -05:00
renovate[bot]
2aa31bc66d
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.10 ( #751 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-13 20:14:47 -05:00
renovate[bot]
84df3640bc
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.6 ( #749 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-13 11:51:11 -05:00
Johannes Kleinlercher
73682717ed
fix: show trivy as active when activated with --no-install flag ( #675 )
...
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Signed-off-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-11-13 11:10:13 -05:00
renovate[bot]
45312788c3
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.16.4 ( #676 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-12 16:52:11 -05:00
github-actions[bot]
c78c4f0cb6
chore(main): release 0.3.21 ( #735 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-12 16:09:05 -05:00
Alex Jones
d365886753
feat: log analyzer ( #744 )
...
* feat: wip log analyzer
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: turns off log by default
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: turns off log by default
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-11-12 16:00:43 -05:00
renovate[bot]
4408110b1a
chore(deps): pin google-github-actions/release-please-action action to db8f2c6 ( #747 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-12 21:47:22 +01:00
Thomas Schuetz
c4925b2170
chore: pin release-please version ( #746 )
...
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
Signed-off-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-11-12 21:39:38 +01:00
Thomas Schuetz
66ebb88efe
chore: enable automerge for renovate ( #745 )
...
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-11-12 21:38:47 +01:00
Tsadok Levi Firseck
1a554ae840
Update pod.go - added handling of CreateContainerConfigError ( #639 )
...
Added handling of CreateContainerConfigError error
Signed-off-by: Tsadok Levi Firseck <tsadoklf@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-11-12 21:24:41 +01:00
renovate[bot]
19e502a841
fix(deps): update module github.com/spf13/cobra to v1.8.0 ( #732 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-12 21:20:00 +01:00
renovate[bot]
fdb2934e8f
chore(deps): update google-github-actions/release-please-action digest to db8f2c6 ( #736 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-12 20:54:56 +01:00
renovate[bot]
45ebad7b4d
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.9 ( #743 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-11 05:53:31 -06:00
renovate[bot]
6a665f05d7
fix(deps): update module helm.sh/helm/v3 to v3.13.2 ( #740 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-10 14:53:44 -06:00
renovate[bot]
d359caaab6
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.8 ( #741 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-10 14:37:54 -06:00
Pavel Sturc
9dadd186c8
feat: auth remove: add -b flag ( #711 )
...
* feat: auth remove: add -b flag
Signed-off-by: Pavel Sturc <psturc@redhat.com >
* fix: address comment
Signed-off-by: Pavel Sturc <psturc@redhat.com >
---------
Signed-off-by: Pavel Sturc <psturc@redhat.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-11-10 14:15:24 -06:00
renovate[bot]
3bff9cbe7b
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.5 ( #742 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-10 14:14:34 -06:00
renovate[bot]
05f444dec1
fix(deps): update module github.com/schollz/progressbar/v3 to v3.14.1 ( #738 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-09 11:29:35 -06:00
renovate[bot]
bb21ce80c7
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.6 ( #728 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-08 16:25:43 -06:00
renovate[bot]
48486e9627
fix(deps): update module github.com/sashabaranov/go-openai to v1.17.3 ( #737 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-08 07:33:10 -06:00
Ajay Kemparaj
120027e3cb
deps: bump docker fixes CVE GHSA-jq35-85cj-fj4p ( #733 )
...
Signed-off-by: ajayk <ajaykemparaj@gmail.com >
2023-11-07 15:47:39 -06:00
renovate[bot]
9c518badf5
chore(deps): update google-github-actions/release-please-action digest to 4c5670f ( #721 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-06 14:15:22 +01:00
renovate[bot]
8ab26d96ce
fix(deps): update module github.com/fatih/color to v1.16.0 ( #734 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-06 14:13:00 +01:00
github-actions[bot]
4978fe2523
chore(main): release 0.3.20 ( #727 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-11-05 20:22:00 +00:00
DKuroczko
ccef7f6170
feat: amazonsagemaker AI provider ( #731 )
...
* feat(amazonsagemaker): Add AmazonSageMaker AI provider
Co-authored-by: NAME 18630245+zaremb@users.noreply.github.com
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
* feat(amazonsagemaker): Add AmazonSageMaker AI provider
Co-authored-by: Mateusz Zaremba <18630245+zaremb@users.noreply.github.com >
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
* feat(auth): add top p and max tokens to auth and use them in sagemaker backend
Signed-off-by: Mateusz Zaremba <18630245+zaremb@users.noreply.github.com >
* feat: Updates SageMaker docs, validate topP, ident
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
* feat: list of passwordlessProviders
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
* feat: returns err
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
* fix: remove log.Fatal(err)
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
---------
Signed-off-by: Damian Kuroczko <7778327+dkuroczk@users.noreply.github.com >
Signed-off-by: Mateusz Zaremba <18630245+zaremb@users.noreply.github.com >
Co-authored-by: Mateusz Zaremba <18630245+zaremb@users.noreply.github.com >
2023-11-05 20:03:40 +00:00
renovate[bot]
188a8a2cd5
chore(deps): update amannn/action-semantic-pull-request action to v5.4.0 ( #729 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-04 21:40:40 +00:00
Ali
37721b5dd7
fix: ensure ingress HTTP rule exists to prevent panic ( #726 )
...
Signed-off-by: Ali Harris <aliharriss1995@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-11-03 14:02:51 +00:00
renovate[bot]
16b229d547
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/storage/azblob to v1.2.0 ( #723 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-03 10:54:06 +00:00
renovate[bot]
901c5ec188
fix(deps): update module google.golang.org/grpc to v1.59.0 ( #713 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-03 10:33:59 +00:00
renovate[bot]
40133adaed
fix(deps): update module helm.sh/helm/v3 to v3.13.1 ( #706 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-03 08:30:26 +00:00
renovate[bot]
0136b8f543
fix(deps): update module github.com/aws/aws-sdk-go to v1.47.1 ( #724 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-02 15:42:17 +00:00
github-actions[bot]
f4b361aed6
chore(main): release 0.3.19 ( #708 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-28 13:12:15 +01:00
StevenSu
f1a7801e9e
feat: add amazonbedrock ( #718 )
...
* add amazonbedrock AI provider
Signed-off-by: Su Wei <suwei007@gmail.com >
* add amazonbedrock, change model list to const var
Signed-off-by: Su Wei <suwei007@gmail.com >
* update iai config and auth cmd, add providerRegion
Signed-off-by: Wei Su <wsuam@amazon.com >
* fix filename wrong
Signed-off-by: Wei Su <wsuam@amazon.com >
* chore: added some doc info
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Su Wei <suwei007@gmail.com >
Signed-off-by: Wei Su <wsuam@amazon.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Wei Su <wsuam@amazon.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-10-28 11:49:09 +01:00
renovate[bot]
4af0ad0303
chore(deps): update module oras.land/oras-go to v1.2.4 ( #665 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-27 06:31:23 +01:00
renovate[bot]
a77bd41048
chore(deps): update actions/checkout digest to b4ffde6 ( #719 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-27 06:20:53 +01:00
renovate[bot]
63a226065c
fix(deps): update module github.com/aws/aws-sdk-go to v1.46.5 ( #712 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-27 06:13:36 +01:00
renovate[bot]
0e7219a36a
fix(deps): update module github.com/azure/azure-sdk-for-go/sdk/azidentity to v1.4.0 ( #722 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-25 19:26:48 +01:00
renovate[bot]
7e73f8afbc
fix(deps): update kubernetes packages to v0.28.3 ( #715 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-25 15:58:40 +01:00
Aris Boutselis
23ac52d5ff
feat: add Azure remote cache ( #690 )
...
* feat: add Azure remote cache
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* feat: add serve mode support and update buf schema
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix: map structure name
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* chore: add a new cache type to make code readable
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* docs: update docs to reflect new remote cache type
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module github.com/prometheus/client_golang to v1.17.0 (#687 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20231002095256-194bc640518b.1 (#692 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix(deps): update module helm.sh/helm/v3 to v3.13.0 (#688 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix: security warning around printing provider details in https://github.com/k8sgpt-ai/k8sgpt/security/code-scanning/1 (#695 )
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go to v1.31.0-20231002095256-194bc640518b.1 (#693 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix(deps): update module github.com/sashabaranov/go-openai to v1.15.4 (#689 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.45.20 (#685 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* chore(deps): update amannn/action-semantic-pull-request action to v5.3.0 (#683 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.45.21 (#696 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix(deps): update module github.com/aws/aws-sdk-go to v1.45.22 (#697 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.45.23 (#699 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.45.24 (#701 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
---------
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-10-22 16:08:39 +01:00
renovate[bot]
c977528ec7
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.26 ( #709 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-17 14:17:34 +01:00
renovate[bot]
b5facd64a3
fix(deps): update module github.com/sashabaranov/go-openai to v1.16.0 ( #703 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-16 07:39:34 +01:00
renovate[bot]
1d7360c0ae
fix(deps): update module google.golang.org/grpc to v1.58.3 ( #704 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-15 20:47:25 +01:00
renovate[bot]
184d148108
fix(deps): update module github.com/spf13/viper to v1.17.0 ( #700 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-13 10:45:59 +01:00
renovate[bot]
3ebc86772d
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.25 ( #707 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-13 08:39:37 +01:00
github-actions[bot]
c5c198e3d6
chore(main): release 0.3.18 ( #691 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-12 13:16:42 +01:00
Aris Boutselis
539ca3b78f
feat: adding temperature to server mode ( #705 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2023-10-12 13:14:43 +01:00
Alex Jones
2a34ff24d1
chore: fixing default model issue ( #702 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-10-11 19:52:47 +01:00
renovate[bot]
6d3038b0e8
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.24 ( #701 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-09 16:56:08 +01:00
renovate[bot]
3f36a44415
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.23 ( #699 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-05 21:06:37 +01:00
renovate[bot]
923a8c13c0
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.22 ( #697 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-05 06:29:38 +01:00
renovate[bot]
95c8cc0afb
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.21 ( #696 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 20:24:51 +01:00
renovate[bot]
c5a8c46298
chore(deps): update amannn/action-semantic-pull-request action to v5.3.0 ( #683 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 20:12:53 +01:00
renovate[bot]
2494946dc8
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.20 ( #685 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 14:00:19 +01:00
renovate[bot]
f11d3149b2
fix(deps): update module github.com/sashabaranov/go-openai to v1.15.4 ( #689 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 13:10:39 +01:00
renovate[bot]
20e6bd816f
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go to v1.31.0-20231002095256-194bc640518b.1 ( #693 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 11:15:50 +01:00
Alex Jones
85ce557681
fix: security warning around printing provider details in https://github.com/k8sgpt-ai/k8sgpt/security/code-scanning/1 ( #695 )
2023-10-03 11:01:33 +01:00
renovate[bot]
87c8bcea4b
fix(deps): update module helm.sh/helm/v3 to v3.13.0 ( #688 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 09:38:08 +01:00
renovate[bot]
4d4e33bea9
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20231002095256-194bc640518b.1 ( #692 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 08:45:35 +01:00
renovate[bot]
9597002723
fix(deps): update module github.com/prometheus/client_golang to v1.17.0 ( #687 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-03 07:42:31 +01:00
github-actions[bot]
bcd058c3b0
chore(main): release 0.3.17 ( #674 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-29 08:13:39 +01:00
Alex Jones
69fe2db8ac
feat: integration refactor ( #684 )
...
* feat: more significant refactor
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: more significant refactor
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: reworked the integration activate/deactivation
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated schema for list integrations
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* fix: error with incorrect error being swallowed
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added namespace check
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixed issue with namespace and skip install validation
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-28 07:43:05 +01:00
renovate[bot]
ddeff9fae4
fix(deps): update kubernetes packages to v0.28.2 ( #607 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-26 12:50:59 +01:00
renovate[bot]
aa9e6a3549
chore(deps): update actions/checkout digest to 8ade135 ( #681 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-26 10:24:19 +01:00
renovate[bot]
e1a42ff3bc
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.16 ( #682 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-26 10:15:50 +01:00
renovate[bot]
901ffb8df4
fix(deps): update module github.com/google/gnostic to v0.7.0 ( #679 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-22 12:08:52 +01:00
renovate[bot]
402e97d05e
fix(deps): update module google.golang.org/grpc to v1.58.2 ( #680 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-22 07:10:12 +01:00
renovate[bot]
1da4b7c8f0
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.14 ( #672 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-21 06:42:23 +01:00
Alex Jones
820e4755a5
feat: added create namespace on deploy ( #673 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-09-20 12:43:18 +01:00
Rakshit Gondwal
cad605af46
feat: update readme with new analyzers ( #671 )
...
Signed-off-by: Rakshit Gondwal <98955085+rakshitgondwal@users.noreply.github.com >
2023-09-20 12:20:13 +01:00
github-actions[bot]
9bd11feb01
chore(main): release 0.3.16 ( #655 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-19 20:33:34 +01:00
Jian Zhang
7461a748f8
fix: use default values when adding auth ( #568 )
...
The `auth add` cmd should use `backend` and `model` default values when user doesn't specify them
Closes : #567
Signed-off-by: Jian Zhang <jiazha@redhat.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-19 20:17:19 +01:00
renovate[bot]
b4656f533b
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.12 ( #666 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-19 19:00:51 +00:00
renovate[bot]
4bfc7f996c
chore(deps): update actions/upload-artifact digest to a8a3f3a ( #633 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-19 18:15:45 +02:00
Alex Jones
844ff1fc78
feat: lists activate integrations ( #669 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-19 18:15:07 +02:00
renovate[bot]
d6b7b818ae
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20230830164712-dc062a152c20.1 ( #617 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-19 12:23:17 +01:00
Peter Pan
f55946d60e
feat: openAI explicit value for maxToken and temperature ( #659 )
...
* feat: openAI explicit value for maxToken and temp
Because when k8sgpt talks with vLLM, the default MaxToken is 16,
which is so small.
Given the most model supports 2048 token(like Llama1 ..etc), so
put here for a safe value.
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
* feat: make temperature a flag
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
---------
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
2023-09-18 13:14:43 +01:00
renovate[bot]
54caff837d
fix(deps): update module github.com/sashabaranov/go-openai to v1.15.3 ( #636 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-17 14:59:04 +01:00
Alex Jones
3277b2ad4b
fix: pdb panic error guard ( #664 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-09-17 12:12:28 +01:00
renovate[bot]
f60736035b
chore(deps): update reviewdog/action-golangci-lint digest to 24d4af2 ( #642 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-17 12:10:15 +01:00
renovate[bot]
1b80b0ce95
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.11 ( #662 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-17 09:09:32 +01:00
Alex Jones
2472da1673
fix: emergency fix for bad package revision in go mod ( #663 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-17 08:55:23 +01:00
Alex Jones
ab064b940c
feat: serve/integration capability ( #645 )
...
* chore: updated schema for integrations support (#616 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
wip: enabling integration activation
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
wip: enabling integration activation
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* wip
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: skipinstall fixed
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: fixed filters for integrations but its ugly
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated library
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated go mod
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated go mod
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-16 17:12:09 +01:00
Johannes Kleinlercher
6481590b29
fix: respect namespace scope in trivy analyzer ( #661 )
...
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
2023-09-15 21:30:59 +01:00
renovate[bot]
0325724658
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.10 ( #657 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-15 08:36:25 +01:00
renovate[bot]
f76b572654
fix(deps): update module go.uber.org/zap to v1.26.0 ( #658 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-15 07:08:05 +01:00
renovate[bot]
abfb58432f
fix(deps): update module google.golang.org/grpc to v1.58.1 ( #656 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 19:23:14 +01:00
renovate[bot]
d58e002d7d
fix(deps): update module google.golang.org/grpc to v1.58.0 ( #635 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 18:33:57 +01:00
github-actions[bot]
ac2937c821
chore(main): release 0.3.15 ( #613 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-14 17:41:21 +01:00
Aris Boutselis
6c5a0628e4
fix: defer to service analyser when selectors are missing ( #652 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-09-14 16:57:27 +01:00
renovate[bot]
598ef22e57
chore(deps): update docker/setup-buildx-action action to v3 ( #649 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 16:56:21 +01:00
renovate[bot]
95787f2854
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.9 ( #640 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 16:15:08 +01:00
Johannes Kleinlercher
230eace187
feat: show each ConfigAuditReport check ( #646 )
...
* feat: show each ConfigAuditReport check
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
* feat: mask sensitive data in configauditreport messages
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
---------
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
2023-09-13 09:18:03 +01:00
renovate[bot]
b491c9200e
chore(deps): update docker/login-action action to v3 ( #648 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-12 21:00:06 +01:00
renovate[bot]
00d7a27ec1
chore(deps): update goreleaser/goreleaser-action action to v5 ( #641 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-12 15:20:06 +00:00
renovate[bot]
241f1bd6df
chore(deps): update docker/build-push-action action to v5 ( #643 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-12 17:14:37 +02:00
dependabot[bot]
25890e6e38
chore(deps): bump github.com/cyphar/filepath-securejoin ( #644 )
...
Bumps [github.com/cyphar/filepath-securejoin](https://github.com/cyphar/filepath-securejoin ) from 0.2.3 to 0.2.4.
- [Release notes](https://github.com/cyphar/filepath-securejoin/releases )
- [Commits](https://github.com/cyphar/filepath-securejoin/compare/v0.2.3...v0.2.4 )
---
updated-dependencies:
- dependency-name: github.com/cyphar/filepath-securejoin
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-12 13:55:25 +01:00
renovate[bot]
3aabb4842d
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.6 ( #634 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-08 20:50:29 +01:00
renovate[bot]
5de3b64098
chore(deps): update goreleaser/goreleaser-action digest to 5fdedb9 ( #631 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-05 20:50:41 +01:00
renovate[bot]
5f73240a06
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.3 ( #632 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-05 20:45:58 +01:00
renovate[bot]
44d17c51ff
fix(deps): update module golang.org/x/term to v0.12.0 ( #626 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-05 20:18:56 +01:00
renovate[bot]
2c81dadb4d
chore(deps): update docker/setup-buildx-action digest to 885d146 ( #615 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-05 19:41:46 +02:00
omahs
067c3483e6
fix: typos ( #629 )
...
* fix typos
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com >
* fix typo
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com >
* fix typo
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com >
---------
Signed-off-by: omahs <73983677+omahs@users.noreply.github.com >
2023-09-05 14:02:34 +01:00
renovate[bot]
e65d9a6505
chore(deps): update actions/checkout action to v4 ( #628 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-04 20:25:26 +01:00
guangwu
c24825b810
chore: slice loop replace ( #627 )
...
Signed-off-by: guoguangwu <guoguangwu@magic-shield.com >
2023-09-04 20:19:48 +01:00
renovate[bot]
b6498ef269
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.2 ( #625 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-03 16:29:54 +01:00
Alex Jones
133850f984
chore: fixes a bug where filters do not deactive ( #621 )
...
Signed-off-by: Alex Jones <alex@Alexs-MacBook-Pro.local >
Co-authored-by: Alex Jones <alex@Alexs-MacBook-Pro.local >
2023-09-03 16:13:52 +01:00
renovate[bot]
09984c245d
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.1 ( #624 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-01 09:42:57 +01:00
Aris Boutselis
1a7f45cc55
fix: use-case while in cluster, connecting to an external ( #623 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2023-09-01 08:09:11 +00:00
renovate[bot]
fc90dc865b
fix(deps): update module github.com/sashabaranov/go-openai to v1.15.1 ( #622 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-31 19:14:19 +01:00
renovate[bot]
632fc9a99f
fix(deps): update module github.com/aws/aws-sdk-go to v1.45.0 ( #618 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-31 07:22:12 +01:00
renovate[bot]
96d97cfa30
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.333 ( #611 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-29 21:27:05 +01:00
Alex Jones
8f0a2fd41d
chore: updated schema for integrations support ( #616 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-08-28 12:39:23 +01:00
Alex Jones
5e17e66665
chore: updated protobuf libs ( #614 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-08-27 16:52:56 +01:00
renovate[bot]
6f9f7b2b60
chore(deps): update actions/checkout digest to f43a0e5 ( #612 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-26 07:01:02 +01:00
github-actions[bot]
95ebc52a6b
chore(main): release 0.3.14 ( #571 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-08-25 17:39:21 +01:00
Alex Jones
44d3613c1f
feat: configauditreport ( #609 )
...
* feat: adding config audit report
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* feat: adding config audit report
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* feat: adding config audit report analyzer mechnics
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* feat: adding config audit report analyzer mechnics
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* chore: updated naming
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* chore: updated naming
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
* chore: updated var names
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
---------
Signed-off-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Alex Jones <alex@alexs-mbp.tailddc26.ts.net >
2023-08-25 17:37:53 +01:00
renovate[bot]
0e5be89e5c
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.329 ( #610 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-23 06:55:54 +01:00
Alex Jones
13f63eda2a
Revert "fix: use kubeconfig file when user specify it ( #605 )" ( #608 )
...
This reverts commit e3b21ec5ec .
2023-08-19 20:58:34 +01:00
Clever Hu
cc665ea4f3
fix: optimize analyze service ( #461 )
...
Signed-off-by: cleverhu <shouping.hu@daocloud.io >
Signed-off-by: cleverhu <zhubai.hsp@xuelanyun.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: cleverhu <shouping.hu@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-08-19 20:52:46 +01:00
renovate[bot]
aee83b74b2
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.327 ( #597 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-08-19 20:11:58 +01:00
Jian Zhang
e3b21ec5ec
fix: use kubeconfig file when user specify it ( #605 )
...
If user specify `--kubeconfig` when running k8sgpt, it should use the
kubeconfig file to login the corresponding cluster instead of getting auth info via SA.
Closes #604
Signed-off-by: Jian Zhang <jiazha@redhat.com >
2023-08-19 20:11:11 +01:00
renovate[bot]
1a0ae1a086
chore(deps): update actions/setup-go digest to 93397be ( #600 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-12 21:14:28 +01:00
renovate[bot]
610720a95c
chore(deps): update goreleaser/goreleaser-action digest to 3fa32b8 ( #601 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-12 21:08:21 +01:00
renovate[bot]
7910c9aa2c
fix(deps): update module helm.sh/helm/v3 to v3.12.3 ( #602 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-12 20:58:01 +01:00
Maxime Brunet
f8a53a5c03
chore(deps): exclude retracted cohere-go versions ( #583 )
...
Signed-off-by: Maxime Brunet <max@brnt.mx >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-08-12 20:47:46 +01:00
renovate[bot]
81fcf8b5d4
fix(deps): update module github.com/sashabaranov/go-openai to v1.14.2 ( #603 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-12 20:38:19 +01:00
renovate[bot]
2251321696
chore(deps): update reviewdog/action-golangci-lint digest to f17c2e2 ( #598 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-11 19:46:27 +01:00
renovate[bot]
9672cea228
fix(deps): update module go.uber.org/zap to v1.25.0 ( #589 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-06 11:36:09 +01:00
renovate[bot]
7f109cdcfa
fix(deps): update module golang.org/x/term to v0.11.0 ( #593 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-06 08:59:11 +01:00
renovate[bot]
9802e82ff5
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.317 ( #591 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-06 08:18:37 +01:00
renovate[bot]
9acaec00c4
chore(deps): update reviewdog/action-golangci-lint digest to 951dc8b ( #594 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-06 07:57:17 +01:00
renovate[bot]
fe29361e33
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.315 ( #588 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-03 06:27:19 +01:00
renovate[bot]
f1479babba
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.313 ( #587 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-01 13:26:13 +01:00
renovate[bot]
c2770f38a6
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.3 ( #582 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-30 15:33:21 +01:00
renovate[bot]
59897f330a
fix(deps): update module google.golang.org/grpc to v1.57.0 ( #585 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-30 05:58:37 +01:00
renovate[bot]
aafac9345f
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.312 ( #586 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-29 17:17:43 +01:00
renovate[bot]
227e1cd69f
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.309 ( #584 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-27 10:34:47 +01:00
Alex Jones
5bb91ff2c9
Revert "chore: upgraded cohere backend ( #580 )" ( #581 )
...
This reverts commit 43b0d707e7 .
2023-07-26 16:59:49 +01:00
Alex Jones
43b0d707e7
chore: upgraded cohere backend ( #580 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-26 16:22:49 +01:00
renovate[bot]
c3640744c5
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.15.1 ( #576 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-26 15:57:05 +01:00
renovate[bot]
3cc7aa56d8
fix(deps): update kubernetes packages to v0.27.4 ( #565 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-26 08:57:13 +01:00
renovate[bot]
7e8668a56b
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.308 ( #579 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-26 07:01:54 +01:00
renovate[bot]
b52424a9b1
fix(deps): update module github.com/sashabaranov/go-openai to v1.14.1 ( #573 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-25 08:09:59 +01:00
renovate[bot]
fba1a8ed8c
chore(deps): update google-github-actions/release-please-action digest to ca6063f ( #572 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-25 06:52:56 +01:00
renovate[bot]
8ae91ec744
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.307 ( #574 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-25 06:33:52 +01:00
renovate[bot]
cf9069ef57
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.304 ( #558 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-20 14:32:03 +01:00
github-actions[bot]
5ee8499e3d
chore(main): release 0.3.13 ( #570 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-20 13:52:42 +01:00
Aris Boutselis
153d38deb0
chore: continue on absent service ( #569 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
2023-07-20 13:49:06 +01:00
github-actions[bot]
9d2bee9b7d
chore(main): release 0.3.12 ( #556 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-19 20:20:36 +01:00
Jatin Mehrotra
70bec050d8
docs: fix readme for anonymization ( #559 )
...
* docs: fixed markdown for Anonymization
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
* docs: added details for events which are not being masked
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
* docs: removed timeframe, added issue link for event anonymization
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
* docs: changed title to Further details
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
* docs: fixed broken markdown for config management and remote caching section
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
* Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
docs: added "note" for events before further details section
---------
Signed-off-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
Co-authored-by: Jatin Mehrotra <jatin.mehrotra@classmethod.jp >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-19 18:30:46 +01:00
Maxime Brunet
781ecb7aad
feat: add Cohere backend ( #563 )
...
Signed-off-by: Maxime Brunet <max@brnt.mx >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-19 18:25:27 +01:00
Alex Jones
c42221512b
chore: fixing edge cases with missing wh service ( #561 )
...
* chore: fixing edge cases with missing wh service
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixing edge cases with missing wh service
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* Update validating_webhook.go
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-07-19 16:28:45 +01:00
renovate[bot]
2e0db553f9
fix(deps): update module github.com/mittwald/go-helm-client to v0.12.2 ( #562 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-18 20:57:14 +01:00
renovate[bot]
cc83fe19ba
fix(deps): update module google.golang.org/grpc to v1.56.2 ( #546 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-17 10:16:47 +01:00
renovate[bot]
dc463334bc
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.300 ( #554 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-17 10:02:07 +01:00
renovate[bot]
9eb96c495c
fix(deps): update module helm.sh/helm/v3 to v3.12.2 ( #555 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-14 21:01:04 +01:00
github-actions[bot]
ee83aa1e9e
chore(main): release 0.3.11 ( #552 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-14 12:09:04 +01:00
Alex Jones
06e8532f88
feat: admission webhooks ( #553 )
...
* feat: add Validating/Mutating webhook analyzer
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* change conditions
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* fix: use GetClient to get pods and mask pod name
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* fix: add new cases in util.GetParent
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* feat: implements webhooks
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: implements webhooks
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: implements webhooks
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: implements webhooks
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-07-14 10:44:15 +01:00
renovate[bot]
1a3f299210
chore(deps): update docker/setup-buildx-action digest to 4c0219f ( #547 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-13 09:28:24 +01:00
Alex Jones
731e1520ec
Revert "feat: add Validating/Mutating webhook analyzer ( #548 )" ( #551 )
...
This reverts commit 750a10d44c .
2023-07-13 08:54:22 +01:00
github-actions[bot]
f844f7308e
chore(main): release 0.3.10 ( #544 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-12 17:28:02 +01:00
Rakshit Gondwal
750a10d44c
feat: add Validating/Mutating webhook analyzer ( #548 )
...
* feat: add Validating/Mutating webhook analyzer
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* change conditions
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* fix: use GetClient to get pods and mask pod name
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* fix: add new cases in util.GetParent
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
---------
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-07-12 14:20:18 +01:00
renovate[bot]
9dcab94546
fix(deps): update module github.com/sashabaranov/go-openai to v1.14.0 ( #550 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-12 13:14:41 +01:00
renovate[bot]
ecd7790efe
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.299 ( #549 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-11 18:21:10 +01:00
renovate[bot]
d1096dc31a
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.298 ( #545 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-10 09:50:58 +01:00
renovate[bot]
21df094bda
fix(deps): update module github.com/sashabaranov/go-openai to v1.13.0 ( #399 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-06 12:38:57 +01:00
renovate[bot]
1276b3e897
fix(deps): update module golang.org/x/term to v0.10.0 ( #542 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-05 17:31:45 +01:00
github-actions[bot]
ad112eae2e
chore(main): release 0.3.9 ( #509 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-04 13:03:45 +01:00
Alexandre Steppé
da750df16b
fix: typo in add command ( #539 )
...
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-04 12:55:06 +01:00
renovate[bot]
767e4cbc41
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.295 ( #540 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-04 10:23:20 +01:00
renovate[bot]
3067fa98f4
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.294 ( #535 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-03 12:37:06 +01:00
Alexandre Steppé
2309b0dfe2
feat: details flag to list command ( #537 )
...
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-07-03 11:47:38 +01:00
Peter Pan
1f5462c80b
fix: add --no-install for activate command ( #536 )
...
to fix #534
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
2023-07-03 11:36:02 +01:00
Rakshit Gondwal
5a983c4a0a
fix: remove provider from default on delete ( #529 )
...
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-29 16:05:43 +01:00
renovate[bot]
5662d5932f
chore(deps): update docker/setup-buildx-action digest to 16c0bc4 ( #532 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-29 09:57:54 +01:00
Alex Jones
367fe8f74c
feat: upgrading azure client impl ( #526 )
...
* feat: upgrading azure client impl
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: upgrading azure client impl
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* fix: displaying correct yaml config location on app start (#521 )
Signed-off-by: Ali Mohsin <aliofthemohsins@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.289 (#524 )
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* feat: upgrading azure client impl
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Ali Mohsin <aliofthemohsins@gmail.com >
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ali Mohsin <aliofthemohsins@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-29 09:47:12 +01:00
renovate[bot]
566f7525ee
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.292 ( #530 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-29 09:45:32 +01:00
renovate[bot]
fafb69544f
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.289 ( #524 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-26 09:51:08 +01:00
Ali Mohsin
b7d4602cb8
fix: displaying correct yaml config location on app start ( #521 )
...
Signed-off-by: Ali Mohsin <aliofthemohsins@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-26 09:40:14 +01:00
renovate[bot]
d56861d4ba
chore(deps): update google-github-actions/release-please-action digest to 8016a66 ( #523 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-26 08:00:37 +01:00
renovate[bot]
3146754779
chore(deps): update reviewdog/action-golangci-lint digest to 22adb9d ( #525 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-25 19:21:13 +01:00
renovate[bot]
57695b44b6
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.288 ( #519 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-06-23 17:52:10 +02:00
renovate[bot]
be52308c99
fix(deps): update module google.golang.org/grpc to v1.56.1 ( #520 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-23 17:50:34 +02:00
Alex Jones
cd7807a484
chore: sorting out the dependency hell ( #518 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-21 10:58:07 +01:00
renovate[bot]
0521060410
chore(deps): update anchore/sbom-action action to v0.14.3 ( #517 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-21 10:42:04 +01:00
renovate[bot]
b9cf522685
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.286 ( #514 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-21 10:41:22 +01:00
renovate[bot]
06e50d57db
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20230620082254-6f80f9533908.1 ( #516 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-20 09:36:01 +01:00
Alex Jones
c88fc889e4
feat: upgrading the proto files to fix user issues ( #515 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-20 09:29:21 +01:00
renovate[bot]
c15a561b63
chore(deps): update docker/login-action digest to 465a078 ( #488 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-19 22:27:52 +01:00
renovate[bot]
1819c3bf15
chore(deps): update reviewdog/action-golangci-lint digest to 994abff ( #513 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-19 22:27:08 +01:00
renovate[bot]
f4d7876838
chore(deps): update docker/setup-buildx-action digest to ecf9528 ( #498 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-19 11:47:13 +01:00
renovate[bot]
d87127a309
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.284 ( #501 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-19 09:44:02 +01:00
renovate[bot]
9df75cc959
chore(deps): update docker/build-push-action digest to 2eb1c19 ( #499 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-19 09:26:01 +01:00
renovate[bot]
f3e0b9b56d
fix(deps): update module google.golang.org/grpc to v1.56.0 ( #510 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-19 09:25:21 +01:00
renovate[bot]
0f03ddcf0f
fix(deps): update module helm.sh/helm/v3 to v3.12.1 ( #503 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-16 11:57:16 +01:00
renovate[bot]
14e5691190
fix(deps): update module github.com/prometheus/client_golang to v1.16.0 ( #507 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-16 11:19:20 +01:00
Ben Parees
64b93c9116
fix: 'intergration' typos ( #508 )
...
Signed-off-by: bparees <bparees@redhat.com >
2023-06-15 19:13:15 +01:00
github-actions[bot]
4038318adc
chore(main): release 0.3.8 ( #506 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-06-15 14:04:21 +01:00
renovate[bot]
b1c6ec3c09
fix(deps): update kubernetes packages to v0.27.3 ( #504 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-15 12:22:04 +00:00
Alex Jones
f6db6ce861
feat: fix for s3 cache from operator
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-15 13:17:43 +01:00
github-actions[bot]
1bc0f42f71
chore(main): release 0.3.7 ( #475 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-06-13 12:29:00 +01:00
Alexandre Steppé
01aeeb35e2
feat: add update to auth cmd ( #450 )
...
* added update.go + fixed typos
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* updated readme
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* fixed default values
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* fixed typo
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
---------
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-13 12:28:00 +01:00
renovate[bot]
a6342c9283
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.281 ( #496 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-13 12:06:33 +01:00
renovate[bot]
98b852aabe
fix(deps): update module golang.org/x/term to v0.9.0 ( #497 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-13 09:18:56 +01:00
Peter Pan
c85203bccd
chore: customized prompt template for integration plugins ( #403 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-12 21:14:12 +01:00
renovate[bot]
ad2a5fd5fc
chore(deps): update goreleaser/goreleaser-action digest to 336e299 ( #495 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-12 21:07:27 +01:00
renovate[bot]
04b4f56a66
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.280 ( #490 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-12 12:22:41 +00:00
gujing
40fbba7df1
docs: fix add localai command in readme.md ( #494 )
...
Signed-off-by: zibai <zibai.gj@alibaba-inc.com >
Co-authored-by: zibai <zibai.gj@alibaba-inc.com >
2023-06-12 09:14:16 +00:00
renovate[bot]
a23276d3ff
chore(deps): update docker/setup-buildx-action digest to 6a58db7 ( #489 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-12 10:13:11 +01:00
renovate[bot]
e556901b9d
chore(deps): update docker/build-push-action digest to 44ea916 ( #491 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-12 10:12:31 +01:00
renovate[bot]
1ae21e6fd4
chore(deps): update actions/checkout digest to c85c95e ( #492 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-10 20:23:40 +02:00
renovate[bot]
e2d5c2dee0
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.277 ( #485 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-07 12:03:12 +01:00
Jian Zhang
075066dd7c
fix: use the status for pdb checking ( #477 )
...
The PDB event is a historical record, it's not a good choice to judge the pdb latest status based on it.
So, use the `stataus` instead of `event` to check it.
Closes : #476
Signed-off-by: Jian Zhang <jiazha@redhat.com >
2023-06-07 10:51:20 +01:00
renovate[bot]
3f0aea131e
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.276 ( #482 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-06 08:22:49 +01:00
Johannes Kleinlercher
92539ee05d
feat: support arbitrary uid for openshift environments ( #454 )
...
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-06-06 08:19:13 +01:00
renovate[bot]
705b54fcd3
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.275 ( #478 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-05 10:51:45 +01:00
renovate[bot]
1a81227d61
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.274 ( #474 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-01 22:02:50 +02:00
github-actions[bot]
9c0efe6f5c
chore(main): release 0.3.6 ( #467 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-31 17:49:44 +01:00
golgoth31
f9621af7e4
feat: get official field doc ( #457 )
...
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.267 (#451 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* feat: get official field doc
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* feat: use schema from server
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* feat: add configuration api route (#459 )
* feat: add configuration api route
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: rename cache methods
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.269 (#458 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix: updated list.go to handle k8sgpt cache list crashing issue (#455 )
* Update list.go
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
* fix: updated list.go to handle k8sgpt cache list crashing issue
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
---------
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* chore(main): release 0.3.5 (#452 )
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* chore(deps): update google-github-actions/release-please-action digest to 51ee8ae (#464 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix: name of sa reference in deployment (#468 )
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.270 (#465 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix: typo (#463 )
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.271 (#469 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.269 (#458 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.270 (#465 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* fix(deps): update module github.com/aws/aws-sdk-go to v1.44.271 (#469 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* feat: Add with-doc flag to enable/disable kubernetes doc
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* use fmt.Sprintf in apireference.go
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
* add --with-doc to readme
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
---------
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Signed-off-by: David Sabatie <david.sabatie@notrenet.com >
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Signed-off-by: golgoth31 <golgoth31@users.noreply.github.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
Co-authored-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Johannes Kleinlercher <johannes@kleinlercher.at >
Co-authored-by: Rakshit Gondwal <98955085+rakshitgondwal@users.noreply.github.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-05-31 10:36:41 +01:00
renovate[bot]
6052a5b4d7
fix(deps): update module github.com/spf13/viper to v1.16.0 ( #472 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-31 10:25:39 +01:00
renovate[bot]
42437f77d1
fix(deps): update module github.com/stretchr/testify to v1.8.4 ( #471 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-31 10:23:57 +01:00
renovate[bot]
523362765f
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.272 ( #473 )
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-31 09:19:31 +01:00
renovate[bot]
1459dd4b8e
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.271 ( #469 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-27 07:59:45 +03:00
Rakshit Gondwal
1b86a6fc89
fix: typo ( #463 )
...
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-05-26 18:49:29 +00:00
renovate[bot]
5cf4fc52da
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.270 ( #465 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-26 18:48:38 +00:00
Johannes Kleinlercher
cd049c9b4b
fix: name of sa reference in deployment ( #468 )
...
Signed-off-by: Johannes Kleinlercher <johannes@kleinlercher.at >
2023-05-26 21:48:01 +03:00
renovate[bot]
86ebc23de7
chore(deps): update google-github-actions/release-please-action digest to 51ee8ae ( #464 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-26 14:22:27 +03:00
github-actions[bot]
a236cc4f28
chore(main): release 0.3.5 ( #452 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-25 12:23:54 +01:00
Krishna Dutt Panchagnula
6eac58d4b0
fix: updated list.go to handle k8sgpt cache list crashing issue ( #455 )
...
* Update list.go
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
* fix: updated list.go to handle k8sgpt cache list crashing issue
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
---------
Signed-off-by: Krishna Dutt Panchagnula <krishnadutt123@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-25 11:21:06 +01:00
renovate[bot]
2994c1c5a7
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.269 ( #458 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-25 11:08:57 +01:00
Matthis
fa4a0757b8
feat: add configuration api route ( #459 )
...
* feat: add configuration api route
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: rename cache methods
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-25 10:42:49 +01:00
renovate[bot]
49e120c28e
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.267 ( #451 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-23 06:44:27 +02:00
github-actions[bot]
6479cbaf91
chore(main): release 0.3.4 ( #448 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-22 06:48:23 +01:00
Peter Pan
36995fd4ed
chore: add more filter releavent UT in analysis_test.go ( #435 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-22 06:40:36 +01:00
renovate[bot]
fe450eb69d
fix(deps): update module github.com/stretchr/testify to v1.8.3 ( #442 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-22 06:38:39 +01:00
renovate[bot]
edda743fa2
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.266 ( #446 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-22 06:27:59 +01:00
github-actions[bot]
57281df53c
chore(main): release 0.3.3 ( #433 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-20 20:39:03 +01:00
Alex Jones
1f767ebd2e
fix: docker version ( #444 )
...
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: s3 based caching
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* fix: missing version info and improvements
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: fixing local build
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-20 20:33:46 +01:00
Matthis
b7dc384547
fix: append coreAnalyzer if active_filter is empty and integration is added ( #441 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-19 11:14:39 +02:00
renovate[bot]
c588e963de
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.265 ( #445 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-19 09:59:48 +01:00
renovate[bot]
d13b91301c
fix(deps): update kubernetes packages to v0.27.2 ( #436 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-19 09:49:37 +01:00
Alex Jones
948dae5e28
feat: caching ( #439 )
...
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: s3 based caching
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: s3 based caching
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* updated README.md
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* update README.md
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* updated README.md
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: region is a must have
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: clarified remove command
* updated remove.go
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: test fmt causing issues will open another pr
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-19 09:32:01 +01:00
Matthis
c659a875fc
feat: rework auth commands ( #438 )
...
* feat: rename "auth new" to "auth add"
This change allows to be more consistent with the rest of the code
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: rework "auth remove" to be more consistent with other remove commands like "filters remove"
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: update documentation
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-18 16:50:29 +02:00
Matthis
f0d3f36f6d
fix: use coreAnalyzer if there are no filters selected and no active_filters ( #432 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-17 09:36:47 +01:00
github-actions[bot]
940a50e851
chore(main): release 0.3.2 ( #426 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-16 21:07:02 +01:00
Camilo Giraldo
06542b4bf1
fix: improve default_prompt ( #406 )
...
* fix: improve default_prompt
Signed-off-by: Camilo Giraldo <camigira@gmail.com >
* fix: specific instructions for prompt output
Signed-off-by: Camilo Giraldo <camigira@gmail.com >
---------
Signed-off-by: Camilo Giraldo <camigira@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-16 20:03:33 +00:00
Matthis
af826d500f
fix: missing validation for backend option in remove command ( #429 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-16 12:54:53 +01:00
Alex Jones
cbe2fb4a4c
feat: added the ability to set a user default AI provider ( #427 )
...
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added the ability to set a user default AI provider
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: added provider to json output
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-16 13:31:19 +02:00
renovate[bot]
032576c728
chore(deps): update reviewdog/action-golangci-lint digest to 79d32f1 ( #425 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-16 09:48:09 +01:00
dependabot[bot]
3099909113
chore(deps): bump github.com/docker/distribution ( #428 )
...
Bumps [github.com/docker/distribution](https://github.com/docker/distribution ) from 2.8.1+incompatible to 2.8.2+incompatible.
- [Release notes](https://github.com/docker/distribution/releases )
- [Commits](https://github.com/docker/distribution/compare/v2.8.1...v2.8.2 )
---
updated-dependencies:
- dependency-name: github.com/docker/distribution
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-16 09:40:11 +01:00
renovate[bot]
097c7912b0
chore(deps): update actions/setup-go digest to fac708d ( #422 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-16 07:27:20 +01:00
github-actions[bot]
493c684eb7
chore(main): release 0.3.1 ( #391 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-15 12:08:40 +01:00
renovate[bot]
a1f98ad78e
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go to v1.3.0-20230515081240-6b5b845c638e.1 ( #397 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-15 11:45:25 +01:00
Peter Pan
e66de8c4ce
chore: gofmt fix and enable in CI ( #414 )
...
* gofmt the files
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
* add UT and goFMT to PR Gate (Github Action for PR)
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
---------
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-15 06:53:59 +01:00
Aris Boutselis
aafe669739
fix: update engine's cmd flag to match the new cli layout ( #400 )
...
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-15 06:46:06 +01:00
Matthis
e5e613acee
feat: filters api ( #407 )
...
* fix: stop execution after matching condition in RunAnalysis()
The commit fixes the issue where the RunAnalysis() function continues execution even after matching a condition. The fix ensures that the execution stops at the end of the corresponding if statement, improving the control flow and preventing unnecessary processing.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: include filters parameter in AnalyzeRequest initialization
The commit introduces a new feature where the filters parameter is included in the initialization of the AnalyzeRequest. This enhancement allows for more specific analysis by specifying filters during the analysis process.
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-14 10:07:43 +01:00
Peter Pan
ed73485d92
chore: make go-lint happy ( #405 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
2023-05-12 12:24:30 +01:00
renovate[bot]
50916f2c93
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go to v1.28.1-20230510140658-54288a50e81c.4 ( #398 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-11 08:54:46 +01:00
renovate[bot]
c1410d1699
fix(deps): update module helm.sh/helm/v3 to v3.12.0 ( #396 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-11 08:09:28 +01:00
Matthis
c5b72eee16
feat: add remove command to remove a backend AI provider ( #395 )
...
* feat: add remove command to remove a backend AI provider
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* Update cmd/auth/remove.go
Co-authored-by: Alex Jones <alex@k8sgpt.ai >
Signed-off-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
* feat: update Long remove command
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Signed-off-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
Co-authored-by: Alex Jones <alex@k8sgpt.ai >
2023-05-11 08:05:25 +01:00
renovate[bot]
8cfb717dc1
fix(deps): update module google.golang.org/grpc to v1.55.0 ( #389 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-09 21:17:38 +01:00
Matthis
639aa12931
feat: add error message if analyze request fail ( #393 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-09 18:08:39 +02:00
Matthis
123b8a66ee
fix: clusterole name ( #392 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-09 14:28:09 +01:00
Matthis
5d4e591f11
feat: use correct port to metrics ( #390 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-09 11:08:18 +02:00
github-actions[bot]
9f494fa884
chore(main): release 0.3.0 ( #379 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-09 08:44:22 +01:00
Matthis
9998e7620d
feat!: migrate api to grpc ( #386 )
...
* feat: migrate api to grpc
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: use status.Code instead grpc.Code in log
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-09 08:36:44 +01:00
Peter Pan
b6b06123db
chore: fix the logo URL ( #384 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-07 20:27:11 +01:00
renovate[bot]
9192b26fab
chore(deps): update anchore/sbom-action action to v0.14.2 ( #387 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-07 20:23:20 +01:00
renovate[bot]
65fff11e58
fix(deps): update module golang.org/x/term to v0.8.0 ( #382 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-05 19:57:47 +01:00
Alexandre Steppé
00aaae86d8
feat: add auth commands ( #369 )
...
* feat: adding commands to auth
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* fix: fixing new backend password
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* fix: fixing missing func in iai
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
* added engine + updated readme
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
---------
Signed-off-by: Alexandre Steppé <alexandre.steppe@gmail.com >
2023-05-05 09:26:31 +01:00
Viet Nguyen
d6bcb96105
docs: update README ( #383 )
...
* fix(deps): update module github.com/sashabaranov/go-openai to v1.9.3 (#378 )
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Viet Nguyen <vietnguyen148@gmail.com >
* docs: update README
Signed-off-by: Viet Nguyen <vietnguyen148@gmail.com >
---------
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Signed-off-by: Viet Nguyen <vietnguyen148@gmail.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-05 09:03:19 +01:00
renovate[bot]
045a06350b
fix(deps): update module github.com/sashabaranov/go-openai to v1.9.3 ( #378 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-04 06:19:14 +02:00
github-actions[bot]
fbc9a3b6e1
chore(main): release 0.2.9 ( #355 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-05-03 15:57:09 +01:00
renovate[bot]
9faa69422d
chore(deps): update golang docker tag to v1.20.4 ( #370 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-03 14:30:33 +00:00
renovate[bot]
8b82d59bd7
fix(deps): update module github.com/sashabaranov/go-openai to v1.9.2 ( #375 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-03 15:30:10 +01:00
renovate[bot]
799869bcef
fix(deps): update module github.com/prometheus/client_golang to v1.15.1 ( #374 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-03 15:29:22 +01:00
Matthis
8b49f708f3
feat: rework output format ( #368 )
...
* feat: remove warning output
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: improves the error output to respect the format
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* feat: rework errorsList
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
* Revert "feat: rework errorsList"
This reverts commit 1a3cfa88ae .
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
---------
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-05-03 14:23:30 +01:00
Xav Paice
e0200e7fa0
fix: update CONTRIBUTING.md Slack URL ( #373 )
...
Signed-off-by: Xav Paice <xav@replicated.com >
2023-05-03 09:58:19 +01:00
Aris Boutselis
d8357ceb94
feat: add azure openai provider ( #309 )
...
* feat: add azure openai provider
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
* feat: validate backend name
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
* fix: remove BaseURL from the mandatory env variables
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
* fix: conflicts
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
* chore: updated logo (#365 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: added changing banners (#367 )
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: add additionalLabels to Service Monitor (#366 )
* feat: add additionalLabels to Service Monitor
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
* feat: update additionalLabels
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
---------
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
* fix: update README file's ai provider section.
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
---------
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
Signed-off-by: Aris Boutselis <arisboutselis08@gmail.com >
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
Co-authored-by: Aris Boutselis <arisboutselis08@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Brad McCoy <bradmccoydev@gmail.com >
2023-05-02 21:28:15 +01:00
Brad McCoy
a89a5cfa2e
feat: add additionalLabels to Service Monitor ( #366 )
...
* feat: add additionalLabels to Service Monitor
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
* feat: update additionalLabels
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
---------
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
2023-05-02 07:58:39 +00:00
Alex Jones
4f6e833d34
chore: added changing banners ( #367 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-02 08:37:29 +01:00
Alex Jones
6431be7771
chore: updated logo ( #365 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-05-01 21:32:44 +02:00
renovate[bot]
766a15b25a
fix(deps): update module github.com/sashabaranov/go-openai to v1.9.1 ( #363 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-01 06:43:26 +02:00
Ikko Eltociear Ashimine
4e146fb152
docs: update README.md ( #356 )
...
Signed-off-by: Ikko Eltociear Ashimine <eltociear@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-29 16:45:19 +02:00
renovate[bot]
b8a5f3bab8
chore(deps): update reviewdog/action-golangci-lint digest to f5d8591 ( #362 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-29 16:44:22 +02:00
Thomas Schuetz
3051b1ca34
docs: remove issue templates to use org wide ones ( #352 )
...
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
2023-04-28 09:44:35 +02:00
Alex Jones
7471b76794
feat: improving readme
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-28 07:29:35 +02:00
Tyler Gillson
5af8178802
feat: add helm chart ( #318 )
...
* feat: add helm chart
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* Address PR feedback (#1 )
* remove K8SGPT_BASEURL
* add default model
* add user-specified Deployment annotations
* remove Values.secret.enabled
---------
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* update chart.appVersion, default labels
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* default image tag to Chart.appVersion
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* release-please annotation for k8sgpt image
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* revert improperly relocated Dockerfile
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* revert changes to docker-build target and actually re-locate Dockerfile
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* Update charts/k8sgpt/Chart.yaml
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
* Update charts/k8sgpt/templates/deployment.yaml
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
---------
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-27 20:47:08 +02:00
renovate[bot]
363294c310
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.13.2 ( #353 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-27 17:11:40 +02:00
github-actions[bot]
80dddc35a4
chore(main): release 0.2.8 ( #335 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-04-27 14:48:55 +02:00
Matthis
dee423519e
fix: use a cache file name with a fixed size. ( #350 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-04-27 11:59:30 +02:00
Thomas Schuetz
3af366788f
chore: add settings ( #351 )
...
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
2023-04-27 10:43:23 +02:00
Anais Urlichs
cf16769a36
merging main ( #347 )
2023-04-26 17:26:44 +02:00
Patrick Pichler
ee85d13d59
fix: take KUBECONFIG env variable into consideration ( #340 )
...
Before, the default value set for the `--kubeconfig` flag prevented the
`KUBECONFIG` env variable to be ever taken into consideration. This
behavior has now been fixed.
If `--kubeconfig` flag is set, it takes precedence over the `KUBECONFIG` env
variable.
fixes #331
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
Co-authored-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-26 12:12:56 +00:00
Harshit Mehta
f8fa35cf9d
docs: fix README ( #345 )
...
Signed-off-by: Harshit Mehta <hdm23061993@gmail.com >
Co-authored-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
2023-04-26 10:29:22 +02:00
Alex Jones
14a3537ce9
chore: update README.md ( #346 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-26 09:36:44 +02:00
Alex Jones
0995e008fe
chore: updated banner ( #343 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-26 08:15:20 +02:00
renovate[bot]
125341bdaa
chore(deps): pin dependencies ( #336 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-26 08:09:40 +02:00
Brad McCoy
aca58064c3
chore: update Apache2 license ( #342 )
...
Signed-off-by: Brad McCoy <bradmccoydev@gmail.com >
2023-04-26 07:54:42 +02:00
Matthis
10f49e6146
Merge pull request #334 from patrickpichler/fix/various-linter-reported-issues
...
fix: various linter reported issues
2023-04-25 23:19:29 +02:00
Patrick Pichler
c29860d418
fix: remove dead code
...
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 22:31:24 +02:00
Patrick Pichler
947e94f353
fix: use correct result slice for cronjob analyzer
...
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 22:31:24 +02:00
Patrick Pichler
8adde6bf87
fix: report failure if network policy doesn't match any pods
...
Before, there was no failure reported by the netpol analyzer, if the
matcher on the policy doesn't match any pods.
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 22:31:24 +02:00
Alex Jones
d4dcc7a399
chore: logo update ( #339 )
...
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo again
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* chore: updated logo
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-25 22:26:40 +02:00
Aris Boutselis
78ee280e73
Merge pull request #337 from arbreezy/feat/localai-passw
...
feat: don't ask for password if backend is localai
2023-04-25 21:04:22 +03:00
Aris Boutselis
74d9a750ca
feat: don't ask for password if backend is localai
...
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-04-25 20:45:04 +03:00
Aris Boutselis
c365c53332
Merge pull request #269 from mudler/local_models
...
feat: running local models
2023-04-25 20:27:17 +03:00
Matthis
9f092f3928
Merge branch 'main' into local_models
2023-04-25 19:22:46 +02:00
Patrick Pichler
252c734310
feat: introduce linter to run on PR builds ( #333 )
...
In order to catch a variaty of small and quick to happen mistakes, there
is now an additional action in place which runs a linter on the PR
content.
fixes #330
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
Co-authored-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 14:02:47 +02:00
github-actions[bot]
db4a88e409
chore(main): release 0.2.7 ( #329 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-04-25 11:10:53 +02:00
Patrick Pichler
2616220935
fix: remove pointer to loop variable when searching the latest event to analyze ( #328 )
...
Having a pointer to a range variable will always yield the latest value
the loop sees. This leads to subtle bugs. To prevent this from
happening, the range variable was assigned to a temp variable, which is
then referenced as a pointer.
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
Co-authored-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 11:06:45 +02:00
Ettore Di Giacinto
30de25166d
Merge branch 'main' into local_models
2023-04-25 10:55:29 +02:00
github-actions[bot]
3d11e12963
chore(main): release 0.2.6 ( #327 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-04-25 10:44:08 +02:00
Patrick Pichler
692cd06c38
fix: explicitly pass in filter to async analysis go routine ( #326 )
...
Before the filter inside the func literal was capturing the value from
the outer loop. This is a subtle mistake, since in combination with
running the function literal as go routine, the value of filter could
have already changed at invocation time.
To fix this, the filter is now passed in as an argument to the func
literal.
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
Co-authored-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-25 10:35:39 +02:00
github-actions[bot]
5383d2e858
chore(main): release 0.2.5 ( #302 )
2023-04-25 10:21:45 +02:00
Ettore Di Giacinto
a1aaa0a2d1
Merge branch 'main' into local_models
2023-04-25 09:56:04 +02:00
Matthis
5d6f3c31b9
Merge pull request #324 from patrickpichler/feature/323/store-cache
...
feat: use OS conform path for storing cached results
2023-04-25 09:48:39 +02:00
Ettore Di Giacinto
2a27344e9c
Merge branch 'main' into local_models
2023-04-25 00:08:58 +02:00
mudler
3f769bf0e0
docs: simplify, link to an e2e example
...
Signed-off-by: mudler <mudler@mocaccino.org >
2023-04-24 23:48:42 +02:00
Patrick Pichler
7eddb8f4a6
feat: use OS conform path for storing cached results
...
Instead of storing cached values in the config yaml, they are now stored
under these OS specific locations:
* Linux: `~/.cache/k8sgpt`
* MacOS: `~/Library/Caches`
* Windows: `%LocalAppData%\cache`
Additionally a `Cache` package and interface has been introduced.
Currently there are two implementations:
* Noop - Doesn't do anything
* FileBased - Stores data in files under the locations listed above
fixes #323
Signed-off-by: Patrick Pichler <git@patrickpichler.dev >
2023-04-24 19:07:54 +02:00
Alex Jones
c3cc413e7f
feat: async calls ( #311 )
...
* feat: async calls
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added concurrency settings
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
* feat: added in ability to set max concurrency
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
---------
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
2023-04-24 14:04:37 +00:00
Thomas Schuetz
2391603075
feat: add subproject group to CODEOWNERS ( #322 )
...
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
2023-04-24 16:02:42 +02:00
mudler
9b914fbc0b
feat: add LocalAI backend
...
Signed-off-by: mudler <mudler@mocaccino.org >
2023-04-24 10:09:30 +02:00
mudler
110cb54a8a
docs: add instructions to run local models
...
Signed-off-by: mudler <mudler@mocaccino.org >
2023-04-24 10:09:27 +02:00
renovate[bot]
e7f74db6e5
fix(deps): update module github.com/aquasecurity/trivy-operator to v0.13.1 ( #321 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-23 21:03:29 +02:00
Matthis
5aaeb77a48
Merge pull request #320 from matthisholleville/doc/update-documentation
...
feat: add serve & integration to README
2023-04-23 17:50:55 +02:00
Matthis
751010f25b
Merge branch 'main' into doc/update-documentation
2023-04-23 17:44:09 +02:00
Matthis Holleville
a65ee7fc09
feat: add serve & integration to README
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-04-23 17:43:46 +02:00
Nuno Adrego
ff799825cf
feat: add k8sgpt grafana dashboard ( #316 )
...
Signed-off-by: Nuno Adrego <55922671+nunoadrego@users.noreply.github.com >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-23 16:33:57 +01:00
Ettore Di Giacinto
cf797a6eb6
feat: allow to set a baseurl ( #310 )
...
* feat: allow to set a baseURL for OpenAI providers
This allows to run local models that have a compatible OpenAI API, or
for instance use a proxy.
Signed-off-by: mudler <mudler@mocaccino.org >
* feat: allow to set baseURL in the auth subcommand
Signed-off-by: mudler <mudler@mocaccino.org >
---------
Signed-off-by: mudler <mudler@mocaccino.org >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
Co-authored-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
2023-04-21 19:04:34 +00:00
Xinwei Xiong
754bf917e1
feat: the overall optimization and architecture design of the makefile are made ( #317 )
...
* feature(makefile): The overall optimization and architecture design of the Makefile are made
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com >
* feat: the overall optimization and architecture design of the makefile are made
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com >
---------
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com >
Co-authored-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-21 20:02:45 +01:00
Thomas Schuetz
d0f7a1105f
chore: change license to Apache-2 ( #313 )
...
* chore: change license to Apache-2
Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu >
2023-04-21 19:46:31 +02:00
Alex Jones
95305438b3
Delete demo ( #315 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-21 13:19:39 +01:00
Alex Jones
ddd830cc56
feat: update readme ( #314 )
...
No longer necessary to draw distinction between k8sgpt and kubectl ai. Also removed milestones
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-21 13:18:58 +01:00
Peter Pan
0a4ed0d907
chore: add serviceMonitor in sample yaml ( #304 )
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
Co-authored-by: Thomas Schuetz <38893055+thschue@users.noreply.github.com >
2023-04-21 10:10:39 +01:00
Aris Boutselis
2102f06585
Merge pull request #308 from arbreezy/feat/config-interface
...
feat: add configuration interface to support customer providers
2023-04-20 16:31:56 +01:00
Aris Boutselis
84a3cc05fb
feat: add configuration interface to support customer providers
...
Signed-off-by: Aris Boutselis <aris.boutselis@senseon.io >
2023-04-20 16:26:12 +01:00
Matthis
bd4ab0e589
Merge pull request #306 from matthisholleville/feat/analyze-error-handling
...
feat: modify analyze error handling
2023-04-20 15:53:52 +02:00
Matthis
7a7c6cf157
Merge branch 'main' into feat/analyze-error-handling
2023-04-20 15:09:52 +02:00
Matthis
fa087ff559
feat: modify error handling to return a list of errors to display to the user at the end of analysis without blocking it if an error is detected (e.g., version of an object is not available on user's cluster)
...
Signed-off-by: Matthis <matthish29@gmail.com >
2023-04-20 15:09:13 +02:00
Matthis
3ef6156d55
Merge pull request #300 from panpan0000/main
...
chore: analyze Pod ReadinessProbe faliure
2023-04-20 11:17:27 +02:00
Matthis
d50ca29a2c
Merge branch 'main' into main
2023-04-20 10:52:39 +02:00
renovate[bot]
df2ed4185b
fix(deps): update module github.com/prometheus/client_golang to v1.15.0 ( #303 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-20 10:47:26 +02:00
Peter Pan
3c7e0bba1d
chore: analyze Pod ReadinessProbe faliure
...
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io >
2023-04-20 03:52:47 -04:00
renovate[bot]
0472c363a4
fix(deps): update module github.com/sashabaranov/go-openai to v1.9.0 ( #298 )
...
Signed-off-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-20 07:36:07 +02:00
github-actions[bot]
03228d8e6d
chore(main): release 0.2.4 ( #292 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-04-18 16:33:43 +02:00
Rakshit Gondwal
71732037fa
feat: improve HPA analyzer to check ScaleTargetRef resources ( #283 )
...
* feat: improve HPA analyzer to check ScaleTargetRef resources
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* feat: modify tests
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* feat: improve all ScaleTargetRef to check for resources
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* test: add test cases for all ScaleTargetRef types
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* refactor: use interface to avoid dupplication
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
* test: add test case for NoResourceConfiguredForScaleTargetRef
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
---------
Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com >
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
Co-authored-by: Matthis <99146727+matthisholleville@users.noreply.github.com >
2023-04-18 15:27:06 +02:00
Aris Boutselis
a962d13654
Merge pull request #296 from matthisholleville/fix/language-toggle-bug
...
fix: resolve language toggle bug (issue #294 )
2023-04-18 10:17:10 +01:00
Matthis
0313627848
fix: resolve language toggle bug (issue #294 )
...
Signed-off-by: Matthis <matthish29@gmail.com >
2023-04-18 06:14:11 +02:00
Matthis
3d684a2af7
fix: deployment/cronjob namespace filtering ( #290 )
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-04-17 17:37:19 +02:00
Matthis
af8b350520
fix: ensure parent directories are created in EnsureDirExists function ( #293 )
2023-04-17 14:38:43 +01:00
Matthis
3c4bc1a92c
Merge pull request #287 from matthisholleville/feature/server-logs
...
feat: init logging middleware on server mode
2023-04-17 11:53:12 +02:00
Matthis
5f3244a5d4
Merge branch 'main' into feature/server-logs
2023-04-17 11:46:58 +02:00
Alex Jones
222e0873c0
Update README.md ( #288 )
...
Signed-off-by: Alex Jones <alexsimonjones@gmail.com >
2023-04-17 06:49:45 +01:00
Matthis Holleville
6742410025
feat: init logging middleware on server mode
...
Signed-off-by: Matthis Holleville <matthish29@gmail.com >
2023-04-16 23:40:19 +02:00