-
-
Notifications
You must be signed in to change notification settings - Fork 8
v0.0.17 #27
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
v0.0.17 #27
Conversation
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
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.42.0 to 0.45.0. - [Commits](golang/crypto@v0.42.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.45.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
…rg/x/crypto-0.45.0 chore(deps): bump golang.org/x/crypto from 0.42.0 to 0.45.0
…s and remove ARM64 Dockerfile
Refactor release workflow and consolidate Dockerfiles
refactor: streamline GitHub Actions workflows and remove obsolete files
…check Previously, containers without a healthcheck definition were incorrectly reported as "unhealthy". This caused confusion in the Coolify UI, showing containers as unhealthy when they were actually functioning correctly. The Docker API returns no Health field for containers without healthchecks. When this field is nil, Sentinel should report the health status as "unknown" instead of "unhealthy". This change updates pkg/push/push.go:154 to default to "unknown" instead of "unhealthy", matching the behavior of Coolify's SSH-based status checks. Expected behavior after fix: - Containers WITH healthcheck: Report actual status (healthy/unhealthy/starting) - Containers WITHOUT healthcheck: Report "unknown" - Containers with nil State: Continue to report "unknown" (edge case) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
- Update version from 0.0.15 to 0.0.17 - Add startup log message showing Sentinel version on startup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
fix: default to unknown health status for containers without healthcheck
- Create API.md with detailed endpoint documentation, examples, and error responses - Add openapi.yaml OpenAPI 3.0 specification for interactive API docs - Enhance README.md with quick start, configuration, and deployment examples 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Add comprehensive API documentation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant improvements to the build, deployment, and documentation processes for the Sentinel project. The main highlights are a unified and modernized Docker build workflow supporting multiple architectures, enhanced documentation for onboarding and usage, and various code and dependency updates for maintainability and transparency.
Build and CI/CD Workflow Modernization:
release.yamlandrelease-next.yaml) to use a unified matrix-basedbuild-pushjob for bothamd64andaarch64(ARM64) architectures, removing duplicated job definitions and enabling easier maintenance. The manifest creation step was updated to use the correct registries and tagging conventions, and the workflows now use the latest action versions and runners. [1] [2] [3] [4] [5] [6]GOARCHenvironment variable, enabling a singleDockerfileto build images for multiple platforms. The now-redundantDockerfile.arm64has been removed. [1] [2]build.shfor quick and customizable Docker image builds, improving developer experience.Documentation Enhancements:
README.mdto provide detailed feature descriptions, quick start guides, configuration instructions, API reference, architecture overview, development and deployment examples, and support information, making it easier for new users and contributors to get started.Code and Dependency Updates:
pkg/config/config.goto0.0.17, reflecting the new release.