This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch SDAP-533 in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
commit c1df8a5fb97eba3c2ecbbc18dd425df5c520bd8c Author: rileykk <[email protected]> AuthorDate: Tue Feb 18 10:37:13 2025 -0800 Helm chart update - Switched ingress dependency from deprecated nginx-ingress to latest ingress-nginx - Fixed Solr values schema --- helm/requirements.yaml | 8 ++++---- helm/values.yaml | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/helm/requirements.yaml b/helm/requirements.yaml index 39bf182..4402a69 100644 --- a/helm/requirements.yaml +++ b/helm/requirements.yaml @@ -14,10 +14,10 @@ # limitations under the License. dependencies: - - name: nginx-ingress - version: 1.28.2 - repository: https://charts.helm.sh/stable - condition: nginx-ingress.enabled + - name: ingress-nginx + version: 4.12.0 + repository: https://kubernetes.github.io/ingress-nginx + condition: ingress-nginx.enabled - name: rabbitmq version: 8.24.13 repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami diff --git a/helm/values.yaml b/helm/values.yaml index 2d93825..5264c71 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -151,9 +151,10 @@ solr: replicaCount: 1 authentication: enabled: false - volumeClaimTemplates: - storageClassName: hostpath - storageSize: 10Gi + persistence: + enabled: true + storageClass: hostpath + size: 10Gi resources: requests: memory: 2Gi @@ -177,7 +178,7 @@ solr: ## Configuration values for the nginx-ingress dependency ## ref: https://github.com/helm/charts/tree/master/stable/nginx-ingress -nginx-ingress: +ingress-nginx: enabled: false controller: scope:
