Skip to content
Merged
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
4 changes: 2 additions & 2 deletions charts/infrahub-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.8.4
version: 3.9.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand All @@ -27,5 +27,5 @@ appVersion: "1.4.6"

dependencies:
- name: infrahub
version: "4.8.4"
version: "4.9.0"
repository: "oci://registry.opsmill.io/opsmill/chart"
2 changes: 1 addition & 1 deletion charts/infrahub-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The chart offers the ability to configure persistence for the database and other

| Repository | Name | Version |
|------------|------|---------|
| oci://registry.opsmill.io/opsmill/chart | infrahub | 4.8.0 |
| oci://registry.opsmill.io/opsmill/chart | infrahub | 4.9.0 |

## Values

Expand Down
2 changes: 1 addition & 1 deletion charts/infrahub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 4.8.4
version: 4.9.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
5 changes: 4 additions & 1 deletion charts/infrahub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@ The chart offers the ability to configure persistence for the database and other
| neo4j.volumes.data.mode | string | `"volume"` | |
| neo4j.volumes.data.volume.emptyDir | object | `{}` | |
| prefect-server.enabled | bool | `true` | |
| prefect-server.global.prefect.image.prefectTag | string | `"1.4.2"` | |
| prefect-server.global.prefect.image.prefectTag | string | `"1.4.6"` | |
| prefect-server.global.prefect.image.repository | string | `"registry.opsmill.io/opsmill/infrahub"` | |
| prefect-server.postgresql.enabled | bool | `true` | |
| prefect-server.postgresql.image.repository | string | `"bitnamilegacy/postgresql"` | |
| prefect-server.postgresql.primary.persistence.enabled | bool | `false` | |
| prefect-server.postgresql.primary.podLabels.infrahub/service | string | `"task-manager-db"` | |
| prefect-server.server.args[0] | string | `"uvicorn"` | |
Expand All @@ -158,6 +159,7 @@ The chart offers the ability to configure persistence for the database and other
| rabbitmq.auth.password | string | `"infrahub"` | |
| rabbitmq.auth.username | string | `"infrahub"` | |
| rabbitmq.enabled | bool | `true` | |
| rabbitmq.image.repository | string | `"bitnamilegacy/rabbitmq"` | |
| rabbitmq.metrics.enabled | bool | `true` | |
| rabbitmq.nameOverride | string | `"message-queue"` | |
| rabbitmq.persistence.enabled | bool | `false` | |
Expand All @@ -166,6 +168,7 @@ The chart offers the ability to configure persistence for the database and other
| redis.architecture | string | `"standalone"` | |
| redis.auth.enabled | bool | `false` | |
| redis.enabled | bool | `true` | |
| redis.image.repository | string | `"bitnamilegacy/redis"` | |
| redis.master.persistence.enabled | bool | `false` | |
| redis.master.podLabels.infrahub/service | string | `"cache"` | |
| redis.master.service.ports.redis | int | `6379` | |
Expand Down
6 changes: 6 additions & 0 deletions charts/infrahub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ global:
redis:
enabled: true
nameOverride: cache
image:
repository: bitnamilegacy/redis
architecture: standalone
auth:
enabled: false
Expand Down Expand Up @@ -207,6 +209,8 @@ rabbitmq:
infrahub/service: message-queue
enabled: true
nameOverride: message-queue
image:
repository: bitnamilegacy/rabbitmq
persistence:
enabled: false
auth:
Expand Down Expand Up @@ -254,6 +258,8 @@ prefect-server:
create: false
postgresql:
enabled: true
image:
repository: bitnamilegacy/postgresql
primary:
podLabels:
infrahub/service: task-manager-db
Expand Down