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

feat(ingress): Generate Admin API service name if requested #840

Merged
merged 1 commit into from
Jul 17, 2023
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: 8 additions & 0 deletions charts/ingress/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.4.0

### Improvements

- Generate the `adminApiService.name` value from `.Release.Name` rather than
hardcoding to `kong`
[#840](https://github.com/Kong/charts/pull/840)

## 0.3.0

### Fixes
Expand Down
8 changes: 4 additions & 4 deletions charts/ingress/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: kong
repository: https://charts.konghq.com
version: 2.24.0
version: 2.25.0
- name: kong
repository: https://charts.konghq.com
version: 2.24.0
digest: sha256:ba896c6e8690635eb398e6c1d12ada44cf7878fc7a44ee45b2311ff5a0e4c8c7
generated: "2023-07-07T11:01:06.255154+02:00"
version: 2.25.0
digest: sha256:a07ca2054a8ecc4d7a25d607ea214edd0ea4a4c2b6b1a664234a8b13d10b90fb
generated: "2023-07-17T09:40:57.200737+01:00"
6 changes: 3 additions & 3 deletions charts/ingress/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ maintainers:
name: ingress
sources:
- https://github.com/Kong/charts/tree/main/charts/kong
version: 0.3.0
version: 0.4.0
appVersion: "3.3"
dependencies:
- name: kong
version: ">=2.23.0"
version: ">=2.25.0"
repository: https://charts.konghq.com
alias: controller
condition: controller.enabled
- name: kong
version: ">=2.23.0"
version: ">=2.25.0"
repository: https://charts.konghq.com
alias: gateway
condition: gateway.enabled
3 changes: 1 addition & 2 deletions charts/ingress/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ controller:

gatewayDiscovery:
enabled: true
adminApiService:
name: kong-gateway-admin
generateAdminApiService: true

gateway:
enabled: true
Expand Down
Loading