Skip to content

Tags: pipo02mix/charts-1

Tags

kong-1.7.0

Toggle kong-1.7.0's commit message
[kong] release 1.7.0

kong-1.6.1

Toggle kong-1.6.1's commit message
[kong] release 1.6.1

kong-1.5.0

Toggle kong-1.5.0's commit message
[kong] release 1.5.0

kong-1.4.1

Toggle kong-1.4.1's commit message
[kong] release chart version 1.4.1

Release chart version 1.4.1. This fixes an incorrect code example in the
1.4.0 UPGRADE.md section.

kong-1.4.0

Toggle kong-1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 1.4.0 to master

kong-1.3.1

Toggle kong-1.3.1's commit message
[kong] release version 1.3.1

kong-1.3.0

Toggle kong-1.3.0's commit message
[kong] release version 1.3.0

kong-1.2.0

Toggle kong-1.2.0's commit message
[kong] release version 1.2.0

kong-1.1.1

Toggle kong-1.1.1's commit message
missing smtp_admin_emails env and explicit disable of smtp_mock becau…

…se is on by default. (Kong#21)

Signed-off-by: paulopez78 <[email protected]>

kong-1.1.0

Toggle kong-1.1.0's commit message
kong: refactor env block generation

Significantly refactor the generation of Kong container env blocks. Add
both user-provided variables and variables generated from other sections
of values.yaml to dictionaries, merge the dictionaries to ensure only a
single instance of a variable is present, and render the resulting
dictionary into an EnvVar block. In addition:

* Condense kong.env and kong.final_env back into a single kong.env template.
* Remove special-case env generation from kong.wait-for-db and use
  kong.env to ensure consistent behavior accross all Kong containers.
* Add a new kong.no_daemon_env template to disable NGINX daemonization for
  containers other than wait-for-db.
* DRY license, session configuration, and auth configuration templates into
  a generic "secretkeyref" template.
* Add a new case to the renderer for handling templated secretKeyRef
  blocks. Templates can only generate strings, not string maps, and the
  quote function condenses multi-line strings onto a single line, so
  neither of the existing render cases work.

The additional renderer relies on the presence of "valueFrom" as a magic
string to indicate that it should handle that variable. It cannot handle
other multi-line blocks as such. At present (API version 1.17),
valueFrom is the only such block suppported by the EnvVar specification.

Signed-off-by: Travis Raines <[email protected]>

From Kong#4