Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Development
* Added overrides for image repositories and tags for dependency charts due to bitnami migration to bitnamilegacy repository - temp workaround until a better solution is found (#433) (by @Filip Drab)
* Updated our tests/unit to support `unittests` v0.5.1 (#414, #421) (by @jk464)
* Migrate to kubeconform for k8s linting, as kubeval is now deprecated (#420) (by @jk464)
* Allow clusters that do not use kubeproxy to disable presleep. (#416) (by @cognifloyd)
Expand Down
18 changes: 18 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,8 @@ mongodb:
enabled: true
image:
# StackStorm currently supports maximum MongoDB v4.4
# override default chart image repository due to migration to bitnilegacy repo
repository: bitnamilegacy/mongodb
tag: "4.4"
# MongoDB architecture. Allowed values: standalone or replicaset
architecture: replicaset
Expand Down Expand Up @@ -1073,6 +1075,10 @@ rabbitmq:
# Change to `false` to disable in-cluster rabbitmq deployment.
# Specify your external [messaging] connection parameters under st2.config
enabled: true
# Override default chart image repository and tag due to migration to bitnilegacy repo
image:
repository: bitnamilegacy/rabbitmq
tag: 3.8.9
clustering:
# On unclean cluster restarts forceBoot is required to cleanup Mnesia tables (see: https://github.com/helm/charts/issues/13485)
# Use it only if you prefer availability over integrity.
Expand Down Expand Up @@ -1120,6 +1126,10 @@ redis:
# Change to `false` to disable in-cluster redis deployment.
# Specify your external [coordination] connection parameters under st2.config
enabled: true
# Override default chart image repository and tag due to migration to bitnamilegacy repo
image:
repository: bitnamilegacy/redis
tag: 6.0.9
# By default the cluster is enabled for the subchart.
# We just need replica count here to ensure it is HA
cluster:
Expand All @@ -1134,6 +1144,10 @@ redis:
# DO NOT SET sentinel.usePassword, the tooz driver cannot connect to a password protected sentinel
# however it can connect to a password protected redis that is being managed by sentinel
# usePassword: false
# Override default chart image repository and tag due to migration to bitnamilegacy repo
image:
repository: bitnamilegacy/redis-sentinel
tag: 6.0.9
# Enable or disable static sentinel IDs for each replicas
# If disabled each sentinel will generate a random id at startup
# If enabled, each replicas will have a constant ID on each start-up
Expand Down Expand Up @@ -1176,6 +1190,10 @@ dnsConfig: {}
## TODO: If eq st2web.service.type "LoadBalancer", set enabled to true. Any other cases?
external-dns:
enabled: false
# Override default chart image repository and tag due to migration to bitnilegacy repo
image:
repository: bitnamilegacy/external-dns
tag: 0.7.4
provider: aws
aws:
zoneType: "public"
Expand Down