Hey all, is there a snippet of Yaml someplace which I could copy in order to put my EE trial license on my GKE cluster? Haven’t seen anybody bring this up anywhere.
Hi @loffelmacher,
You can set environment variable for your Kong EE Docker container.
You can directly paste your license into your Deployment YAML file, which is not secure.
I would recommend you to store the license in Kubernetes secret store and reference it in your deployment.
For example:
env:
- name: KONG_LICENSE_DATA
valueFrom:
secretKeyRef:
name: kong.
key: license
You can read more about how to setup licensing for your Kong Enterprise Edition: https://docs.konghq.com/enterprise/0.33-x/getting-started/licensing/#deploying-the-license-file
1 Like