├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── helm └── micro-integrator │ ├── Chart.yaml │ ├── README.md │ ├── auth.json │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── wso2mi-deployment.yaml │ ├── wso2mi-management-ingress.yaml │ ├── wso2mi-secrets.yaml │ ├── wso2mi-service.yaml │ └── wso2mi-services-ingress.yaml │ └── values.yaml ├── issue_template.md └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/README.md -------------------------------------------------------------------------------- /helm/micro-integrator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/Chart.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/README.md -------------------------------------------------------------------------------- /helm/micro-integrator/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/auth.json -------------------------------------------------------------------------------- /helm/micro-integrator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/micro-integrator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/micro-integrator/templates/wso2mi-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/wso2mi-deployment.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/wso2mi-management-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/wso2mi-management-ingress.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/wso2mi-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/wso2mi-secrets.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/wso2mi-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/wso2mi-service.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/templates/wso2mi-services-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/templates/wso2mi-services-ingress.yaml -------------------------------------------------------------------------------- /helm/micro-integrator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/helm/micro-integrator/values.yaml -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/kubernetes-mi/HEAD/pull_request_template.md --------------------------------------------------------------------------------