forked from kgateway-dev/kgateway
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'sah/grpc-access-log-filter-states' of ssh://github.com/…
…solo-io/gloo into sah/grpc-access-log-filter-states
- Loading branch information
Showing
26 changed files
with
412 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
changelog/v1.19.0-beta13/discover-gloo-service-with-labels.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
changelog: | ||
- type: FIX | ||
description: >- | ||
Discover the Gloo service using labels. | ||
In some environments, services must be renamed. | ||
This change allows the service to still be discovered when it's been renamed. | ||
In the event that multiple services in the namespace have the gloo=gloo label, an error will occur. | ||
issueLink: https://github.com/solo-io/solo-projects/issues/7646 | ||
resolvesIssue: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
changelog: | ||
- type: DEPENDENCY_BUMP | ||
description: Bump Go version to 1.24.1 | ||
dependencyOwner: golang | ||
dependencyRepo: go | ||
dependencyTag: v1.24.1 | ||
issueLink: https://github.com/solo-io/solo-projects/issues/7958 | ||
resolvesIssue: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
changelog: | ||
- type: NEW_FEATURE | ||
issueLink: https://github.com/solo-io/solo-projects/issues/7824 | ||
resolvesIssue: false | ||
description: Adds support for http2 via the service port appProtocol spec | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
options: | ||
env: | ||
- "_GO_VERSION=1.24.0" | ||
- "_GO_VERSION=1.24.1" | ||
|
||
steps: | ||
- name: gcr.io/cloud-builders/gsutil | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.19.0-beta3 | ||
1.19.0-beta11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.19.0-beta3 | ||
1.19.0-beta12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.18.10 | ||
1.18.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
package kubeutils | ||
|
||
const ( | ||
GlooDeploymentName = "gloo" | ||
GlooServiceName = "gloo" | ||
GlooDeploymentName = "gloo" | ||
GlooServiceName = "gloo" | ||
GlooServiceAppLabel = "gloo" | ||
GlooServiceGlooLabel = "gloo" | ||
|
||
// GlooXdsPortName is the name of the port in the Gloo Gateway control plane Kubernetes Service that serves xDS config. | ||
// See: install/helm/gloo/templates/2-gloo-service.yaml | ||
GlooXdsPortName = "grpc-xds" | ||
|
||
DiscoveryDeploymentName = "discovery" | ||
) | ||
|
||
var ( | ||
GlooServiceLabels = map[string]string{ | ||
"gloo": GlooServiceGlooLabel, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.