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(deps): bump github.com/Kong/sdk-konnect-go from 0.1.5 to 0.1.6 #157

Merged
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
6 changes: 3 additions & 3 deletions api/configuration/v1alpha1/kongservice_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ type KongServiceAPISpec struct {
// Even if the cross namespace reference is not planned, the structured reference
// type is preferred because it allows for easier extension in the future.
//
// sdkkonnectcomp.CreateService `json:",inline"`
// sdkkonnectcomp.ServiceInput`json:",inline"`

// Helper field to set `protocol`, `host`, `port` and `path` using a URL. This field is write-only and is not returned in responses.
URL *string `json:"url,omitempty"`
Expand All @@ -90,9 +90,9 @@ type KongServiceAPISpec struct {
// The path to be used in requests to the upstream server.
Path *string `json:"path,omitempty"`
// The upstream server port.
Port *int64 `json:"port,omitempty"`
Port int64 `json:"port,omitempty"`
// The protocol used to communicate with the upstream.
Protocol *sdkkonnectcomp.Protocol `json:"protocol,omitempty"`
Protocol sdkkonnectcomp.Protocol `json:"protocol,omitempty"`
// The timeout in milliseconds between two successive read operations for transmitting a request to the upstream server.
ReadTimeout *int64 `json:"read_timeout,omitempty"`
// The number of retries to execute upon failure to proxy.
Expand Down
10 changes: 0 additions & 10 deletions api/configuration/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,6 @@ spec:
successes:
format: int64
type: integer
required:
- interval
- successes
type: object
http_path:
type: string
Expand Down Expand Up @@ -214,18 +211,7 @@ spec:
timeouts:
format: int64
type: integer
required:
- http_failures
- interval
- tcp_failures
- timeouts
type: object
required:
- concurrency
- http_path
- https_verify_certificate
- timeout
- type
type: object
passive:
properties:
Expand All @@ -239,8 +225,6 @@ spec:
successes:
format: int64
type: integer
required:
- successes
type: object
type:
type: string
Expand All @@ -260,18 +244,10 @@ spec:
timeouts:
format: int64
type: integer
required:
- http_failures
- tcp_failures
- timeouts
type: object
required:
- type
type: object
threshold:
type: number
required:
- threshold
type: object
host_header:
description: The hostname to be used as `Host` header when proxying
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/kong/kubernetes-configuration
go 1.23.2

require (
github.com/Kong/sdk-konnect-go v0.1.5
github.com/Kong/sdk-konnect-go v0.1.6
github.com/kong/go-kong v0.59.1
github.com/stretchr/testify v1.9.0
k8s.io/api v0.31.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/Kong/sdk-konnect-go v0.1.5 h1:LkkL0kMA2Fe21H9gY9FIYHthNDlmfbp3+bLuMwd2cy4=
github.com/Kong/sdk-konnect-go v0.1.5/go.mod h1:ipu67aQNnwDzu/LXKePG46cVqkkZnAHKWpsbhTEI8xE=
github.com/Kong/sdk-konnect-go v0.1.6 h1:e0wSujJVVo16y2qOrKvzg6/4sMPc/FLK70eSt80HnXE=
github.com/Kong/sdk-konnect-go v0.1.6/go.mod h1:ipu67aQNnwDzu/LXKePG46cVqkkZnAHKWpsbhTEI8xE=
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww=
Expand Down