Java options are stored in env var JAVA_TOOL_OPTIONS however the
entrypoint shell script of the docker image expects them in env var JAVA_OPTS
# read JAVA_OPTS and JENKINS_OPTS into arrays to avoid need for eval (and associated vulnerabilities)
java_opts_array=()
while IFS= read -r -d '' item; do
java_opts_array+=( "$item" )
done < <([[ $JAVA_OPTS ]] && xargs printf '%s\0' <<<"$JAVA_OPTS")
Signed-off-by: Atanas Zhelev <azhelev+github@mailbox.org>
* [stable/kong] add doc for NodePort in values.yaml
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
* bump up chart version
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
* [stable/jenkins] Fix job definitions in standard values.yaml
Fix found by kozejonaz.
Signed-off-by: Jonathan Pigrée <jonathan.pigree@gmail.com>
* [stable/jenkins] Bump chart version to 0.28.2
Signed-off-by: Jonathan Pigrée <jonathan.pigree@gmail.com>
* Update values.yaml
Add variable for NumExecutors so users can change for config file.
Signed-off-by: Kevin Mienata <kevinmienata@gmail.com>
* Update config.yaml
Allow config num executors to use variable from values file
Signed-off-by: Kevin Mienata <kevinmienata@gmail.com>
* Update Chart.yaml
Update chart version and bumped.
Signed-off-by: Kevin Mienata <kevinmienata@gmail.com>
* Update README.md
Update README for new variable
Signed-off-by: Kevin Mienata <kevinmienata@gmail.com>
* Patch SecretKeyRefs names in templates
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* Add ExistingSecret into Readme docs
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* Bump chart version as patch
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* Adjust end tag
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* Moving existingSecret key to root in values
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* made doc more clear for existingSecret
Signed-off-by: alokrajiv <mail@alokrajiv.com>
* Add support for SELinux label modification in case the
default SPC_T one does not work on a system
Signed-off-by: Boris Kurktchiev <boris@diamanti.com>
* resolve PR comments
Signed-off-by: Boris Kurktchiev <boris@diamanti.com>
* resolve the PR comments properly...
Signed-off-by: Boris Kurktchiev <boris@diamanti.com>
* resolve comments
Signed-off-by: Boris Kurktchiev <boris@diamanti.com>
* [stable/gocd] init containers and restart policy for server and agent
Signed-off-by: Matthias Kümmerer <matthias@matthias-k.org>
* [stable/gocd] bump version
Signed-off-by: Matthias Kümmerer <matthias@matthias-k.org>
Previously, the chart required that users set the password for an
external database via a value. This change allows users to instead
provide the name of a pre-created secret containing the password
Signed-off-by: Robbie deMuth <robbie.demuth@appian.com>
* [stable/sonarqube] Fix mount of configMap
We do not override anymore the startup command, so we have to mount the
sonar.properties directly instead of copying from /tmp/
Signed-off-by: Guillaume Perrin <guillaume28.perrin@gmail.com>
* Update sonarqube version to 0.12.2
Signed-off-by: Guillaume Perrin <guillaume28.perrin@gmail.com>
* Remove mount of startup volume
Signed-off-by: Guillaume Perrin <guillaume28.perrin@gmail.com>
* [stable/airflow] : support adding connections
Signed-off-by: Anton Weiss <anton@otomato.link>
* Remove trailing whitespace
Signed-off-by: Anton Weiss <anton@otomato.link>
* Fix connection option names
Signed-off-by: Anton Weiss <anton@otomato.link>
* Move connection definition script into a secret of its own
Signed-off-by: Anton Weiss <anton@otomato.link>
* Bump the chart version to 0.12.0
Signed-off-by: Anton Weiss <anton@otomato.link>
* Fix trailing space in values.yaml
Signed-off-by: Anton Weiss <anton@otomato.link>
* Adding newlines at the end of yaml temlpates
Signed-off-by: Anton Weiss <anton@otomato.link>
* Expose livenessProbe and readinessProbe headers to consumer
**Problem:** Despite docs that say otherwise, Kubernetes treats a 302 HTTP response as "failed" in liveness and readiness probes. When using ingress-terminated HTTPS, it is common for HTTP requests to WordPress to result in 302-redirects to the HTTPS equivalent. As a result, the container is considered unhealthy/unready.
**Solution:** Expose the `httpHeaders` property of the `httpGet` in the probe definition so that consumers can, for example, pass the `X-Forwarded-Proto: https` header to prevent the 302 and instead get a 200 response status. The headers are exposed as optional `livenessProbeHeaders` and `readinessProbeHeaders` arrays, and only included in the deployment definition when defined.
* Update `deployment.yaml` to include optional headers.
* Update `values.yaml` and `values-production.yaml` with commented-out examples.
* Update `README.md` with configuration options, and a more detailed explanation in the Ingress section.
* Update `Chart.yaml` version number from `3.3.0` to `3.3.1`.
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com>
* bump version
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com>
* bump version
Signed-off-by: Jared Reisinger <jaredreisinger@hotmail.com>
* Add pod annotations
Signed-off-by: Daniel Karnutsch <d.karnutsch@gmail.com>
* change version to bump to next minor
Signed-off-by: Daniel Karnutsch <d.karnutsch@gmail.com>
`.Values.concourse.atcPort` has been replaced with `.Values.concourse.web.bindPort`
in 263bc80322.
So the references in NOTES.txt should also be updated.
Signed-off-by: Noburou TANIGUCHI <dev@nota.m001.jp>