-
Notifications
You must be signed in to change notification settings - Fork 16
Release 1.1.1 #74
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
Release 1.1.1 #74
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0b21cd0
Update README.md
AmsterGet cd800af
Update README.md
AmsterGet 47d6f56
Add Helm chart for ReportPortal MCP Server with deployment configurat…
hlebkanonik 1fd3253
Enhance Helm chart for ReportPortal MCP Server by adding liveness and…
hlebkanonik b70cb10
Update CI workflows to include platform outputs for multi-architectur…
hlebkanonik accc027
Update docker-compose.yaml to use environment variable for RP_HOST an…
hlebkanonik 379d0ba
Merge pull request #68 from reportportal/feature/helm-chart
hlebkanonik 8500c61
MCP Server. Release configuration. Add docker image for arm64
AleksandrParamonoff cb1bba4
EPMRPP-110466 || MCP Server. Tools. Fix input parameter for the strin…
AleksandrParamonoff 0033076
EPMRPP-110531 || MCP Server. Deploy. Move docker image build to the r…
AleksandrParamonoff 1f15a01
Update docker-compose.yaml
AmsterGet 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,39 @@ | ||
| name: Lint Helm Chart | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - develop | ||
| - 'rc/**' | ||
| - 'hotfix/**' | ||
| paths: | ||
| - 'helm-charts/**' | ||
| - '.github/workflows/helm-lint.yaml' | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - develop | ||
| - 'rc/**' | ||
| - 'hotfix/**' | ||
| paths: | ||
| - 'helm-charts/**' | ||
| - '.github/workflows/helm-lint.yaml' | ||
|
|
||
| jobs: | ||
| lint: | ||
| name: Lint Helm Chart | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Helm | ||
| uses: azure/[email protected] | ||
|
|
||
| - name: Lint Helm Chart | ||
| run: | | ||
| helm lint helm-charts/reportportal-mcp-server | ||
| helm template helm-charts/reportportal-mcp-server --debug | ||
|
|
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 |
|---|---|---|
|
|
@@ -47,19 +47,58 @@ jobs: | |
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: stable | ||
|
|
||
| # Step 4: Set up QEMU for cross-platform Docker builds | ||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@v3 | ||
|
|
||
| # Step 5: Set up Docker Buildx | ||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
||
| - name: Log in to Docker Hub | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| username: ${{ secrets.REGESTRY_USERNAME }} | ||
| password: ${{ secrets.REGESTRY_PASSWORD }} | ||
|
|
||
| # Step 4: Run GoReleaser to build and publish release artifacts | ||
| # Step 6: Run GoReleaser to build and publish release artifacts | ||
| - name: Run GoReleaser | ||
| uses: goreleaser/goreleaser-action@v6 | ||
| with: | ||
| distribution: goreleaser | ||
| version: latest | ||
| args: release --clean | ||
| env: | ||
| REPOSITORY_NAME: reportportal/mcp-server # Docker repository name | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication | ||
|
|
||
| # Step 7: Generate build timestamp | ||
| - name: Generate build timestamp | ||
| id: build_date | ||
| run: echo "timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_OUTPUT | ||
|
|
||
| # Step 8: Build and push multi-arch Docker image using Buildx | ||
| - name: Build and push Docker image | ||
| uses: docker/build-push-action@v6 | ||
| with: | ||
| context: . | ||
| file: ./release.dockerfile | ||
| platforms: linux/amd64,linux/arm64 | ||
| push: true | ||
| tags: | | ||
| reportportal/mcp-server:${{ github.event.inputs.version }} | ||
| reportportal/mcp-server:latest | ||
| build-args: | | ||
| VERSION=${{ github.event.inputs.version }} | ||
| COMMIT=${{ github.sha }} | ||
| BUILD_DATE=${{ steps.build_date.outputs.timestamp }} | ||
| labels: | | ||
| io.artifacthub.package.readme-url=https://raw.githubusercontent.com/reportportal/reportportal-mcp-server/main/README.md | ||
| io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/17636279 | ||
| io.artifacthub.package.maintainers=[{"name":"Andrei Varabyeu","email":"[email protected]"},{"name":"Aleksandr Paramonov","email":"[email protected]"}] | ||
| org.opencontainers.image.description=ReportPortal MCP Server | ||
| org.opencontainers.image.name=reportportal-mcp-server | ||
| org.opencontainers.image.revision=${{ github.sha }} | ||
| org.opencontainers.image.version=${{ github.event.inputs.version }} | ||
| org.opencontainers.image.source=https://github.com/reportportal/reportportal-mcp-server | ||
| org.opencontainers.image.created=${{ steps.build_date.outputs.timestamp }} | ||
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 |
|---|---|---|
|
|
@@ -26,24 +26,8 @@ archives: | |
| - LICENSE | ||
| - README.md | ||
|
|
||
| dockers: | ||
| - image_templates: | ||
| - "{{ .Env.REPOSITORY_NAME }}:{{ .Version }}" | ||
| - "{{ .Env.REPOSITORY_NAME }}:latest" | ||
| dockerfile: release.dockerfile | ||
| build_flag_templates: | ||
| - "--platform=linux/amd64" | ||
| - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/reportportal/reportportal-mcp-server/main/README.md" | ||
| - "--label=io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/17636279" | ||
| - '--label=io.artifacthub.package.maintainers=[{"name":"Andrei Varabyeu","email":"[email protected]"},{"name":"Aleksandr Paramonov","email":"[email protected]"}]' | ||
| - "--label=org.opencontainers.image.description=ReportPortal MCP Server" | ||
| - "--label=org.opencontainers.image.created={{.Date}}" | ||
| - "--label=org.opencontainers.image.name={{.ProjectName}}" | ||
| - "--label=org.opencontainers.image.revision={{.FullCommit}}" | ||
| - "--label=org.opencontainers.image.version={{.Version}}" | ||
| - "--label=org.opencontainers.image.source={{.GitURL}}" | ||
| goos: linux | ||
| goarch: amd64 | ||
| # Docker images are built separately using Docker Buildx in the workflow | ||
| # This creates clean multi-arch images without intermediate architecture-specific tags | ||
|
|
||
|
|
||
| ## Uncomment the following sections if you want to create Homebrew Casks or NFPMS (Deb/RPM packages). | ||
|
|
||
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,10 @@ | ||
| services: | ||
| mcp-server: | ||
| image: reportportal/mcp-server:latest | ||
AleksandrParamonoff marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| container_name: reportportal-mcp-server | ||
| restart: always | ||
| environment: | ||
| MCP_MODE: http | ||
| RP_HOST: ${RP_HOST:-https://your-reportportal-instance.com} | ||
| ports: | ||
| - 8085:8080 | ||
AleksandrParamonoff marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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,24 @@ | ||
| # Patterns to ignore when building packages. | ||
| # This supports shell glob matching, relative path matching, and | ||
| # negation (prefixed with !). Only one pattern per line. | ||
| .DS_Store | ||
| # Common VCS dirs | ||
| .git/ | ||
| .gitignore | ||
| .bzr/ | ||
| .bzrignore | ||
| .hg/ | ||
| .hgignore | ||
| .svn/ | ||
| # Common backup files | ||
| *.swp | ||
| *.bak | ||
| *.tmp | ||
| *.orig | ||
| *~ | ||
| # Various IDEs | ||
| .project | ||
| .idea/ | ||
| *.tmproj | ||
| .vscode/ | ||
|
|
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,7 @@ | ||
| apiVersion: v2 | ||
| name: reportportal-mcp-server | ||
| description: A Helm chart for ReportPortal MCP Server | ||
| type: application | ||
| version: 0.1.0 | ||
| appVersion: "latest" | ||
|
|
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.