Skip to content

Instantly share code, notes, and snippets.

@hbagdi
Created March 31, 2020 17:58
Show Gist options
  • Save hbagdi/026712085a3caa2ab0e93a99906e7fbb to your computer and use it in GitHub Desktop.
Save hbagdi/026712085a3caa2ab0e93a99906e7fbb to your computer and use it in GitHub Desktop.
Kong Enterprise on Kubernetes
image:
repository: kong-docker-kong-enterprise-edition-docker.bintray.io/kong-enterprise-edition
tag: "1.3.0.2-alpine"
pullSecrets:
- kong-enterprise-docker
ingressController:
enabled: false
env:
password:
valueFrom:
secretKeyRef:
name: kong-enterprise-superuser-password
key: password
database: "postgres"
# admin_api_uri: http://34.83.90.27
admin:
type: LoadBalancer
enabled: true
http:
enabled: true
servicePort: 80
tls:
enabled: true
servicePort: 443
# enterprise specific settings
enterprise:
enabled: true
license_secret: kong-enterprise-license
rbac:
enabled: true
admin_gui_auth: basic-auth
# If RBAC is enabled, this Secret must contain an admin_gui_session_conf key
# The key value must be a secret configuration, following the example at
# https://docs.konghq.com/enterprise/latest/kong-manager/authentication/sessions
session_conf_secret: kong-session-config
manager:
type: LoadBalancer
enabled: true
http:
enabled: true
servicePort: 80
tls:
enabled: true
servicePort: 443
# database
postgresql:
enabled: true
postgresqlUsername: kong
postgresqlDatabase: kong
postgresqlPassword: kong
service:
port: 5432
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment