Edward Ogden

Results 7 comments of Edward Ogden

I have a similar issue where I see collector pods crash looping on startup but then become stable. Looking at the logs seems to suggest the `config-reloader` health check fails...

@Water-Melon I'm not using any redis in my config nor has it ever been configured yet I still get the depreciation warning

More info here is the full deployed config of the rate-limit plugin that was deployed with Kong 3.8.0 ```json "config": { "redis_host": null, "policy": "local", "fault_tolerant": true, "hide_client_headers": false, "minute":...

I've done some more testing, I still get the warning messages even with a fresh install of Kong 3.9.1 on a new Kubernetes cluster (so no older versions of Kong)...

After some testing, adding SHA to the image tag is possible, but it would be better to have a separate value in the values file. This is what I tested,...

Here is a workaround using Terraform. Create a `kubernetes_service_account` resource ```hcl resource "kubernetes_service_account" "gha_runner_scale_set" { metadata { name = "arc-gha-rs-controller" namespace = local.listener_namespace annotations = { "eks.amazonaws.com/role-arn" = aws_iam_role.listener_secrets_access.arn }...