Patryk Małek

Results 331 comments of Patryk Małek

Seems that there's an internal effort to replace https://bit.ly/echo-service : https://konghq.atlassian.net/browse/DOCU-2376, so it seems we're on a good path. CC: @rspurgeon

If we change ``` {{- $name := default .Chart.Name .Values.nameOverride -}} ``` to ``` {{- $name := default .Release.Namespace .Values.nameOverride -}} ``` wouldn't that work? This could in theory collide...

> The namespace is the same for both subcharts Ah, right 🤦 > I think you'd need to create a separate `kong.ns-fullname` and use it for Cluster-level resources. What would...

> I do not think we should attempt to support both models, as designing good configuration and templates for that would be quite difficult. If we want to keep support...

> > Spoiler alert: it's always more work than anticipated. > > Any particular pitfalls you hit, or just that some items that needed migrations were missed initially? If it's...

If we take lessons learnt from https://docs.google.com/document/d/14jwnYoSj5RGvOCaWGpPuqa1VvyjKnFmscnYpiIxfXQ0/edit#heading=h.csub82xg1smh and (haven't figured it out yet) generate certs via helm's [`genSignedCert`](https://helm.sh/docs/chart_template_guide/function_list/#gensignedcert) (or similar) just like we're [doing it now](https://github.com/Kong/charts/blob/0242f363bbafc576a1f370b9b4220abe0c6a269c/charts/kong/templates/service-kong-admin.yaml#L35-L37) but with proper alternative...

Hello @CarmineDeloitte 👋 By LoadBalancer do you mean AWS' ELB/ALB/NLB? Or do you have an existing Service of type `LoadBalancer`? If it's the latter then you should be able to...

Hm to be honest, I'm not sure. From what I can read at https://github.com/kubernetes-sigs/aws-load-balancer-controller it seems that it works with ALB and NLB. Which type of a LB specifically are...

My understanding is that either the controller I linked is pre-installed in AWS clusters or you install it and then you can use that CRD I mentioned - `TargetGroupBinding` by...

Thanks for pointing me to these envs! I managed to make it works with the following values: ```yaml gateway: admin: tls: client: secretName: "ca-cert" replicaCount: 2 env: admin_ssl_cert: /etc/secrets/adminapi-cert/tls.crt admin_ssl_cert_key:...