diff --git a/codefresh/.ci/values/external-secrets.yaml b/codefresh/.ci/values/external-secrets.yaml index 75dc72763..e146a6d1d 100644 --- a/codefresh/.ci/values/external-secrets.yaml +++ b/codefresh/.ci/values/external-secrets.yaml @@ -24,7 +24,7 @@ secrets: stringData: rabbitmq-hostname: my-rabbitmq:5672 rabbitmq-password: cVz9ZdJKYm7u - rabbitmq-username: user + rabbitmq-username: myuser ext-firebase: enabled: true stringData: @@ -99,3 +99,5 @@ global: rabbitmq: fullnameOverride: my-rabbitmq + auth: + username: myuser diff --git a/codefresh/Chart.lock b/codefresh/Chart.lock index 9f26a0c04..02057dc38 100644 --- a/codefresh/Chart.lock +++ b/codefresh/Chart.lock @@ -142,13 +142,13 @@ dependencies: version: 0.8.10 - name: cf-platform-analytics repository: oci://quay.io/codefresh/charts - version: 0.49.78 + version: 0.49.79 - name: cf-platform-analytics repository: oci://quay.io/codefresh/charts - version: 0.49.78 + version: 0.49.79 - name: argo-platform repository: oci://quay.io/codefresh/charts - version: 1.3344.0-onprem-b84a89b + version: 1.3344.0-onprem-5c8af92 - name: argo-hub-platform repository: oci://quay.io/codefresh/charts version: 0.1.22 @@ -170,5 +170,5 @@ dependencies: - name: onboarding-status repository: oci://quay.io/codefresh/charts version: 1.8.8 -digest: sha256:b8ea966f7f7cec4c6d6e73e24f5ad0227950009e2d7136e8766c080f9c579b78 -generated: "2025-03-20T14:19:34.976455+03:00" +digest: sha256:90d46a6e96b2979af6f6a7b02d8702d954bf0f1aacb5a1e0d4b2a86cdaf1c1b0 +generated: "2025-03-25T13:27:58.231388+03:00" diff --git a/codefresh/Chart.yaml b/codefresh/Chart.yaml index a34fdf89b..39ad73b35 100644 --- a/codefresh/Chart.yaml +++ b/codefresh/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: Helm Chart for Codefresh On-Prem name: codefresh -version: 2.7.1 +version: 2.7.2 keywords: - codefresh home: https://codefresh.io/ @@ -18,16 +18,8 @@ annotations: # artifacthub.io/containsSecurityUpdates: "true" # supported kinds are added, changed, deprecated, removed, fixed and security. artifacthub.io/changes: | - - kind: added - description: "Added subcharts for development environment" - - kind: changed - description: "Disable abacAndRules feature-flag" - kind: fixed - description: "Add checkmark on LDAP SSO configuration to allow deleting users" - - kind: fixed - description: "Fix global constrains tolerations/nodeSelector/affinity/imagePullSecret for hooks and seed jobs" - - kind: changed - description: "Bump MongoDB featureCompatibilityVersion to 6.0" + description: "Fix RABBITMQ_USER env var in argo-platform" dependencies: - name: cf-common repository: oci://quay.io/codefresh/charts @@ -245,7 +237,7 @@ dependencies: repository: oci://quay.io/codefresh/charts condition: argo-platform.enabled - name: argo-platform - version: "1.3344.0-onprem-b84a89b" + version: "1.3344.0-onprem-5c8af92" repository: oci://quay.io/codefresh/charts condition: argo-platform.enabled - name: argo-hub-platform diff --git a/codefresh/README.md b/codefresh/README.md index 97548732b..8f88e8a7a 100644 --- a/codefresh/README.md +++ b/codefresh/README.md @@ -1,6 +1,6 @@ ## Codefresh On-Premises -![Version: 2.7.1](https://img.shields.io/badge/Version-2.7.1-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square) +![Version: 2.7.2](https://img.shields.io/badge/Version-2.7.2-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square) Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/getting-started/intro-to-codefresh/) to Kubernetes. diff --git a/codefresh/files/mongoSeedJobScript.sh b/codefresh/files/mongoSeedJobScript.sh index e40eefad7..53947038f 100644 --- a/codefresh/files/mongoSeedJobScript.sh +++ b/codefresh/files/mongoSeedJobScript.sh @@ -100,7 +100,6 @@ mongosh ${MONGODB_ROOT_URI} --eval "db.getSiblingDB(\"codefresh\").grantRolesToU mongosh ${MONGODB_ROOT_URI} --eval "db.getSiblingDB(\"codefresh\").changeUserPassword(\"${MONGODB_USER}\",\"${MONGODB_PASSWORD}\")" 2>&1 || true if [[ $DEVELOPMENT_CHART == "true" ]]; then - mongoimport --uri ${MONGO_URI} --collection accounts --type json --legacy --file ${ASSETS_PATH}accounts-dev.json setSystemAdmin setPacks fi