Skip to content

Commit

Permalink
[xray] 3.76.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chukka committed Jul 1, 2023
1 parent 3139f48 commit 554ca89
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
9 changes: 8 additions & 1 deletion stable/xray/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# JFrog Xray Chart Changelog
All changes to this chart will be documented in this file.

## [103.75.12] - May 19, 2023
## [103.76.7] - Jun 05, 2023
* Set securePassword to false in a values yaml [GH-1763](https://github.com/jfrog/charts/pull/1763)
* Upgraded to autoscaling/v2

## [103.76.0] - May 24, 2023
* Set Pod disruption budget to none by default if not set in `xray.minAvailable`

## [103.75.0] - May 19, 2023
* Fix lint issue when rabbitmq is disabled

## [103.74.0] - May 2, 2023
Expand Down
4 changes: 2 additions & 2 deletions stable/xray/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 3.75.12
appVersion: 3.76.7
dependencies:
- condition: postgresql.enabled
name: postgresql
Expand All @@ -24,4 +24,4 @@ name: xray
sources:
- https://github.com/jfrog/charts
type: application
version: 103.75.12
version: 103.76.7
4 changes: 4 additions & 0 deletions stable/xray/templates/xray-hpa.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{{- if .Values.autoscaling.enabled }}
{{- if semverCompare ">=v1.23.0-0" .Capabilities.KubeVersion.Version }}
apiVersion: autoscaling/v2
{{- else }}
apiVersion: autoscaling/v2beta2
{{- end }}
kind: HorizontalPodAutoscaler
metadata:
labels:
Expand Down
10 changes: 7 additions & 3 deletions stable/xray/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ xray:
persistence:
mountPath: /var/opt/jfrog/xray
# adding minAvailable for Xray Pod Disruption Budget
minAvailable: 1
# minAvailable: 1

# unifiedSecretInstallation flag enables single unified secret holding all xray secrets
unifiedSecretInstallation: false
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
Expand Down Expand Up @@ -407,6 +408,9 @@ rabbitmq:
auth:
username: guest
password: password
## @param auth.securePassword Whether to set the RabbitMQ password securely. This is incompatible with loading external RabbitMQ definitions and 'true' when not setting the auth.password parameter.
## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables
securePassword: false
## Alternatively, you can use a pre-existing secret with a key called rabbitmq-password by specifying existingPasswordSecret
# existingPasswordSecret: <name-of-existing-secret>
erlangCookie: XRAYRABBITMQCLUSTER
Expand Down Expand Up @@ -972,7 +976,7 @@ router:
image:
registry: releases-docker.jfrog.io
repository: jfrog/router
tag: 7.67.0
tag: 7.70.1
imagePullPolicy: IfNotPresent
serviceRegistry:
## Service registry (Access) TLS verification skipped if enabled
Expand Down Expand Up @@ -1051,7 +1055,7 @@ observability:
image:
registry: releases-docker.jfrog.io
repository: jfrog/observability
tag: 1.13.3
tag: 1.13.5
imagePullPolicy: IfNotPresent
internalPort: 8036
resources: {}
Expand Down

0 comments on commit 554ca89

Please sign in to comment.