Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.15] - 2026-05-15

### Added

- `channelGroup` optional field to `ReleaseSpec` in GCP cluster model (GCP-696)

## [1.0.14] - 2026-05-15

### Removed
Expand Down Expand Up @@ -138,7 +144,8 @@ First official stable release of the HyperFleet API specification.
- Interactive API documentation

<!-- Links -->
[Unreleased]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.14...HEAD
[Unreleased]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.15...HEAD
[1.0.15]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.14...v1.0.15
[1.0.14]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.13...v1.0.14
[1.0.13]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.12...v1.0.13
[1.0.12]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec/compare/v1.0.11...v1.0.12
Expand Down
2 changes: 1 addition & 1 deletion aliases.tsp
2 changes: 1 addition & 1 deletion main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using OpenAPI;
*/
@service(#{ title: "HyperFleet API" })
@info(#{
version: "1.0.14",
version: "1.0.15",
contact: #{
name: "HyperFleet Team",
url: "https://github.com/openshift-hyperfleet",
Expand Down
10 changes: 6 additions & 4 deletions models-gcp/cluster/example_cluster.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ const exampleCluster: Cluster = #{
},
},
release: #{
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0",
version: "4.14.0",
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4",
version: "4.22.0-ec.4",
channelGroup: "candidate",
},
networking: #{
clusterNetwork: #[ #{ cidr: "10.10.0.0/16", hostPrefix: 24 } ],
Expand Down Expand Up @@ -100,8 +101,9 @@ const exampleDeletedCluster: Cluster = #{
},
},
release: #{
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0",
version: "4.14.0",
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4",
version: "4.22.0-ec.4",
channelGroup: "candidate",
},
networking: #{
clusterNetwork: #[ #{ cidr: "10.10.0.0/16", hostPrefix: 24 } ],
Expand Down
5 changes: 3 additions & 2 deletions models-gcp/cluster/example_patch.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ const exampleClusterPatchRequest: ClusterPatchRequest = #{
},
},
release: #{
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0",
version: "4.14.0",
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4",
version: "4.22.0-ec.4",
channelGroup: "candidate",
},
networking: #{
clusterNetwork: #[#{ cidr: "10.10.0.0/16", hostPrefix: 24 }],
Expand Down
5 changes: 3 additions & 2 deletions models-gcp/cluster/example_post.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ const exampleClusterCreateRequest: ClusterCreateRequest = #{
},
},
release: #{
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0",
version: "4.14.0",
image: "registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4",
version: "4.22.0-ec.4",
channelGroup: "candidate",
},
networking: #{
clusterNetwork: #[#{ cidr: "10.10.0.0/16", hostPrefix: 24 }],
Expand Down
1 change: 1 addition & 0 deletions models-gcp/cluster/model.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ model ClusterPlatform {
model ReleaseSpec {
image?: string;
version?: string;
channelGroup?: string;
}

model NetworkingSpec {
Expand Down
2 changes: 1 addition & 1 deletion schemas/core/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
info:
title: HyperFleet API
version: 1.0.14
version: 1.0.15
contact:
name: HyperFleet Team
url: https://github.com/openshift-hyperfleet
Expand Down
2 changes: 1 addition & 1 deletion schemas/core/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ info:
name: Apache 2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0'
title: HyperFleet API
version: 1.0.14
version: 1.0.15
host: hyperfleet.redhat.com
basePath: /
schemes:
Expand Down
24 changes: 15 additions & 9 deletions schemas/gcp/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
info:
title: HyperFleet API
version: 1.0.14
version: 1.0.15
contact:
name: HyperFleet Team
url: https://github.com/openshift-hyperfleet
Expand Down Expand Up @@ -194,8 +194,9 @@ paths:
network: network-123
subnet: subnet-123
release:
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0
version: 4.14.0
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
channelGroup: candidate
networking:
clusterNetwork:
- cidr: 10.10.0.0/16
Expand Down Expand Up @@ -995,8 +996,9 @@ components:
network: network-123
subnet: subnet-123
release:
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0
version: 4.14.0
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
channelGroup: candidate
networking:
clusterNetwork:
- cidr: 10.10.0.0/16
Expand Down Expand Up @@ -1088,8 +1090,9 @@ components:
network: network-123
subnet: subnet-123
release:
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0
version: 4.14.0
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
channelGroup: candidate
networking:
clusterNetwork:
- cidr: 10.10.0.0/16
Expand Down Expand Up @@ -1149,8 +1152,9 @@ components:
network: network-123
subnet: subnet-123
release:
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0
version: 4.14.0
image: registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
channelGroup: candidate
networking:
clusterNetwork:
- cidr: 10.10.0.0/16
Expand Down Expand Up @@ -1753,6 +1757,8 @@ components:
type: string
version:
type: string
channelGroup:
type: string
ResourceCondition:
type: object
required:
Expand Down
27 changes: 18 additions & 9 deletions schemas/gcp/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ info:
name: Apache 2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0'
title: HyperFleet API
version: 1.0.14
version: 1.0.15
host: hyperfleet.redhat.com
basePath: /
schemes:
Expand Down Expand Up @@ -170,9 +170,10 @@ paths:
zone: us-central1-a
type: gcp
release:
channelGroup: candidate
image: >-
registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0
version: 4.14.0
registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
status:
conditions:
- created_time: '2021-01-01T10:00:00Z'
Expand Down Expand Up @@ -1069,8 +1070,10 @@ definitions:
zone: us-central1-a
type: gcp
release:
image: 'registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0'
version: 4.14.0
channelGroup: candidate
image: >-
registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
status:
conditions:
- created_time: '2021-01-01T10:00:00Z'
Expand Down Expand Up @@ -1204,8 +1207,10 @@ definitions:
zone: us-central1-a
type: gcp
release:
image: 'registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0'
version: 4.14.0
channelGroup: candidate
image: >-
registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
properties:
href:
description: Resource URI
Expand Down Expand Up @@ -1287,8 +1292,10 @@ definitions:
zone: us-central1-a
type: gcp
release:
image: 'registry.redhat.io/openshift4/ose-cluster-version-operator:v4.14.0'
version: 4.14.0
channelGroup: candidate
image: >-
registry.redhat.io/openshift4/ose-cluster-version-operator:v4.22.0-ec.4
version: 4.22.0-ec.4
minProperties: 1
properties:
labels:
Expand Down Expand Up @@ -1917,6 +1924,8 @@ definitions:
type: string
ReleaseSpec:
properties:
channelGroup:
type: string
image:
type: string
version:
Expand Down