Skip to content
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
8 changes: 4 additions & 4 deletions config/crd/bases/pdok.nl_atoms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,11 +428,11 @@ spec:
rule: '!has(self.ingressRouteUrls) || self.ingressRouteUrls.exists_one(x,
x.url == self.service.baseUrl)'
status:
description: OperatorStatus defines the observed state of an Atom/WFS/WMS/....
description: OperatorStatus defines the observed state of an Atom/WFS/WMS/OGCAPI/...
properties:
conditions:
description: |-
Each condition contains details for one aspect of the current state of this Atom.
Each condition contains details for one aspect of the current state of this CR.
Known .status.conditions.type are: "Reconciled"
items:
description: Condition contains details for one aspect of the current
Expand Down Expand Up @@ -495,10 +495,10 @@ spec:
call.
type: string
description: The result of creating or updating of each derived resource
for this Atom.
for this CR.
type: object
podSummary:
description: Summary of status of pods that belong to this resource
description: Summary of status of pods that belong to this CR
items:
properties:
available:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/onsi/ginkgo/v2 v2.22.1
github.com/onsi/gomega v1.36.2
github.com/pdok/atom-generator v0.6.4
github.com/pdok/smooth-operator v1.2.0
github.com/pdok/smooth-operator v1.2.2
github.com/peterbourgon/ff v1.7.1
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.10.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaR
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
github.com/pdok/atom-generator v0.6.4 h1:UpTTSKskdWLnxTAhSNOlz8dF2tBousD97V03kWzCV2k=
github.com/pdok/atom-generator v0.6.4/go.mod h1:IlPwti5ocXDTjB4xmz0ZpHCOW/suuW5gQMfjfwPX6uM=
github.com/pdok/smooth-operator v1.2.0 h1:KFFNsFzk16IfcHPmHkgJnmbhIIY69k7crhPft3lXih8=
github.com/pdok/smooth-operator v1.2.0/go.mod h1:tqr/CDCXZHNzQzQVlSAnCmsPlx9tWAObsj8hg9mSSEU=
github.com/pdok/smooth-operator v1.2.2 h1:g6wq77mbK335KMb73Hn/7LnRA8VVqtdr7hj+tjrdoiM=
github.com/pdok/smooth-operator v1.2.2/go.mod h1:tqr/CDCXZHNzQzQVlSAnCmsPlx9tWAObsj8hg9mSSEU=
github.com/pelletier/go-toml v1.6.0/go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys=
github.com/peterbourgon/ff v1.7.1 h1:xt1lxTG+Nr2+tFtysY7abFgPoH3Lug8CwYJMOmJRXhk=
github.com/peterbourgon/ff v1.7.1/go.mod h1:fYI5YA+3RDqQRExmFbHnBjEeWzh9TrS8rnRpEq7XIg0=
Expand Down
2 changes: 1 addition & 1 deletion internal/webhook/v3/atom_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ var _ = Describe("Atom Webhook", func() {
},
func(_, _ *pdoknlv3.Atom) field.ErrorList {
return field.ErrorList{
field.Forbidden(servicePath.Child("baseUrl"), "is immutable"),
field.Forbidden(servicePath.Child("baseUrl"), "is immutable, add the old and new urls to spec.ingressRouteUrls in order to change this field"),
}
},
)
Expand Down
Loading