├── .github └── workflows │ ├── main.yml │ ├── manual.yml │ └── trivy.yml ├── .gitignore ├── .helmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Chart.lock ├── Chart.yaml ├── LICENSE ├── NOTICE ├── README.md ├── solr-init ├── solr-configset │ ├── lang │ │ ├── contractions_ca.txt │ │ ├── contractions_fr.txt │ │ ├── contractions_ga.txt │ │ ├── contractions_it.txt │ │ ├── hyphenations_ga.txt │ │ ├── stemdict_nl.txt │ │ ├── stoptags_ja.txt │ │ ├── stopwords_ar.txt │ │ ├── stopwords_bg.txt │ │ ├── stopwords_ca.txt │ │ ├── stopwords_cz.txt │ │ ├── stopwords_da.txt │ │ ├── stopwords_de.txt │ │ ├── stopwords_el.txt │ │ ├── stopwords_en.txt │ │ ├── stopwords_es.txt │ │ ├── stopwords_et.txt │ │ ├── stopwords_eu.txt │ │ ├── stopwords_fa.txt │ │ ├── stopwords_fi.txt │ │ ├── stopwords_fr.txt │ │ ├── stopwords_ga.txt │ │ ├── stopwords_gl.txt │ │ ├── stopwords_hi.txt │ │ ├── stopwords_hu.txt │ │ ├── stopwords_hy.txt │ │ ├── stopwords_id.txt │ │ ├── stopwords_it.txt │ │ ├── stopwords_ja.txt │ │ ├── stopwords_lv.txt │ │ ├── stopwords_nl.txt │ │ ├── stopwords_no.txt │ │ ├── stopwords_pt.txt │ │ ├── stopwords_ro.txt │ │ ├── stopwords_ru.txt │ │ ├── stopwords_sv.txt │ │ ├── stopwords_th.txt │ │ ├── stopwords_tr.txt │ │ └── userdict_ja.txt │ ├── protwords.txt │ ├── solrconfig.xml │ ├── stopwords.txt │ └── synonyms.txt └── solr-init.py ├── templates ├── NOTES.txt ├── _helpers.tpl ├── beaker_sessions.yaml ├── ckan_workers.yaml ├── ckancredentials.yaml ├── ckansysadminapitoken.yaml ├── cronjob.yaml ├── deployment.yaml ├── hpa.yaml ├── ingress.yaml ├── ingressroute.yaml ├── postgrescredentials.yaml ├── psql-init-job.yaml ├── pvc.yaml ├── service.yaml ├── serviceaccount.yaml ├── solr-configset-configmap.yaml ├── solr-init-configmap.yaml ├── solr-init-job.yaml └── tests │ └── test-connection.yaml └── values.yaml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | charts/* 2 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | gha-creds-*.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/Chart.lock -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | ckan-helm 2 | Copyright (c) 2020 Keitaro AB 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/README.md -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/contractions_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/contractions_ca.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/contractions_fr.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/contractions_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/contractions_ga.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/contractions_it.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/hyphenations_ga.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_da.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_de.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_el.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_en.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_es.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_et.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_id.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_it.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_no.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_th.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/lang/userdict_ja.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/protwords.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/solrconfig.xml -------------------------------------------------------------------------------- /solr-init/solr-configset/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/stopwords.txt -------------------------------------------------------------------------------- /solr-init/solr-configset/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-configset/synonyms.txt -------------------------------------------------------------------------------- /solr-init/solr-init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/solr-init/solr-init.py -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/beaker_sessions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/beaker_sessions.yaml -------------------------------------------------------------------------------- /templates/ckan_workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/ckan_workers.yaml -------------------------------------------------------------------------------- /templates/ckancredentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/ckancredentials.yaml -------------------------------------------------------------------------------- /templates/ckansysadminapitoken.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/ckansysadminapitoken.yaml -------------------------------------------------------------------------------- /templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/cronjob.yaml -------------------------------------------------------------------------------- /templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/deployment.yaml -------------------------------------------------------------------------------- /templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/hpa.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/ingressroute.yaml -------------------------------------------------------------------------------- /templates/postgrescredentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/postgrescredentials.yaml -------------------------------------------------------------------------------- /templates/psql-init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/psql-init-job.yaml -------------------------------------------------------------------------------- /templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/pvc.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /templates/solr-configset-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/solr-configset-configmap.yaml -------------------------------------------------------------------------------- /templates/solr-init-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/solr-init-configmap.yaml -------------------------------------------------------------------------------- /templates/solr-init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/solr-init-job.yaml -------------------------------------------------------------------------------- /templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keitaroinc/ckan-helm/HEAD/values.yaml --------------------------------------------------------------------------------