Commit Graph
8827 Commits
Author SHA1 Message Date
Julian Schlichtholz f56db59988 [stable/elasticsearch-exporter] Add imagePullSecret support (#14887)
Signed-off-by: Julian Schlichtholz <jschlichtholz@salesforce.com>
2019-06-27 00:25:20 -07:00
David O'Dell 5b26a9bb39 [stable/prometheus] default retention time is 15 days if not specified (#13965)
* If you do not specify a retention time then by default it is set to 15 days.
In this PR I make that the default so that its clear to users.

Signed-off-by: David O'Dell <dave@helix.re>

* bumped chart version

Signed-off-by: David O'Dell <dave@helix.re>

* rev'd chart version to 8.11.5

Signed-off-by: David O'Dell <dave@helix.re>
2019-06-26 23:50:00 -07:00
georgekaz eadd6157eb [stable/kube2iam] Fix issue when changing kube2iam host port (#13729)
does not change metrics port and requires second custom port

Signed-off-by: George Kaz <egeorgekaz@gmail.com>
2019-06-26 23:49:53 -07:00
Shoichi Kaji eec62bb533 [stable/heapster] Fix stable heapster fullname (#13711)
* [stable/heapster] fix how to define fullname

This follows the default _helpers.tpl by `helm create NAME`

Signed-off-by: Shoichi Kaji <skaji@cpan.org>

* [stable/heapster] 0.3.3 -> 0.3.4

Signed-off-by: Shoichi Kaji <skaji@cpan.org>

* [stable/heapster] This will be a breaking change so we should up it by a major version

Signed-off-by: Shoichi Kaji <skaji@cpan.org>
2019-06-26 23:49:45 -07:00
art kon f4ddff0e1a [stable/prometheus] Ignore OWNERS file in helm package. (#13655)
Signed-off-by: Arturo Contreras <arturo.contreras@returnpath.com>
2019-06-26 23:49:33 -07:00
Alessandro Siragusa 1f9750eedb [stable/cluster-autoscaler] Add extraEnvFromSecret parameter (#13308)
This parameter can be useful if we want to supply the access keys via an
external secret. This should work with any cloud provider.

In my case I don't want to authorize the workers to interact with the ASG,
as any container running in the cluster would be allowed to do so,
instead I have created an IAM user and stored the credentials in a
secret.

Signed-off-by: Alessandro Siragusa <alessandro.siragusa@gmail.com>
2019-06-26 23:49:21 -07:00
Hans-Jörg Wieland d9374f57d6 [stable/jenkins] Add existingSecret to Jenkins backup AWS credentials (#13392)
* [stable/jenkins] Add existingSecret to Jenkins backup AWS credentials

Signed-off-by: Hans-Jörg Wieland <mail@wieland.tech>

* [stable/jenkins] Removed unnecessary Maintainer line

Signed-off-by: Hans-Jörg Wieland <mail@wieland.tech>

* [stable/jenkins] Chart.yaml version bump

Signed-off-by: Hans-Jörg Wieland <mail@wieland.tech>
2019-06-26 23:29:19 -07:00
Dimitrios Karagiannis 9c6fc139b4 [stable/prometheus-postgres-exporter] Allow specifying a securityContext (#15074)
* Allow specifying a securityContext

This enables users running under restrictive PodSecurityPolicies to deploy the exporter running as a non-root container.

Signed-off-by: Dimitrios Karagiannis <dhkarag@gmail.com>

* Update chart version

Signed-off-by: Dimitrios Karagiannis <dhkarag@gmail.com>
2019-06-26 23:03:19 -07:00
Maxime VISONNEAU 347603e7a5 kured - add psp configuration capabilities (#15071)
* kured - add psp configuration capabilities

Signed-off-by: Maxime VISONNEAU <maxime.visonneau@gmail.com>

* update minor version

Signed-off-by: Maor Friedman <maor.friedman@redhat.com>
2019-06-26 22:53:20 -07:00
Nikolay Yurin 62b33b47d8 [stable/elastic-stack] Fix elasticsearch URL (#14906)
* [stable/elastic-stack] Fix elasticsearch url resolve

Signed-off-by: Nikolai Iurin <yurinnick93@gmail.com>

* [stable/elastic-stack] Fix requirements.lock sync

Signed-off-by: Nikolai Iurin <yurinnick93@gmail.com>
2019-06-26 16:07:20 -07:00
Bastian Hofmann f95b8b589b [stable/redis-ha] Improve liveness probe for large databases (#14999)
* [stable/redis-ha] Improve liveness probe so that redis is not restarted while it is still loading its dataset into memory

On larger databases this can take more than just the initial probe delay. During this time redis will not answer the ping command with pong, but with loading. Of course the container should not be marked as ready, but it also should not restart which results in redis never starting successfully.

Signed-off-by: Bastian Hofmann <bashofmann@gmail.com>

* [stable/redis-ha] Bump version to 3.5.2

Signed-off-by: Bastian Hofmann <bashofmann@gmail.com>
2019-06-26 15:01:20 -07:00
residualmind 4cbc02a65f [stable/redis-ha] define prometheus exporter port in service (#14910)
* define prometheus exporter port in service

This enables prometheus-operator to work with this chart almost out-of-the box. Only a ServiceMonitor definition is necessary.

Signed-off-by: Ben Dimbeck <bd@it-agenten.com>

* bump chart version

Signed-off-by: Ben Dimbeck <bd@it-agenten.com>
2019-06-26 13:37:20 -07:00
robbie-demuth 4243f59270 Prometheus operator enhancements (#14593)
* [stable/prometheus-operator] Allow template strings in metricRelabelings

This allows passing template strings as follows to do things such as
only keeping metrics for the current namespace

```
metricRelabelings:
- sourceLabels:
  - namespace
  regex: '{{ .Release.Namespace }}'
  action: keep
```

Signed-off-by: Robbie deMuth <robbie.demuth@appian.com>

* [stable/prometheus-operator] Disable AlertManager connection when AlertManager is disabled

Previously, the Prometheus server was still wired to the default
AlertManager server even when `.Values.alertmanager.enabled` was set to
`false`

Signed-off-by: Robbie deMuth <robbie.demuth@appian.com>

* [stable/prometheus-operator] Allow template strings in Alertmanager configuration directives

This allows passing template strings as follows to do things such as
configure a webhook_config URL to point to a service deployed in the
same namespace

```
alertmanager:
  config:
    receivers:
    - name: webhook
      webhook_configs:
      - url: http://alertmanager-webhook.{{ .Release.Namespace }}.svc.cluster.local/
```

Signed-off-by: Robbie deMuth <robbie.demuth@appian.com>

* [stable/prometheus-operator] Increment chart version

Signed-off-by: Robbie deMuth <robbie.demuth@appian.com>
2019-06-26 09:20:17 -07:00
Sébastien Prud'homme 908d8c5e64 [stable/velero] Configure Velero plugins with ConfigMaps (#14096)
* [stable/velero] Configure Velero plugins with ConfigMaps

Signed-off-by: Sébastien Prud'homme <sebastien.prudhomme@gmail.com>

* [stable/velero] more controls to build the configmaps

Signed-off-by: Sébastien Prud'homme <sebastien.prudhomme@gmail.com>
2019-06-26 08:53:15 -07:00
Marcus Berndt 8b064767db [incubator/jaeger] ingress path for query-ui is using basePath now (#15067)
added README description

version bumped to 0.10.5

Signed-off-by: Marcus Berndt <marcus.berndt@data-experts.de>
2019-06-26 08:17:16 -07:00
Sébastien Prud'homme 2c65bc49c9 [incubator/kafka] limit Prometheus discovery to release namespace (#15065)
Signed-off-by: Sébastien Prud'homme <sebastien.prudhomme@gmail.com>
2019-06-26 06:01:17 -07:00
Néstor Salceda 407ca2a8d7 [stable/falco] Fix bug in Google Cloud Security Command Center integration with Falco (#15020)
Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
2019-06-26 02:35:16 -07:00
Michał Wieczorek 53573744cd [stable/prometheus-operator] Remove unused role/rolebinding from prometheus templates (#14524)
Signed-off-by: mwieczorek <wieczorek-michal@wp.pl>
2019-06-26 02:23:16 -07:00
Bitnami Bot 0af77e374e [stable/ghost] Release 6.7.23 updating components versions (#15057)
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2019-06-25 23:43:13 -07:00
Mikhail Naletov deeb2819b3 Add imagePullSecrets to the documentation (#14163)
Signed-off-by: Mikhail Naletov <okgolove@markeloff.net>
2019-06-25 22:03:14 -07:00
Steve Huff d89b1fedb4 Set annotations on Ambassador Deployment/DaemonSet (#15054)
This is helpful for supporting [Reloader](https://github.com/stakater/Reloader)
to enable triggered rolling restarts of Ambassador Pods.

Signed-off-by: Steve Huff <shuff@vecna.org>
2019-06-25 15:15:12 -07:00
Matt Christiansen c19be0a780 [stable/ambassador] Support additional TCP ports in Ambassador (#15028)
* [stable/ambassador] Adding in additional TCP Port support for use with TCPMappings

Signed-off-by: Matt Christiansen <mchristiansen@exabeam.com>

* Changing version to minor version

Signed-off-by: Matt Christiansen <mchristiansen@exabeam.com>
2019-06-25 12:49:58 -07:00
Bitnami Bot 47633a3d47 [stable/ghost] Release 6.7.22 updating components versions (#15043)
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2019-06-25 12:20:00 -07:00
Harry 48dd8a28d6 [stable/kong] bump up Kong Ingress Controller to 0.5.0 (#15053)
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
2019-06-25 11:39:40 -07:00
Mikhail Naletov 4491acf99d Update prometheus-nats-exporter to version 0.4.0 (#15048)
Signed-off-by: Mikhail Naletov <okgolove@markeloff.net>
2019-06-25 10:24:36 -07:00
Paweł Kalemba 488499238f [stable/filebeat] Allow to add more secrets (#15044)
* Allow to add more secrets

Allow to add an then mount secrets
For example certficates

Signed-off-by: Pawel Kalemba <pawel.kalemba@corp.ovh.com>

* Lint code ,add space as requested

Signed-off-by: Pawel Kalemba <pawel.kalemba@corp.ovh.com>
2019-06-25 09:48:36 -07:00
Andy 9f21669a5d [stable/atlantis] Add option to pass --disable-apply-all (#14242)
Signed-off-by: Andy Aldo Dharmawan <andyaldodharmawan@gmail.com>
2019-06-25 09:28:37 -07:00
Alen Komljen d23b796ba0 Update RBAC rules (#15047)
Signed-off-by: Alen Komljen <alen.komljen@live.com>
2019-06-25 09:06:36 -07:00
radumazi 479ef89dcd [stable/rabbitmq-ha] env variables and init containers (#14932)
* add rabbitmq env variables

Signed-off-by: radu mazilu <radumazi2@gmail.com>

* add extra init containers

Signed-off-by: radu mazilu <radumazi2@gmail.com>

* PR changes

Signed-off-by: radu mazilu <radumazi2@gmail.com>

* Bump chart version

Signed-off-by: radu mazilu <radumazi2@gmail.com>
2019-06-25 08:52:37 -07:00
Nikolay Yurin 471065b438 [stable/kibana] Fix tpl context passing (#14959)
Also remove unnessesary quotes

Signed-off-by: Nikolai Iurin <yurinnick93@gmail.com>
2019-06-25 08:00:37 -07:00
Manuel Zapf 139c49e482 [stable/external-dns] fix issue 15002 (#15013)
* fix issue 15002

Signed-off-by: Manuel Zapf <me@manuelzapf.io>

* address feedback

Signed-off-by: Manuel Zapf <me@manuelzapf.io>
2019-06-25 07:30:40 -07:00
Aisuko 45c7d74578 Add report node internal ip when host network was enabled (#14991)
Signed-off-by: Aisuko <urakiny@gmail.com>
2019-06-25 07:06:39 -07:00
Jannis Oeltjen 1a17b714f5 [stable/sonarqube] Fix: Init-Container not created (#15026)
Fix issue that init-container was not created when
used without any additional plugins.

Signed-off-by: Jannis Oeltjen <oss@jcoeltjen.de>
2019-06-25 05:22:37 -07:00
Bitnami Bot 6ee98b392c [stable/postgresql] Release 5.3.10 updating components versions (#15042)
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2019-06-25 04:46:36 -07:00
Michał Wieczorek c318c12d98 [stable/jaeger-operator] Add service definition for metrics endpoint (#14220)
Signed-off-by: mwieczorek <wieczorek-michal@wp.pl>
2019-06-25 03:22:36 -07:00
Mesut Celik 033579b0eb updates to hazelcast 3.12.1 and adds YAML configuration support (#15034)
Signed-off-by: Mesut Celik <mesut@hazelcast.com>
2019-06-25 02:14:36 -07:00
Paweł Kalemba ef5b0a0559 Fix missing affinity key (#15032)
Add missing affinity key

Signed-off-by: Pawel Kalemba <pawel.kalemba@corp.ovh.com>
2019-06-25 01:10:35 -07:00
Robin Elfrink 8e09a65c76 [stable/wordpress]: Fix indentation of .Values.service.extraPorts. (#15010)
Closes #15009.

Signed-off-by: Robin Elfrink <robin@15augsutus.nl>
2019-06-24 23:54:35 -07:00
Paul Czarkowski 21b3dcbb8e [stable/spinnaker] fix bug where spinnaker can't connect to minio (#14866)
* [stable/spinnaker] fix bug where spinnaker can't connect to minio

As reported in spinnaker itself [here](https://github.com/spinnaker/spinnaker/issues/4431),
It doesn't appear to affect the current stable build, but it has problems with the nightly builds.

This change should innoculate us from that bug if it makes it through to a stable build.

Effectively the issue is that in the newer builds of spinnaker it attempts to use domain paths
for s3 access.  This means instead of trying to connect to `spinnaker-minio/spinnaker` which should
be valid dns for the minio service it tries to connect to `spinnaker.spinnaker-minio` and fails because
this is not valid dns for minio.

Signed-off-by: Paul Czarkowski <username.taken@gmail.com>

* bump halyard version for cli arg needed

Signed-off-by: Paul Czarkowski <username.taken@gmail.com>

* fix argument

Signed-off-by: Paul Czarkowski <username.taken@gmail.com>

* fix version

Signed-off-by: Paul Czarkowski <username.taken@gmail.com>
2019-06-24 21:20:35 -07:00
Ryan Baker 61ce4c33c4 Change UI-Ingress TLS to List (#14983)
Signed-off-by: Ryan Baker <ryan.andrew.baker@outlook.com>
2019-06-24 16:26:35 -07:00
Christian Ingenhaag 068a474ee4 [stable/nextcloud] add redis feature (#15024)
Signed-off-by: Christian Ingenhaag <christian.ingenhaag@googlemail.com>
2019-06-24 13:26:35 -07:00
Paweł Kalemba 110314b1ae Allow to put affinity for hooks pods (#15014)
Signed-off-by: Pawel Kalemba <pawel.kalemba@corp.ovh.com>
2019-06-24 11:50:35 -07:00
Juan Ariza Toledano 01d54ce2f8 [stable/external-dns] Add Bitnami team as maintainers. (#15022)
* [stable/external-dns] Add Bitnami team as maintainers.

Signed-off-by: juan131 <juan@bitnami.com>

* Fix Chart.yaml

Signed-off-by: juan131 <juan@bitnami.com>
2019-06-24 10:56:03 -07:00
Asher Foa 1f8a85be9d [stable/fluent-bit] upgrade to fluent-bit v1.1.3 (#14995)
* [stable/fluent-bit] upgrade to fluent-bit v1.1.3

Signed-off-by: Asher Foa <asher@asherfoa.com>

* Use https in links.

Signed-off-by: Asher Foa <asher@asherfoa.com>
2019-06-24 10:46:10 -07:00
Steven Sheehy af9ef1c999 [stable/rabbitmq-ha] Add forceBoot (#14923)
Signed-off-by: Steven Sheehy <ssheehy@firescope.com>
2019-06-24 10:45:57 -07:00
LucasBoisserie 211f50d439 [stable/nginx-ingress] Add security context for default backend (#14973)
* Add security context for default backend, remove nginx sa on default backend, update readme

Signed-off-by: LucasBoisserie <lucas.boisserie@gmail.com>

* Bump version

Signed-off-by: LucasBoisserie <lucas.boisserie@gmail.com>

* use run user at container level

Signed-off-by: LucasBoisserie <lucas.boisserie@gmail.com>
2019-06-24 10:21:58 -07:00
Miiro Juuso 473e3d67b7 [incubator/kafka] fix wrapper scripts in notes (#15012)
* Fix wrapper scripts in notes

Signed-off-by: Miiro Juuso <miiro.juuso@gmail.com>

* Bump chart version

Signed-off-by: Miiro Juuso <miiro.juuso@gmail.com>
2019-06-24 09:43:56 -07:00
Harry b7741fa3f4 [stable/kong] bump up Kong to 1.2 (#14987)
Signed-off-by: Harry Bagdi <harrybagdi@gmail.com>
2019-06-24 09:29:58 -07:00
Enrico Stahn c483d1adcc [stable/atlantis] missing required field "serviceName" in io.k8s.api.apps.v1.StatefulSetSpec (#14436)
* fix: missing required field "serviceName" in io.k8s.api.apps.v1.StatefulSetSpec

Signed-off-by: Enrico Stahn <enrico.stahn@gmail.com>

* chore: bump chart version to 3.5.4

Signed-off-by: Enrico Stahn <enrico.stahn@gmail.com>

* fix: linting failed due to missing quotes

Signed-off-by: Enrico Stahn <enrico.stahn@gmail.com>
2019-06-24 09:05:57 -07:00
Théo Mathieu 04facee450 [stable/filebeat] Support filebeat 7.0.1 (#13752)
* Support filebeat 7.0.1
Signed-off-by: Theo Mathieu <tmathieu.github@fastmail.com>

* put back filebeat.config.modules
Signed-off-by: Theo Mathieu <tmathieu.github@fastmail.com>

* bump chart major version
Signed-off-by: Theo Mathieu <tmathieu.github@fastmail.com>
2019-06-24 08:43:57 -07:00