Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPSEXP-2786 Use official apache/activemq-classic image #378

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion charts/activemq/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
name: activemq
sources:
- https://github.com/Alfresco/alfresco-helm-charts
version: 3.5.5
version: 4.0.0-alpha.0
appVersion: 5.18.5
dependencies:
- name: alfresco-common
Expand Down
8 changes: 4 additions & 4 deletions charts/activemq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parent: Charts Reference

# activemq

![Version: 3.5.5](https://img.shields.io/badge/Version-3.5.5-informational?style=flat-square) ![AppVersion: 5.18.5](https://img.shields.io/badge/AppVersion-5.18.5-informational?style=flat-square)
![Version: 4.0.0-alpha.0](https://img.shields.io/badge/Version-4.0.0--alpha.0-informational?style=flat-square) ![AppVersion: 5.18.5](https://img.shields.io/badge/AppVersion-5.18.5-informational?style=flat-square)

A Helm chart providing a basic Apache ActiveMQ deployment required to evaluate ACS (not meant to be used in production).

Expand All @@ -29,16 +29,16 @@ A Helm chart providing a basic Apache ActiveMQ deployment required to evaluate A
| enabled | bool | `true` | |
| global.alfrescoRegistryPullSecrets | string | `"quay-registry-secret"` | Authenticate to image registry before pulling by providing an existing secret of type kubernetes.io/dockerconfigjson |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"alfresco/alfresco-activemq"` | |
| image.tag | string | `"5.18.5-jre17-rockylinux8"` | |
| image.repository | string | `"apache/activemq-classic"` | |
| image.tag | string | `"5.18.4"` | |
| livenessProbe.failureThreshold | int | `6` | |
| livenessProbe.initialDelaySeconds | int | `60` | |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.timeoutSeconds | int | `1` | |
| nodeSelector | object | `{}` | |
| persistence.accessModes | list | `["ReadWriteOnce"]` | defines type of access required by the persistent volume [Access_Modes] (https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes) |
| persistence.baseSize | string | `"20Gi"` | |
| persistence.data.mountPath | string | `"/opt/activemq/data"` | |
| persistence.data.mountPath | string | `"/opt/apache-activemq/data"` | |
| persistence.data.subPath | string | `"alfresco-infrastructure/activemq-data"` | |
| persistence.enabled | bool | `true` | |
| persistence.existingClaim | string | `nil` | |
Expand Down
6 changes: 3 additions & 3 deletions charts/activemq/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ enabled: true
replicaCount: 1
nodeSelector: {}
image:
repository: alfresco/alfresco-activemq
tag: 5.18.5-jre17-rockylinux8
repository: apache/activemq-classic
tag: 5.18.4
pullPolicy: IfNotPresent
adminUser:
# -- An existing kubernetes secret that contains BROKER_USERNAME and BROKER_PASSWORD keys to override the default user credentials
Expand Down Expand Up @@ -65,7 +65,7 @@ persistence:
- ReadWriteOnce
existingClaim: null
data:
mountPath: "/opt/activemq/data"
mountPath: "/opt/apache-activemq/data"
subPath: "alfresco-infrastructure/activemq-data"
global:
# -- Authenticate to image registry before pulling by providing an existing
Expand Down