* Update url in test and probes
* bump chart version
* [incubator/elastic-stack] Add fluent-bit option to elastic-stack chart
* Update requirements.lock
* [stable/sonarqube] Fix if block for loadBalancerIP
* new chart stable/mysqldump
Helps the user backup mysql databases to a persistent volume
* use chart.name from tpl, add app label
* add app/chart fixes to mysqldump-cron.yaml
* fix backoffLimit in wrong place.
* exit gracefully if db host not specified
* After repo move to helm/helm, update steps for Owning and Maintaining A Chart
* Change repo URL from kubernetes/helm to helm/helm everywhere above chart directories (those may be separate PRs)
* Fix earlier missing apostrophe and incorrect case
* Add missing k8s/ > helm/ string changes
* RBAC support added
* added ingress support
* Moving to stable
* updated readme
* Adding Rimusz as owner
* using appVersion for Image tag
* Fixing OWNERS and maintainers
* adding .helmignore
* no message
* no message
* bumping up chart version
* RBAC support added
* adding ingress support
* fixed typos
* Adding OWNERS file and moved chart to stable
* Adding Rimusz as owner
* replaced kube-lego with cert-manager
* reverted change in artifactory-ha
* Changing Deployment to Statefulsets
* Fixing OWNERS and maintainers
* keeping old version in Incubator
* bumping up chart version
* changing incubator to stable
* stable/memcached: Add support for metrics
* stable/memcached: Add newline at the end of the values file
* Add missing values documentation to README
* Bump chart version
* [stable/wordpress] fix required string value being parsed as bool
Reverts #7101 which breaks ensuring the allowEmptyPassword is always a
string of value "yes" or "no".
* keep allowEmptyPassword Helm value as a boolean
This is helpful in the scenario where you want to use dns-01
challenges in a public route53 zone, but your cluster's
resolver is using a private route53 zone and the initial TXT
check fails. This allows you to skip the check and instead
use a fixed delay before the ACME verification happens.
* new chart for home-assistant
* updates to reflect changes requested in PR
* fixing cosmetic linting errors
* refactoring configurator basic auth away from deprecated approach
* adding newline to end of file per linter request
* updating default configurator image to the official one
* updated docker image to version 2.2.0 and disabled resource limits by default
* fixed image tag in readme
* fixed default value
* moved fluentd-elasticsearch to stable repo
* added incubator version bump to fix ci
* fixed readme
* fixed helm repo chart.yaml
* Fix minimum K8s version
* Fix selector
* Update Chart.yaml
* In some cases, when upgrading an existing stolon installation with
existing postgres data, the cluster-creation job may trigger
resulting in the resetting of the postgres db within the
stolon-keepers. This happens most notably when upgrading this
stolon chart in conjunction with the consul/etcd chart, when the
consul/etcd chart renames PVCs resulting in empty stolon state,
which in turn triggers auto-cluster-creation which clears all
postgresdb data. Adding an optional safety mechanism to prevent
this from happening.
* The current template uses the prometheus exporter port as the container port but, doesn't map the port inside the container (which is the 9090 currently) so, when you use a custom exporter port the mapping becomes incorrect.
I also added the following (Mostly changes in documentation):
Added the capabilities exporter value to allow custom specification (Default to bert and no_sort for better performance)
Updated NOTES with info about how to access metrics depending on the type of service.
Updated Readme as some of the values listed as default were incorrect (for example prometheus.exporter.enabled was false on default but was listed as true by default)
Changed the default metrics port to 9419 because of a future breaking change in the rabbitmqexporter image (which recommends to use the 9419 port: https://github.com/kbudde/rabbitmq_exporter#breaking-change---100)
* updated version after merge
* changed minor version
changed minor version as recommended by @unguiculus
* Update values.yaml
reverted the default value as recommended by @unguiculus
* Update README.md
* [stable/mysql] Add ability to modify timezone (#7121)
* Add a 'timezone' to allow timezone to be configured via TZ env
* Bump version number
* Slightly more descriptive README.md
* Add support for custom annotations & targetPort on the Kafka headless service
* Add docs for headless.
* Add missing starting space in comment
* Add support for custom annotations on the Zk headless service
This MRs fixes the README documentation regarding pull policy.
The default behavior of this chart's pull policy is IfNotPresent, regardless of what the image tag is.
* added JFrog Mission-Control
* fixed version
* New line at the end
* using secrets for credentials
* chart name from template
* removed default resources
* addd values.yaml for ci and removed hardcoded passwords
* aligned with helm version 2.8+
* changes deployment api to apps/v1beta2
* converted configmap to secret for certs
* removed blank likes
* on new line at end of file
* using secret in config map
* Removed default keys
* fixed readme
* Moved chart to stable
* replaced incubator with stable
* RBAC support added
* Updated readme
* bumped version
* formatting readme
* added admin cred
* Adding OWNERS
* Adding Rimusz as owner
* using appVersion for image tag
* adding readinessProbe and making postInstallHook image configurable
* Fixing OWNERS and maintainers
* added support for ePlus
* no message
* no message
* added replicator port
* removed replicator config from nodes
* added http version
* condition to avoid duplication
* allowing replicator to run in all nodes
* bug fix for nginx
* updated InactiveServerCleaner plugin logic
* support for configmap to bootstrap artifactory
* configmap support for nginx.conf
* updated readme.
* updated artifactory version
* node affinity support
* Fixed case
* RBAC support
* bumped Artifactory version
* updated readme
* updated Artifactory version to 6.1.0
* adding OWNERS file
* increased postgresql max_connections
* Adding Rimusz as owner
* Added optional post start command to download database JDBC drivers and changed artifactory object to Statefulset
* Fixing OWNERS and maintainers
We had a deadlock of sorts. --wait waits until all pods are ready.
postinstall hooks don't run until after --wait is done waiting. The pods
won't be ready until the `init` job runs, which was a postinstall hook.
This gets around that by making the init command run as part of the
chart rather than as a postinstall hook. I added a bash retry loop for
the init command to get around the lack of ability to configure pod
restart backoffs in Kubernetes.