Skip to content

Commit

Permalink
Merge pull request #116 from keitaroinc/update-helm-charts
Browse files Browse the repository at this point in the history
Update chart dependencies
  • Loading branch information
stojanovskis1 authored Jul 11, 2024
2 parents 494ecbd + 35241ed commit bda7e27
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: redis
repository: https://keitaro-charts.storage.googleapis.com
version: 16.5.5
version: 18.12.1
- name: solr
repository: https://keitaro-charts.storage.googleapis.com
version: 4.1.2
version: 8.7.1
- name: postgresql
repository: https://keitaro-charts.storage.googleapis.com
version: 10.16.2
version: 14.0.1
- name: datapusher
repository: https://keitaro-charts.storage.googleapis.com
version: 1.0.0
digest: sha256:0d4d71c90a5292036a1c351b3e042f6130e76193edb9519ce09adc0e3a828069
generated: "2023-06-22T14:49:19.198522804+02:00"
digest: sha256:818e5030fa102128181648b063bf903af4c47a8e7bae01e347e6895ee5526b0e
generated: "2024-02-05T10:04:18.721507254+01:00"
8 changes: 4 additions & 4 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ appVersion: 2.10.3
# Dependencies
dependencies:
- name: redis
version: 16.5.5
version: 18.12.1
repository: "https://keitaro-charts.storage.googleapis.com"
condition: redis.enabled
- name: solr
version: 4.1.2
repository: "https://keitaro-charts.storage.googleapis.com"
version: 8.7.1
repository: "https://keitaro-charts.storage.googleapis.com"
condition: solr.enabled
- name: postgresql
version: 10.16.2
version: 14.0.1
repository: "https://keitaro-charts.storage.googleapis.com"
condition: postgresql.enabled
# - name: datapusher-plus
Expand Down
28 changes: 22 additions & 6 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,10 @@ solr:
# Please see all available overrides at https://github.com/bitnami/charts/tree/master/bitnami/solr/#installing-the-chart
# solr.enabled -- Flag to control whether to deploy SOLR
enabled: true
global:
imageRegistry: ""
imagePullSecrets: []
storageClass: ""
auth:
# solr.auth.enabled -- Enable or disable auth (if auth is disabled solr-init cant upload the configset/schema.xml for ckan)
enabled: true
Expand Down Expand Up @@ -374,10 +378,22 @@ postgresql:
size: 1Gi
# postgresql.fullnameOverride -- Name override for the PostgreSQL deployment
fullnameOverride: *DBDeploymentName
# postgresql.pgPass -- Password for the master PostgreSQL user.
# Feeds into the `postgrescredentials` secret that is provided to the PostgreSQL chart
pgPass: *MasterDBPass
# postgresql.existingSecret -- Name of existing secret that holds passwords for PostgreSQL
existingSecret: postgrescredentials

# @param postgresql.auth.postgresPassword Password for the "postgres" admin user (overrides `auth.postgresPassword`)
# @param postgresql.auth.username Name for a custom user to create (overrides `auth.username`)
# @param postgresql.auth.password Password for the custom user to create (overrides `auth.password`)
# @param postgresql.auth.database Name for a custom database to create (overrides `auth.database`)
# @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials (overrides `auth.existingSecret`).
# @param postgresql.auth.secretKeys.adminPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.adminPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
# @param postgresql.auth.secretKeys.userPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.userPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
# @param postgresql.auth.secretKeys.replicationPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.replicationPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
auth:
postgresPassword: *MasterDBPass
username: *CkanDBUser
password: *CkanDBPass
database: *CkanDBName
# existingSecret: ""
# secretKeys:
# adminPasswordKey: ""
# userPasswordKey: ""
# replicationPasswordKey: ""

0 comments on commit bda7e27

Please sign in to comment.