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

Allow rate-limit of changes on cluster #147

Merged
merged 4 commits into from
Mar 20, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
go-version: "1.21"
- uses: golangci/golangci-lint-action@v3
with:
version: v1.55
version: v1.56
- run: make test

integration:
Expand Down
5 changes: 4 additions & 1 deletion api/v1alpha1/rpaasinstance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,10 @@ type TLSSessionTicket struct {

// RpaasInstanceStatus defines the observed state of RpaasInstance
type RpaasInstanceStatus struct {
// Revision hash calculated for the current spec.
//Revision hash calculated for the current spec of rpaasinstance
RevisionHash string `json:"revisionHash,omitempty"`

// Revision hash calculated for the current spec of nginx.
WantedNginxRevisionHash string `json:"wantedNginxRevisionHash,omitempty"`

// The revision hash observed by the controller in the nginx object.
Expand Down
5 changes: 4 additions & 1 deletion config/crd/bases/extensions.tsuru.io_rpaasinstances.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6476,8 +6476,11 @@ spec:
podSelector:
description: PodSelector is the NGINX's pod label selector.
type: string
revisionHash:
description: Revision hash calculated for the current spec of rpaasinstance
type: string
wantedNginxRevisionHash:
description: Revision hash calculated for the current spec.
description: Revision hash calculated for the current spec of nginx.
type: string
required:
- nginxUpdated
Expand Down
Loading
Loading