├── .gitignore ├── .helmignore ├── Chart.yaml ├── README.md ├── example-values.yaml ├── templates ├── _helpers.tpl ├── configmap.yaml ├── extra-resources.yaml ├── ingress.yaml ├── secret.yaml ├── service.yaml └── statefulset.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/README.md -------------------------------------------------------------------------------- /example-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/example-values.yaml -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/configmap.yaml -------------------------------------------------------------------------------- /templates/extra-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/extra-resources.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/secret.yaml -------------------------------------------------------------------------------- /templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/service.yaml -------------------------------------------------------------------------------- /templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/templates/statefulset.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p80n/photoprism-helm/HEAD/values.yaml --------------------------------------------------------------------------------