-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into kube-linter
- Loading branch information
Showing
8 changed files
with
130 additions
and
6 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
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
23 changes: 23 additions & 0 deletions
23
charts/kong/example-values/minimal-kong-sd-controller.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,23 @@ | ||
deployment: | ||
kong: | ||
enabled: false | ||
|
||
proxy: | ||
## This must match the gateway release's proxy Service name. | ||
## The Service name uses the pattern "<release name>-kong-proxy". | ||
## In this example, the companion gateway release is named "gw" | ||
nameOverride: gw-kong-proxy | ||
|
||
ingressController: | ||
enabled: true | ||
## This example creates a static 2-Pod Kong Igress Controller deployment | ||
## With service discovery enabled leader election will be enabled and only one | ||
## instance will ever talk to the accompanying Gateways. | ||
replicaCount: 2 | ||
serviceDiscovery: | ||
enabled: true | ||
adminApiService: | ||
## This must match the gateway release's admin Service name. | ||
## The Service name uses the pattern "<release name>-kong-admin". | ||
## In this example, the companion gateway release is named "gw" | ||
name: gw-kong-admin |
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,14 @@ | ||
admin: | ||
enabled: true | ||
type: ClusterIP | ||
clusterIP: None | ||
|
||
ingressController: | ||
enabled: false | ||
|
||
replicaCount: 3 | ||
## This example creates a static 3-Pod Kong gateway Deployment. | ||
## To use autoscaling instead, comment the above replicaCount and uncomment | ||
## the autoscaling section below. | ||
# autoscaling: | ||
# enabled: true |
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