mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-05 04:06:22 -03:00
Merge branch 'main' into renovate/docker-general-non-major
This commit is contained in:
2
.github/workflows/charts-lint-test.yaml
vendored
2
.github/workflows/charts-lint-test.yaml
vendored
@@ -96,4 +96,4 @@ jobs:
|
||||
|
||||
- name: Run chart-testing (install)
|
||||
if: needs.lint.outputs.changed == 'true'
|
||||
run: find ./ -type f -name *.yaml -exec sed -i 's/tccr.io/ghcr.io/gI' {} \; && ct install --config .github/ct-install.yaml
|
||||
run: find ./ -type f -name "*.yaml" -exec sed -i 's/tccr.io/ghcr.io/gI' {} \; && ct install --config .github/ct-install.yaml
|
||||
|
||||
@@ -15,4 +15,4 @@ maintainers:
|
||||
name: common
|
||||
sources: null
|
||||
type: library
|
||||
version: 10.6.9
|
||||
version: 10.6.11
|
||||
|
||||
@@ -42,7 +42,7 @@ spec:
|
||||
- {{ ( $values.accessMode | default "ReadWriteOnce" ) | quote }}
|
||||
resources:
|
||||
requests:
|
||||
storage: {{ $values.size | default "256Gi" | quote }}
|
||||
storage: {{ $values.size | default "999Gi" | quote }}
|
||||
{{- with $values.spec }}
|
||||
{{ tpl ( toYaml . ) $ | indent 2 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -63,7 +63,7 @@ before chart installation.
|
||||
key: ping
|
||||
{{- end }}
|
||||
{{- if .Values.solr.enabled }}
|
||||
- name: "SOLR_HOST"
|
||||
- name: SOLR_HOST
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: solrcreds
|
||||
@@ -72,6 +72,7 @@ before chart installation.
|
||||
value: "{{ .Values.solr.solrCores }}"
|
||||
- name: SOLR_ENABLE_AUTHENTICATION
|
||||
value: "{{ .Values.solr.solrEnableAuthentication }}"
|
||||
{{- if eq .Values.solr.solrEnableAuthentication "yes" }}
|
||||
- name: SOLR_ADMIN_USERNAME
|
||||
value: "{{ .Values.solr.solrUsername }}"
|
||||
- name: SOLR_ADMIN_PASSWORD
|
||||
@@ -80,6 +81,7 @@ before chart installation.
|
||||
name: solrcreds
|
||||
key: solr-password
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
command:
|
||||
- "/bin/sh"
|
||||
- "-c"
|
||||
|
||||
@@ -22,7 +22,8 @@ data:
|
||||
{{- $solrPass = randAlphaNum 50 }}
|
||||
solr-password: {{ $solrPass | b64enc | quote }}
|
||||
{{- end }}
|
||||
url: {{ ( printf "http://%v:%v@%v-solr:8983/%v" .Values.solr.solrUsername $solrPass .Release.Name .Values.solr.solrCores ) | b64enc | quote }}
|
||||
url: {{ ( printf "http://%v:%v@%v-solr:8983/%v" .Values.solr.solrUsername $solrPass .Release.Name .Values.solr.solrCores ) | b64enc | quote }}
|
||||
plainhost: {{ ( ( printf "%v-%v" .Release.Name "solr" ) ) | b64enc | quote }}
|
||||
type: Opaque
|
||||
{{- $_ := set .Values.solr "solrPassword" ( $solrPass | quote ) }}
|
||||
{{- $_ := set .Values.solr.url "plain" ( ( printf "%v-%v" .Release.Name "solr" ) | quote ) }}
|
||||
|
||||
@@ -740,7 +740,7 @@ persistence:
|
||||
accessMode: ReadWriteOnce
|
||||
|
||||
# -- The amount of storage that is requested for the persistent volume.
|
||||
size: 256Gi
|
||||
size: 999Gi
|
||||
|
||||
# -- Set to true to retain the PVC upon `helm uninstall`
|
||||
retain: false
|
||||
|
||||
Reference in New Issue
Block a user