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

chore: up gokoala to 0.59.0 #43

Merged
merged 3 commits into from
Dec 10, 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 cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import (
)

const (
defaultGokoalaImage = "docker.io/pdok/gokoala:0.58.0"
defaultGokoalaImage = "docker.io/pdok/gokoala:0.59.0"
)

var (
Expand Down
54 changes: 54 additions & 0 deletions config/crd/bases/pdok.nl_ogcapis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,20 @@ spec:
type: object
type: array
type: object
healthCheck:
description: Optional health check configuration
properties:
srs:
default: EPSG:28992
description: Projection (SRS/CRS) used for tile
healthcheck
pattern: ^EPSG:\d+$
type: string
tilePath:
description: Path to specific tile used for
healthcheck
type: string
type: object
id:
description: Unique ID of the collection
type: string
Expand Down Expand Up @@ -1453,6 +1467,20 @@ spec:
type: object
type: array
type: object
healthCheck:
description: Optional health check configuration
properties:
srs:
default: EPSG:28992
description: Projection (SRS/CRS) used for tile
healthcheck
pattern: ^EPSG:\d+$
type: string
tilePath:
description: Path to specific tile used for
healthcheck
type: string
type: object
id:
description: Unique ID of the collection
type: string
Expand Down Expand Up @@ -2804,6 +2832,20 @@ spec:
type: object
type: array
type: object
healthCheck:
description: Optional health check configuration
properties:
srs:
default: EPSG:28992
description: Projection (SRS/CRS) used for tile
healthcheck
pattern: ^EPSG:\d+$
type: string
tilePath:
description: Path to specific tile used for
healthcheck
type: string
type: object
id:
description: Unique ID of the collection
type: string
Expand Down Expand Up @@ -3098,6 +3140,18 @@ spec:
- id
type: object
type: array
healthCheck:
description: Optional health check configuration
properties:
srs:
default: EPSG:28992
description: Projection (SRS/CRS) used for tile healthcheck
pattern: ^EPSG:\d+$
type: string
tilePath:
description: Path to specific tile used for healthcheck
type: string
type: object
supportedSrs:
description: |-
Specifies in what projections (SRS/CRS) the tiles are offered
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/PDOK/ogcapi-operator
go 1.23.1

require (
github.com/PDOK/gokoala v0.58.0
github.com/PDOK/gokoala v0.59.0
github.com/onsi/ginkgo/v2 v2.17.1
github.com/onsi/gomega v1.32.0
github.com/peterbourgon/ff v1.7.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/PDOK/gokoala v0.58.0 h1:4oL+z4PoJsHkKS4DrexJLB/fmXTQEFq8dDA2hr/cCzY=
github.com/PDOK/gokoala v0.58.0/go.mod h1:jT3LZWfUpwu0+itydD0a8PUflz0u1x73TNxLhEU4ugs=
github.com/PDOK/gokoala v0.59.0 h1:tZpkb+AqEC/bIzLKBzpekXhLZBIafG4how9OR9wd6Vs=
github.com/PDOK/gokoala v0.59.0/go.mod h1:jT3LZWfUpwu0+itydD0a8PUflz0u1x73TNxLhEU4ugs=
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
Expand Down
Loading