How to combine configuration annotations in Kong ingress?

How do i combine two configuration annotations in a single ingress?

I’ve tried comma separating them:

....
metadata:
  annotations:
    cert-manager.io/cluster-issuer: letsencrypt-prod
    configuration.konghq.com: my-customization, https-only
....

But this fails to implement either config.

And the following isn’t accepted:

....
metadata:
  annotations:
    cert-manager.io/cluster-issuer: letsencrypt-prod
    configuration.konghq.com: my-customization
    configuration.konghq.com: https-only
....

You can copy the content of on KongIngress resource into the other or merge the two and create a new KongIngress resource.

Awesome. Thanks. :+1: