* bump chart version
* [uptimerobot-prometheus] Support annotations in Service (#1)
* add annotations to service
* add example annotations to values.yaml
* fix trailing spaces
* Added ability to control vscode arguments
Signed-off-by: Richard Cox <cox.richard200@gmail.com>
* Fixed helpers function to handle null and empty string vscode.args value
Signed-off-by: Richard Cox <cox.richard200@gmail.com>
Co-authored-by: Jeff Billimek <jeff@billimek.com>
* Added the ability to specify subPaths
I mount all my configs into a volume and keep each app under subPaths. By adding the ability of specifying a subpath here I can set hass to store its settings on its own folder.
thanks
* Update Chart.yaml
Version bumped
* Update deployment.yaml
Fixed a typo, the here the config sub path is for appdaemon and not vscode
* Update README.md
Added the new variables to the table
* Update README.md
Removed the git configSubPath because is the same as configSubPath. Same mount definition as the hass config. Also moved the configSubPath setting under persistence which makes more sense
* Update deployment.yaml
Changed configSubPath to be under persistence. Unified the git.configSubPath with the persistence one as they are the same.
* Update values.yaml
Added configSubPath to the values.yaml with a comment.
* Update Chart.yaml
Version bump
* Update values.yaml
trailing space... come on github editor you failed me
* Update values.yaml
Added the subpath setting under appDaemon
* Update values.yaml
trailing spaces... github editor needs an update
* Update values.yaml
grrr trailing spaces
Co-authored-by: Jeff Billimek <jeff@billimek.com>
* [homebridge] New chart
* [homebridge] Additional variables in README
* [homebridge] Set default service type to ClusterIP
Co-authored-by: Jeff Billimek <jeff@billimek.com>
* Added option to specify ServiceAccount (needed to associate a PodSecurityPolicy)
* Bumped chart version, added variable to README
* Bumped version to 3.1.0, as per request
* [nzbget] Migrate to media-common
* [nzbget] Migrate to media-common
* [nzbget] Fix indenting in values
Co-authored-by: Jeff Billimek <jeff@billimek.com>
* Fix name of cert secret
The original name in the documentation is incorrect.
Signed-off-by: Matt Farmer <matt@frmr.me>
* Increment patch number
Signed-off-by: Matt Farmer <matt@frmr.me>
* Correctly bump unifi chart version
Signed-off-by: Matt Farmer <matt@frmr.me>
* [stable/unifi] adding functionality to mount extra volumes
This change adds possibility to specify additional volumes
when deploying Unifi controller.
Signed-off-by: Marcin Iwinski <marcin.iwinski@gmail.com>
* fixing defaults in README.md
Signed-off-by: Marcin Iwinski <marcin.iwinski@gmail.com>
* [stable/unifi] bumping version to 0.9.0
Signed-off-by: Marcin Iwinski <marcin.iwinski@gmail.com>
Adding possibility to expose certificate and its key via k8s secret/tls.
Since secret/tls keeps cert under tls.crt and key under tls.key modified
default values for customCert.certName and customCert.keyName to be
more compatible with k8s native way of storing certificates.
Signed-off-by: Marcin Iwinski <marcin.iwinski@gmail.com>
* unifi chart supports subPath for existing PVCs
Signed-off-by: James Choncholas <jchoncholas@gmail.com>
* bump version number
Signed-off-by: James Choncholas <jchoncholas@gmail.com>
* HTTPS is required for unifi gui
Signed-off-by: Wayne Pascoe <wayne@penguinpowered.org>
* Removed new annotation in values.yaml
Added instructions in README
Signed-off-by: Wayne Pascoe <wayne+github@penguinpowered.org>
* bump the unifi docker image to version 5.11.50
* forward port values to unifi docker environment variables
Closes#18051
Signed-off-by: Per Otterström <per.otterstrom@gmail.com>
* Fix unifi NOTES to find correct service
Unifi installs the gui service as unifi-gui, but the command in the notes points to a non-existent 'unifi' service. Use unifi.name + '-gui' to construct the service name here which duplicates the logic in gui-svc.yaml.
Signed-off-by: Brian Johnson <brian@sherbang.com>
* Increment unifi version to 0.4.2
Signed-off-by: Brian Johnson <brian@sherbang.com>
* switching unifi chart to SatefulSet
* based on the persistent nature of this chart as well as [this
discussion](https://github.com/helm/charts/issues/1863), migrating the
chart to a StatefulSet instead of a deployment. As a result bumping the
major version
* bumping unifi controller to the latest stable version (5.10.19)
* adding @mcronce to the OWNERS file
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* using volumeClaimTemplates for statefulSet
* also updating label syntax to current helm standards (e.g.
`app.kubernetes.io/name`)
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* fixing indenting
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* using Parallel podManagementPolicy
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* revert to Deployment and leverage strategy types
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* include readme entry for strategyType
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* hard-code replica count and add mcronce to Chart maintainers
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* fixing linting error
Signed-off-by: Jeff Billimek <jeff@billimek.com>
.Values was out of scope for hosts block, since its in a range statement
Moved the failing access to unifiedService.enabled to a variable
Signed-off-by: Thiemo Krause <krausethiemo@googlemail.com>
* Revert "Simplify for unifi (#10789)"
This reverts commit b09535dfb4.
Signed-off-by: Jeff Billimek <jeff@billimek.com>
* bumping chart version as part of reversion
Signed-off-by: Jeff Billimek <jeff@billimek.com>
The discovery and stun ports are part of the same service. Unifi depends
on them to be on the same hostname.
Signed-off-by: Werner Buck <email@wernerbuck.nl>
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>