* updated kube-state-metrics image to v1.5.0
Signed-off-by: André Bauer <monotek23@gmail.com>
* bumped version
Signed-off-by: André Bauer <monotek23@gmail.com>
* fixed chart version
Signed-off-by: André Bauer <monotek23@gmail.com>
`imagePullSecrets` can now be specified in order to
be able to pull the image from a registry that requires
auth.
closeshelm/charts#9228.
Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
* Minor clarification for arm deployments on README
I tried to use this chart on an arm based cluster the pod crashed right after it was started. That's because the default image is for amd64 and the README does not explicitly states the image to use for arm.
Signed-off-by: Beto <luis.lopezespinosa@colorado.edu>
* minor version bump
Signed-off-by: Beto <luis.lopezespinosa@colorado.edu>
Previously, Prometheus annotations were added to the web service,
which is meant to represent the whole replica set of pods, leaving
no pod-specific labels to the metrics gathered, defeating the
purpose of some of them (that are meant to be container-specific).
By moving them to `deployment`, we're able to collect them per-pod,
instead of per-service.
Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
Following the example set by the grafana chart (see [1]), this commit
turns `web` probes into configurable entities.
It also makes use of `/api/v1/info` as the default endpoint for
performing the requests against so `web` doesn't return the whole
initial page as a return value (instead, just a very small json from
`/api/v1/info`).
Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
Previously, configuring ATC as an HTTPS-enabled service wasn't
an easy thing to do.
After this commit, such capability is achieved by configuring
the `tls` object under `concourse.web`:
concourse:
web:
tls: { enabled: true , bindPort: 443 }
With that configured, a cert and a key gets injected into the
containers via secrets:
secrets:
webTlsCert: |
<my_cert_chain>
webTlsKey: |
<my_private_key>
Which are then referenced in the right environment variables and
exposed in the service using the proper port.
Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
* Support PriorityClass attribute
Signed-off-by: Ian Levesque <ian@quantopian.com>
* Fix missing value in custom CI linter values file
Signed-off-by: Ian Levesque <ian@quantopian.com>
* [stable/traefik] Fixes helm upgrades for kv providers
This will run the storeconfig job also on upgrades but without the `traefikConfiguration.GlobalConfiguration.ACME.OverrideCertificates=true` parameter, so the configuration gets updated but the certs are left alone.
It's still possible to override the certificates by importing an
`acme.json` file and using the `kvprovider.importAcme=true` parameter.
Fixes: #7172
Signed-off-by: Alwin Mark <a.mark@crowdfox.com>
* [stable/traefik] Don't delete storeconfig job
Rather add revision to the job to make it unique, so its possible to get
logs from it, even if it succeeded
Signed-off-by: Alwin Mark <a.mark@crowdfox.com>
* [stable/jenkins] Support custom labels in deployment (#9714)
Signed-off-by: Erik Aaron Hansen <erihanse@outlook.com>
* [stable/jenkins] Support custom labels in deployment (#9714)
Signed-off-by: Erik Aaron Hansen <erihanse@outlook.com>
* [stable/jenkins] Support custom labels in deployment (#9714)
Signed-off-by: Erik Aaron Hansen <erihanse@outlook.com>
* [stable/mysql] Allow annoations to be added in a service using "service.annotations"
Signed-off-by: sungwon.choi <sungwon.choi@devsisters.com>
* Chart version upgraded properly and specifying the explantion about 'service.annotations'
Signed-off-by: sungwon.choi <sungwon.choi@devsisters.com>
* Remove duplicate stats container name in haproxy-ingress daemonset template
Signed-off-by: Joseph (Jy) Yaworski <jyaworski@carotid.us>
* Bump chart version
Signed-off-by: Joseph (Jy) Yaworski <jyaworski@carotid.us>
If you do a port-forward to 8080, the unifi controller tries to forward you to a secure TLS connection on port 8443. This fails because the port 8443 is not forwarded. If you do a direct forward to 8443, everything works as expected.
Signed-off-by: Christian Erhardt <christian.erhardt@mojo2k.de>