├── .gitignore ├── LICENSE ├── README.md ├── helm └── micro-integrator │ ├── Chart.yaml │ ├── bind.yaml │ ├── plans.yaml │ ├── plans │ ├── medium.yaml │ └── small.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml │ └── values.yaml ├── issue_template.md └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/README.md -------------------------------------------------------------------------------- /helm/micro-integrator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/Chart.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/bind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/bind.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/plans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/plans.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/plans/medium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/plans/medium.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/plans/small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/plans/small.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Thank you for installing WSO2 Micro Integrator. 2 | -------------------------------------------------------------------------------- /helm/micro-integrator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/micro-integrator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/templates/service.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/helm/micro-integrator/values.yaml -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/pks-micro-integrator/HEAD/pull_request_template.md --------------------------------------------------------------------------------