├── LICENSE.txt ├── README.md └── oracledb ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── ingress.yaml ├── pvc.yaml ├── secrets.yaml └── service.yaml └── values.yaml /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/README.md -------------------------------------------------------------------------------- /oracledb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/.helmignore -------------------------------------------------------------------------------- /oracledb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/Chart.yaml -------------------------------------------------------------------------------- /oracledb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/NOTES.txt -------------------------------------------------------------------------------- /oracledb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/_helpers.tpl -------------------------------------------------------------------------------- /oracledb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/deployment.yaml -------------------------------------------------------------------------------- /oracledb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/ingress.yaml -------------------------------------------------------------------------------- /oracledb/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/pvc.yaml -------------------------------------------------------------------------------- /oracledb/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/secrets.yaml -------------------------------------------------------------------------------- /oracledb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/templates/service.yaml -------------------------------------------------------------------------------- /oracledb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolobellardone/oracledb-on-k8s/HEAD/oracledb/values.yaml --------------------------------------------------------------------------------