From 51b5a982d9a041118f44ff4453a2a9335a95797d Mon Sep 17 00:00:00 2001 From: Ciaran Roche Date: Fri, 15 May 2026 16:31:22 +0100 Subject: [PATCH] HYPERFLEET-1097 - docs: update vendor label to "Red Hat, Inc." EC requires vendor="Red Hat, Inc." not "Red Hat". Update the container image standard and Dockerfile template to match. Co-Authored-By: Claude Opus 4.6 (1M context) --- hyperfleet/standards/container-image-standard.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hyperfleet/standards/container-image-standard.md b/hyperfleet/standards/container-image-standard.md index 74bab1e0..904ac119 100644 --- a/hyperfleet/standards/container-image-standard.md +++ b/hyperfleet/standards/container-image-standard.md @@ -220,7 +220,7 @@ All production images **MUST** include standardized OCI labels. Place the `LABEL ```dockerfile ARG APP_VERSION="0.0.0-dev" LABEL name="" \ - vendor="Red Hat" \ + vendor="Red Hat, Inc." \ version="${APP_VERSION}" \ summary="" \ description="" @@ -231,7 +231,7 @@ LABEL name="" \ | Label | Description | Example | |-------|-------------|---------| | `name` | Service name (matches image name) | `hyperfleet-sentinel` | -| `vendor` | Organization | `Red Hat` | +| `vendor` | Organization | `Red Hat, Inc.` | | `version` | Semantic version or git-derived version | `abc1234` | | `summary` | One-line description | `HyperFleet Sentinel - Resource polling and event publishing service` | | `description` | Detailed description of the service | `Watches HyperFleet API resources and publishes reconciliation events to message brokers` | @@ -312,7 +312,7 @@ ENTRYPOINT ["/app/"] ARG APP_VERSION="0.0.0-dev" LABEL name="" \ - vendor="Red Hat" \ + vendor="Red Hat, Inc." \ version="${APP_VERSION}" \ summary="" \ description=""