* [stable/prometheus-operator] add dashboards and rules sync scripts
Signed-off-by: Dmitry Verkhoturov <paskal.07@gmail.com>
* [stable/prometheus-operator] fix script to create dirs in case of their absence
Signed-off-by: Dmitry Verkhoturov <paskal.07@gmail.com>
* [stable/nginx-ingress] Remove checksum/config from DaemonSet template
The DaemonSet template still has a checksum/config annotation to trigger a rollout of the Ingress Controllers after a config change. Recreating the controllers after a configmap change is not necessary, and this annotation was already removed from the Deployment template in https://github.com/helm/charts/pull/5199.
Signed-off-by: Robin Ketelbuters <robin.ketelbuters@gmail.com>
* [stable/nginx-ingress] Bump version
Signed-off-by: Robin Ketelbuters <robin.ketelbuters@gmail.com>
* Bump version
Signed-off-by: Robin Ketelbuters <robin.ketelbuters@gmail.com>
* [stable/wordpress] Add service annotations
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com>
* [stable/wordpress] Bump version to 5.1.0
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com>
* [stable/wordpress] Initialize service annotations in prod values
Signed-off-by: Andrejs Volkovs <clalbus@gmail.com>
* [stable/kong] add support for Kong 1.0
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
* fix --kong-url for HTTPS
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
* fix comment and add todo
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
* Add additional env var support for prometheus-rabbitmq-exporter
Signed-off-by: Steven Cipriano <cipriano@squareup.com>
* Update readme, bump chart version
Signed-off-by: Steven Cipriano <cipriano@squareup.com>
* fix typo in chart maintainers
Signed-off-by: Steven Cipriano <cipriano@squareup.com>
* minor fixes
- correct appVersion
- consistency and typos in readme
Signed-off-by: Steven Cipriano <cipriano@squareup.com>
* Bump minor version for new features
Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
* [stable/kured] Allow setting `image.pullSecrets` and `nodeSelector` from values.yaml
Signed-off-by: William Hughes <will@willhughes.name>
* Update Chart.yaml
Signed-off-by: Paul Czarkowski <username.taken@gmail.com>
Refactor custom CLI commands into their own files so they can also
be run separately with jboss-cli.sh for easier testing.
Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>
* Updates and new features inspired by nginx-ingress chart
Updates:
* Upgrade haproxy-ingress to v0.7-beta.4
* Sidecar container for exporting metrics to prometheus
* Sidecar container for collecting haproxy access logs and exporting to stdout
Features inspired by nginx-ingress chart:
* Allow deploying the ingress controller as DaemonSet or Deployment
* Allow autoscaling (hpa) an ingress controller Deployment
* Allow using custom metrics when autoscaling
* Allow setting annotations and labels on the ingress controller
* Allow specifying extra args and extra environment variables for the ingress controller
* Allow specifying hostNetwork, dnsPolicy and securityContext on the ingress controller
* Allow opening multiple http and https public ports in the ingress service
* Allow specifying externalIPs, loadBalancerSourceRanges, healthCheckNodePort on the ingress service
* Allow configuring the default backend and default backend service in more detail
* Allow configuring the liveness and readiness probes for the ingress controller
* Allow using a custom haproxy template
* Added services for stats and metrics
* Added a PodDisruptionBudgets for the haproxy-ingress-controller and default backend
Signed-off-by: Magnus Hyllander <magnus.hyllander@hivestreaming.com>
* Corrected ports in values and documentation
Signed-off-by: Magnus Hyllander <magnus.hyllander@hivestreaming.com>
* Update to haproxy-ingress v0.7-beta.5
Signed-off-by: Magnus Hyllander <magnus.hyllander@hivestreaming.com>
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>