Skip to content

Commit

Permalink
feat: wayfinder v2.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KashifSaadat committed Oct 28, 2024
1 parent 35b50b6 commit ae475d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
| <a name="input_venafi_zone"></a> [venafi\_zone](#input\_venafi\_zone) | Venafi zone - required if using Venafi cluster issuer | `string` | `""` | no |
| <a name="input_wayfinder_idp_details"></a> [wayfinder\_idp\_details](#input\_wayfinder\_idp\_details) | The IDP details to use for Wayfinder to enable SSO | <pre>object({<br/> type = string<br/> clientId = optional(string)<br/> clientSecret = optional(string)<br/> serverUrl = optional(string)<br/> azureTenantId = optional(string)<br/> })</pre> | <pre>{<br/> "azureTenantId": "",<br/> "clientId": null,<br/> "clientSecret": null,<br/> "serverUrl": "",<br/> "type": "none"<br/>}</pre> | no |
| <a name="input_wayfinder_release_channel"></a> [wayfinder\_release\_channel](#input\_wayfinder\_release\_channel) | The release channel to use for Wayfinder | `string` | `"wayfinder-releases"` | no |
| <a name="input_wayfinder_version"></a> [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.8.6"` | no |
| <a name="input_wayfinder_version"></a> [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.9.6"` | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion external-dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "helm_release" "external_dns" {
name = "external-dns"
repository = "https://kubernetes-sigs.github.io/external-dns"
chart = "external-dns"
version = "1.14.4"
version = "1.15.0"
max_history = 5

values = [
Expand Down
2 changes: 1 addition & 1 deletion ingress.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "helm_release" "ingress" {
name = "ingress-nginx"
repository = "https://kubernetes.github.io/ingress-nginx"
chart = "ingress-nginx"
version = "4.10.1"
version = "4.11.2"
max_history = 5

values = [
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -336,5 +336,5 @@ variable "wayfinder_release_channel" {
variable "wayfinder_version" {
description = "The version to use for Wayfinder"
type = string
default = "v2.8.6"
default = "v2.9.6"
}

0 comments on commit ae475d7

Please sign in to comment.