-
Notifications
You must be signed in to change notification settings - Fork 0
BOM and Compatibility Matrix Implementation #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
08f4bd1
feat: add comprehensive BOM and SBOM generation for releases
8b5c04e
feat: add Kubernetes and Go versions to BOM metadata
6e07424
feat: add Splunk Enterprise version to BOM metadata
5e52ffd
feat: add compatibility matrix and Splunk Operator version tracking
7e2397a
feat: update Splunk Enterprise to version 10.2.0
51f6130
fix: address Copilot code review feedback
100c638
docs: add comprehensive BOM and compatibility matrix usage guides
cb16bf8
removing bill of material implemenation doc
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,251 @@ | ||||||||||||||||||||
| apiVersion: operator.splunk.com/v1 | ||||||||||||||||||||
| kind: CompatibilityMatrix | ||||||||||||||||||||
| metadata: | ||||||||||||||||||||
| name: splunk-ai-operator | ||||||||||||||||||||
| version: 0.1.0 # Operator version this matrix applies to | ||||||||||||||||||||
| lastUpdated: "2025-11-18" | ||||||||||||||||||||
| description: "Compatibility matrix for Splunk AI Operator - defines supported versions of platform dependencies and managed components" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| operator: | ||||||||||||||||||||
| name: splunk-ai-operator | ||||||||||||||||||||
| version: 0.1.0 | ||||||||||||||||||||
|
|
||||||||||||||||||||
| # Platform Requirements | ||||||||||||||||||||
| platform: | ||||||||||||||||||||
| kubernetes: | ||||||||||||||||||||
| minVersion: "1.28.0" | ||||||||||||||||||||
| maxVersion: "1.31.99" | ||||||||||||||||||||
| tested: # Versions explicitly tested | ||||||||||||||||||||
| - "1.28" | ||||||||||||||||||||
| - "1.29" | ||||||||||||||||||||
| - "1.30" | ||||||||||||||||||||
| - "1.31" | ||||||||||||||||||||
| notes: "Operator tested on EKS, AKS, GKE, and vanilla Kubernetes" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| splunkOperatorForKubernetes: # SOK | ||||||||||||||||||||
| version: "3.0.0" | ||||||||||||||||||||
| minVersion: "3.0.0" | ||||||||||||||||||||
| maxVersion: "3.99.99" | ||||||||||||||||||||
| optional: true | ||||||||||||||||||||
| url: "https://github.com/splunk/splunk-operator" | ||||||||||||||||||||
| notes: "Splunk Operator for Kubernetes - manages Splunk Enterprise deployments" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| go: | ||||||||||||||||||||
| version: "1.23.0" | ||||||||||||||||||||
| notes: "Go version used to build the operator" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| splunkEnterprise: | ||||||||||||||||||||
| minVersion: "9.2.0" | ||||||||||||||||||||
| maxVersion: "10.2.99" | ||||||||||||||||||||
| recommended: "10.2.0" | ||||||||||||||||||||
| notes: "Operator can manage Splunk Enterprise instances" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| # Required External Dependencies | ||||||||||||||||||||
| requiredServices: | ||||||||||||||||||||
| certManager: | ||||||||||||||||||||
| name: cert-manager | ||||||||||||||||||||
| minVersion: "1.13.0" | ||||||||||||||||||||
| recommended: "1.14.0" | ||||||||||||||||||||
| required: true | ||||||||||||||||||||
| url: "https://cert-manager.io/" | ||||||||||||||||||||
| notes: "Required for TLS certificate management" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| vaultInjector: | ||||||||||||||||||||
| name: vault-injector | ||||||||||||||||||||
| minVersion: "0.25.0" | ||||||||||||||||||||
| recommended: "0.26.0" | ||||||||||||||||||||
| required: false | ||||||||||||||||||||
| url: "https://www.vaultproject.io/" | ||||||||||||||||||||
| notes: "Optional - for secrets management integration" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| # Managed Components (what the operator deploys and manages) | ||||||||||||||||||||
| managedComponents: | ||||||||||||||||||||
| ray: | ||||||||||||||||||||
| displayName: "Ray ML Runtime" | ||||||||||||||||||||
| description: "Distributed ML runtime for AI workloads" | ||||||||||||||||||||
| url: "https://www.ray.io/" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "2.44.0" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| releaseDate: "2024-11" | ||||||||||||||||||||
| images: | ||||||||||||||||||||
| head: "667741767953.dkr.ecr.us-west-2.amazonaws.com/ml-platform/ray/ray-head:build-5" | ||||||||||||||||||||
| worker: "667741767953.dkr.ecr.us-west-2.amazonaws.com/ml-platform/ray/ray-worker-gpu:build-6" | ||||||||||||||||||||
| resources: | ||||||||||||||||||||
| head: | ||||||||||||||||||||
| cpu: "2" | ||||||||||||||||||||
| memory: "8Gi" | ||||||||||||||||||||
| worker: | ||||||||||||||||||||
| cpu: "4" | ||||||||||||||||||||
| memory: "16Gi" | ||||||||||||||||||||
| gpu: "1" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| weaviate: | ||||||||||||||||||||
| displayName: "Weaviate Vector Database" | ||||||||||||||||||||
| description: "Vector database for AI/ML applications" | ||||||||||||||||||||
| url: "https://weaviate.io/" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "1.28.0" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| releaseDate: "2024-10" | ||||||||||||||||||||
| image: "semitechnologies/weaviate:stable-v1.28-007846a" | ||||||||||||||||||||
| resources: | ||||||||||||||||||||
| cpu: "2" | ||||||||||||||||||||
| memory: "8Gi" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| splunkEnterprise: | ||||||||||||||||||||
| displayName: "Splunk Enterprise" | ||||||||||||||||||||
| description: "Data platform for security and observability" | ||||||||||||||||||||
| url: "https://www.splunk.com/" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "9.2.3" | ||||||||||||||||||||
| status: supported | ||||||||||||||||||||
| releaseDate: "2024-Q2" | ||||||||||||||||||||
| image: "splunk/splunk:9.2.3" | ||||||||||||||||||||
| notes: "Minimum supported version" | ||||||||||||||||||||
| - version: "9.4.1" | ||||||||||||||||||||
| status: supported | ||||||||||||||||||||
| releaseDate: "2024-Q3" | ||||||||||||||||||||
| image: "splunk/splunk:9.4.1" | ||||||||||||||||||||
| notes: "Previous stable version" | ||||||||||||||||||||
| - version: "10.2.0" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| releaseDate: "2024-Q4" | ||||||||||||||||||||
| image: "splunk/splunk:10.2.0" | ||||||||||||||||||||
| notes: "Latest tested and recommended version" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| saiaApi: | ||||||||||||||||||||
| displayName: "SAIA API Service" | ||||||||||||||||||||
| description: "Splunk AI API service for AI operations" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "build-1" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| image: "667741767953.dkr.ecr.us-west-2.amazonaws.com/ml-platform/saia/saia-api:build-1" | ||||||||||||||||||||
| resources: | ||||||||||||||||||||
| cpu: "1" | ||||||||||||||||||||
| memory: "2Gi" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| saiaDataLoader: | ||||||||||||||||||||
| displayName: "SAIA Data Loader" | ||||||||||||||||||||
| description: "Post-installation data loading hooks" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "0.0.5" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| image: "667741767953.dkr.ecr.us-west-2.amazonaws.com/vivek/ml-platform/saia/ai-helm-post-hook:0.0.5" | ||||||||||||||||||||
| notes: "Post-install hook for data initialization" | ||||||||||||||||||||
|
|
||||||||||||||||||||
| fluentBit: | ||||||||||||||||||||
| displayName: "Fluent Bit" | ||||||||||||||||||||
| description: "Lightweight log processor and forwarder" | ||||||||||||||||||||
| url: "https://fluentbit.io/" | ||||||||||||||||||||
| versions: | ||||||||||||||||||||
| - version: "1.9.6" | ||||||||||||||||||||
| status: recommended | ||||||||||||||||||||
| releaseDate: "2023-Q3" | ||||||||||||||||||||
| image: "fluent/fluent-bit:1.9.6" | ||||||||||||||||||||
|
Comment on lines
+142
to
+145
|
||||||||||||||||||||
| - version: "1.9.6" | |
| status: recommended | |
| releaseDate: "2023-Q3" | |
| image: "fluent/fluent-bit:1.9.6" | |
| - version: "2.2.2" | |
| status: recommended | |
| releaseDate: "2024-Q2" | |
| image: "fluent/fluent-bit:2.2.2" | |
| notes: "Latest tested and recommended version for security and stability" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.