Skip to content
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

OTA-1339: UpdateStatus: API to expose information about update progress & health #2012

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
55131c8
`UpdateStatus`: Initial working draft
petr-muller Jun 22, 2024
03be4bd
status: add conditions to pool
petr-muller Aug 28, 2024
1212335
status: move to a new `update.openshift.io` group
petr-muller Aug 29, 2024
22fe1ec
status: make namespaced
petr-muller Aug 29, 2024
ddfc2b9
status: add resource ref to high-level control plane status
petr-muller Aug 29, 2024
cabb948
status: expand cv/co/mcp in json keys
petr-muller Aug 29, 2024
913a568
status: generalize metadata on CV update edge versions
petr-muller Sep 3, 2024
528ae57
status: add several assessment/reason consts
petr-muller Oct 1, 2024
7a3b626
status: godocs, renames, review feedback
petr-muller Oct 7, 2024
ab21348
status: try to remove deprecated items?
petr-muller Oct 8, 2024
15af879
status: address minor review feedback
petr-muller Oct 8, 2024
b1c2c71
status: use omitemtpy/required consistently
petr-muller Oct 8, 2024
180ddbe
status: add some missing `list` annotations
petr-muller Oct 8, 2024
05ff06e
status: add minimal tests
petr-muller Oct 9, 2024
cda0155
status: minor fixes for conventions
petr-muller Oct 14, 2024
855f663
status: use resource names instead of kind
petr-muller Oct 14, 2024
9fb4ab3
status: fix `Unsupported value: "bool"`
petr-muller Oct 14, 2024
35085bb
status: use listType=atomic for scope.resources
petr-muller Oct 14, 2024
12aefa6
status: simplify version metadata
petr-muller Oct 14, 2024
e82e402
status: break API into multiple files
petr-muller Oct 15, 2024
615da5a
status: add tests
petr-muller Oct 15, 2024
67158c4
status: small fixes motivated by tests
petr-muller Oct 15, 2024
1af316b
status: minor reason renames
petr-muller Oct 22, 2024
a8284a5
status: fix MCP status insight godoc
petr-muller Dec 17, 2024
b36388d
status: make namespaced
petr-muller Dec 19, 2024
eabdd9d
`make lint-fix`
petr-muller Jan 20, 2025
26f96ef
status: fix lint warnings not fixed by `make lint-fix`
petr-muller Jan 20, 2025
e71150d
status: handle installation corner case with CEL validation
petr-muller Jan 21, 2025
228944e
status: add maxLength and maxItems validations
petr-muller Jan 21, 2025
1ccd8c7
status: reduce maxItems on version metadata for CEL budget
petr-muller Jan 21, 2025
f04d771
status: add some negative API tests
petr-muller Jan 21, 2025
ee509de
status: fixup excessive Enum= validations
petr-muller Jan 23, 2025
7ca5398
status: break workerpool and controlplane structs
petr-muller Jan 23, 2025
f7792ac
status: remove `kubebuilder:validation:Optional` from doc.go
petr-muller Feb 4, 2025
6968651
status: status.controlPlane required->optional
petr-muller Feb 4, 2025
f2c77ae
status: genclient nonNamespaced
petr-muller Feb 12, 2025
116245b
status: reintroduce `SchemeGroupVersion`, `AddToScheme`, `Resource`
petr-muller Feb 14, 2025
41b1919
update: enforce comment policy
petr-muller Mar 5, 2025
d5afb9f
status: Add TODO for known .status conditions
petr-muller Mar 5, 2025
cea149c
status: .status.controlPlane optional+omitempty
petr-muller Mar 5, 2025
b619f70
status: .status.workerPools: godoc and TODOs
petr-muller Mar 5, 2025
63850db
status: .status.controlPlane godocs
petr-muller Mar 5, 2025
3bb6050
status: .status.controlPlane resource/pool validation
petr-muller Mar 5, 2025
7903be0
status: review feedback addressed
petr-muller Mar 7, 2025
8495ca6
`make update`
petr-muller Jan 20, 2025
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
1,379 changes: 1,379 additions & 0 deletions openapi/generated_openapi/zz_generated.openapi.go

Large diffs are not rendered by default.

843 changes: 843 additions & 0 deletions openapi/openapi.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions update/.codegen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
swaggerdocs:
commentPolicy: Enforce
26 changes: 26 additions & 0 deletions update/install.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package config

import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"

updatev1alpha1 "github.com/openshift/api/update/v1alpha1"
)

const (
GroupName = "update.openshift.io"
)

var (
schemeBuilder = runtime.NewSchemeBuilder(updatev1alpha1.Install)
// Install is a function which adds every version of this group to a scheme
Install = schemeBuilder.AddToScheme
)

func Resource(resource string) schema.GroupResource {
return schema.GroupResource{Group: GroupName, Resource: resource}
}

func Kind(kind string) schema.GroupKind {
return schema.GroupKind{Group: GroupName, Kind: kind}
}
3 changes: 3 additions & 0 deletions update/v1alpha1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: test
test:
make -C ../../tests test GINKGO_EXTRA_ARGS=--focus="update.openshift.io/v1alpha1"
7 changes: 7 additions & 0 deletions update/v1alpha1/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// +k8s:deepcopy-gen=package,register
// +k8s:defaulter-gen=TypeMeta
// +k8s:openapi-gen=true

// +groupName=update.openshift.io
// Package v1alpha1 is the v1alpha1 version of the API.
package v1alpha1
38 changes: 38 additions & 0 deletions update/v1alpha1/register.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package v1alpha1

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
)

var (
GroupName = "update.openshift.io"
GroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}
schemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
// Install is a function which adds this version to a scheme
Install = schemeBuilder.AddToScheme

// SchemeGroupVersion generated code relies on this name
// Deprecated
SchemeGroupVersion = GroupVersion
// AddToScheme exists solely to keep the old generators creating valid code
// DEPRECATED
AddToScheme = schemeBuilder.AddToScheme
)

// Resource generated code relies on this being here, but it logically belongs to the group
// DEPRECATED
func Resource(resource string) schema.GroupResource {
return schema.GroupResource{Group: GroupName, Resource: resource}
}

// Adds the list of known types to api.Scheme.
func addKnownTypes(scheme *runtime.Scheme) error {
scheme.AddKnownTypes(GroupVersion,
&UpdateStatus{},
&UpdateStatusList{},
)
metav1.AddToGroupVersion(scheme, GroupVersion)
return nil
}
Loading