├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── components ├── api │ ├── io.cellery.cell.api.publisher │ │ ├── pom.xml │ │ ├── spotbugs-exclude.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── cellery │ │ │ │ └── cell │ │ │ │ └── api │ │ │ │ └── publisher │ │ │ │ ├── UpdateManager.java │ │ │ │ ├── beans │ │ │ │ ├── controller │ │ │ │ │ ├── API.java │ │ │ │ │ ├── APIMConfig.java │ │ │ │ │ ├── ApiDefinition.java │ │ │ │ │ ├── ApiDestination.java │ │ │ │ │ ├── Cell.java │ │ │ │ │ └── RestConfig.java │ │ │ │ └── request │ │ │ │ │ ├── ApiCreateRequest.java │ │ │ │ │ ├── ApiUpdateRequest.java │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ ├── InfoDefinition.java │ │ │ │ │ ├── Label.java │ │ │ │ │ ├── Method.java │ │ │ │ │ ├── Parameter.java │ │ │ │ │ ├── PathDefinition.java │ │ │ │ │ ├── PathsMapping.java │ │ │ │ │ ├── ProductionEndpoint.java │ │ │ │ │ └── SandboxEndpoint.java │ │ │ │ ├── exceptions │ │ │ │ └── APIException.java │ │ │ │ ├── internals │ │ │ │ └── ConfigManager.java │ │ │ │ └── utils │ │ │ │ ├── Constants.java │ │ │ │ └── RequestProcessor.java │ │ │ └── resources │ │ │ └── log4j2.properties │ └── pom.xml ├── gateway │ ├── io.cellery.cell.gateway.initializer │ │ ├── pom.xml │ │ ├── spotbugs-exclude.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── cellery │ │ │ │ └── cell │ │ │ │ └── gateway │ │ │ │ └── initializer │ │ │ │ ├── UpdateManager.java │ │ │ │ ├── beans │ │ │ │ ├── controller │ │ │ │ │ ├── API.java │ │ │ │ │ ├── APIMConfig.java │ │ │ │ │ ├── ApiDefinition.java │ │ │ │ │ ├── Cell.java │ │ │ │ │ └── RestConfig.java │ │ │ │ └── request │ │ │ │ │ ├── ApiCreateRequest.java │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ ├── Label.java │ │ │ │ │ ├── Method.java │ │ │ │ │ ├── Parameter.java │ │ │ │ │ ├── PathDefinition.java │ │ │ │ │ ├── PathsMapping.java │ │ │ │ │ ├── ProductionEndpoint.java │ │ │ │ │ └── SandboxEndpoint.java │ │ │ │ ├── exceptions │ │ │ │ └── APIException.java │ │ │ │ ├── internals │ │ │ │ └── ConfigManager.java │ │ │ │ └── utils │ │ │ │ ├── Constants.java │ │ │ │ └── RequestProcessor.java │ │ │ └── resources │ │ │ └── log4j2.properties │ └── pom.xml └── pom.xml ├── docker ├── api-publisher │ ├── Dockerfile │ └── pom.xml ├── global-apim │ ├── Dockerfile │ ├── global-apim-container-base │ │ ├── Dockerfile │ │ └── init.sh │ └── pom.xml ├── lightweight-idp │ ├── Dockerfile │ ├── pom.xml │ └── resources │ │ └── identity │ │ └── authenticationendpoint │ │ ├── basicauth.jsp │ │ ├── consent.jsp │ │ ├── cookie_policy.jsp │ │ ├── css │ │ └── custom-common.css │ │ ├── images │ │ ├── favicon.png │ │ └── logo-inverse.svg │ │ ├── login.jsp │ │ ├── logout.jsp │ │ ├── oauth2_consent.jsp │ │ ├── oauth2_error.jsp │ │ ├── oauth2_logout_consent.jsp │ │ ├── org │ │ └── wso2 │ │ │ └── carbon │ │ │ └── identity │ │ │ └── application │ │ │ └── authentication │ │ │ └── endpoint │ │ │ └── i18n │ │ │ └── Resources.properties │ │ ├── privacy_policy.jsp │ │ └── retry.jsp ├── microgateway │ ├── init-container-base │ │ ├── Dockerfile │ │ ├── README.md │ │ └── pom.xml │ ├── init-container │ │ ├── Dockerfile │ │ └── pom.xml │ ├── microgateway-container │ │ ├── Dockerfile │ │ └── pom.xml │ └── pom.xml └── pom.xml ├── installer ├── helm │ ├── cellery-istio-agents │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── telemetry-agents │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ └── telemetry-agent.yaml │ │ │ │ └── values.yaml │ │ └── values.yaml │ ├── cellery-runtime │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── apim │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── confs │ │ │ │ │ └── apim │ │ │ │ │ │ ├── api-manager.xml │ │ │ │ │ │ ├── carbon.xml │ │ │ │ │ │ ├── datasources │ │ │ │ │ │ └── master-datasources.xml │ │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── entitlement.properties │ │ │ │ │ │ └── identity.xml │ │ │ │ │ │ ├── log4j.properties │ │ │ │ │ │ ├── registry.xml │ │ │ │ │ │ ├── resources │ │ │ │ │ │ └── api_templates │ │ │ │ │ │ │ └── velocity_template.xml │ │ │ │ │ │ ├── security │ │ │ │ │ │ └── Owasp.CsrfGuard.Carbon.properties │ │ │ │ │ │ ├── synapse-handlers.xml │ │ │ │ │ │ ├── tomcat │ │ │ │ │ │ └── catalina-server.xml │ │ │ │ │ │ └── user-mgt.xml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── apim-conf-datasources.yaml │ │ │ │ │ ├── apim-conf-identity.yaml │ │ │ │ │ ├── apim-conf-security.yaml │ │ │ │ │ ├── apim-conf-template.yaml │ │ │ │ │ ├── apim-conf-tomcat.yaml │ │ │ │ │ ├── apim-conf.yaml │ │ │ │ │ ├── persistent-volumes.yaml │ │ │ │ │ ├── svcaccount.yaml │ │ │ │ │ ├── wso2apim-deployment.yaml │ │ │ │ │ ├── wso2apim-ingress.yaml │ │ │ │ │ ├── wso2apim-service.yaml │ │ │ │ │ └── wso2apim-volume-claim.yaml │ │ │ │ └── values.yaml │ │ │ ├── controller │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── 00-namespace.yaml │ │ │ │ │ ├── 01-cluster-role.yaml │ │ │ │ │ ├── 02-service-account.yaml │ │ │ │ │ ├── 03-cluster-role-binding.yaml │ │ │ │ │ ├── 04-crd-cell.yaml │ │ │ │ │ ├── 05-crd-composite.yaml │ │ │ │ │ ├── 06-crd-gateway.yaml │ │ │ │ │ ├── 07-crd-component.yaml │ │ │ │ │ ├── 08-crd-autoscale-policy.yaml │ │ │ │ │ ├── 09-crd-token-service.yaml │ │ │ │ │ ├── 10-config.yaml │ │ │ │ │ ├── 11-secret.yaml │ │ │ │ │ ├── 12-controller.yaml │ │ │ │ │ └── 13-webhook.yaml │ │ │ │ └── values.yaml │ │ │ ├── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── confs │ │ │ │ │ ├── config │ │ │ │ │ │ └── grafana.ini │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboardproviders.yaml │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── node-metrics.json │ │ │ │ │ │ │ └── pod-metrics.json │ │ │ │ │ └── datasources │ │ │ │ │ │ └── prometheus.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── grafana-conf.yaml │ │ │ │ │ ├── grafana-dashboards-default.yaml │ │ │ │ │ ├── grafana-dashboards.yaml │ │ │ │ │ ├── grafana-datasources.yaml │ │ │ │ │ └── k8s-metrics-grafana.yaml │ │ │ │ └── values.yaml │ │ │ ├── idp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── auth.json │ │ │ │ ├── confs │ │ │ │ │ ├── axis2 │ │ │ │ │ │ └── axis2.xml │ │ │ │ │ ├── carbon.xml │ │ │ │ │ ├── consent-mgt-config.xml │ │ │ │ │ ├── datasources │ │ │ │ │ │ ├── bps-datasources.xml │ │ │ │ │ │ └── master-datasources.xml │ │ │ │ │ ├── hazelcast.properties │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── entitlement.properties │ │ │ │ │ │ └── identity.xml │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── registry.xml │ │ │ │ │ ├── tomcat │ │ │ │ │ │ └── catalina-server.xml │ │ │ │ │ └── user-mgt.xml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── identity-server-conf-axis2.yaml │ │ │ │ │ ├── identity-server-conf-datasources.yaml │ │ │ │ │ ├── identity-server-conf-identity.yaml │ │ │ │ │ ├── identity-server-conf-tomcat.yaml │ │ │ │ │ ├── identity-server-conf.yaml │ │ │ │ │ ├── identity-server-deployment.yaml │ │ │ │ │ ├── identity-server-ingress.yaml │ │ │ │ │ ├── identity-server-service.yaml │ │ │ │ │ ├── identity-server-volume-claims.yaml │ │ │ │ │ ├── loadbalancer-secret.yaml │ │ │ │ │ ├── persistent-volumes.yaml │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ └── svcaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── mysql │ │ │ │ ├── Chart.yaml │ │ │ │ ├── confs │ │ │ │ │ ├── 0-init.sql │ │ │ │ │ ├── 1-init.sql │ │ │ │ │ └── 2-init.sql │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configurationFiles-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── initializationFiles-configmap.yaml │ │ │ │ │ ├── local-persistent-volume.yaml │ │ │ │ │ ├── nfs-persistent-volume.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ └── values.yaml │ │ │ ├── observability-agent │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── kube-agent.yaml │ │ │ │ │ ├── telemetry-agent.yaml │ │ │ │ │ └── tracing-agent.yaml │ │ │ │ └── values.yaml │ │ │ ├── portal │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── observability-portal-config.yaml │ │ │ │ │ └── observability-portal.yaml │ │ │ │ └── values.yaml │ │ │ ├── prometheus │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── confs │ │ │ │ │ └── prometheus.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── k8s-metrics-prometheus.yaml │ │ │ │ │ └── prometheus.yaml │ │ │ │ └── values.yaml │ │ │ └── sp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── confs │ │ │ │ └── deployment.yaml │ │ │ │ ├── templates │ │ │ │ ├── sp-worker-conf.yaml │ │ │ │ ├── sp-worker-siddhi.yaml │ │ │ │ └── sp-worker.yaml │ │ │ │ └── values.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── cleanup.sh │ ├── helm-service-account.yaml │ ├── ingress-controller │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── nginx-ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ └── psp-values.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-configmap.yaml │ │ │ │ ├── controller-daemonset.yaml │ │ │ │ ├── controller-deployment.yaml │ │ │ │ ├── controller-hpa.yaml │ │ │ │ ├── controller-metrics-service.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── controller-service.yaml │ │ │ │ ├── controller-servicemonitor.yaml │ │ │ │ ├── controller-stats-service.yaml │ │ │ │ ├── default-backend-deployment.yaml │ │ │ │ ├── default-backend-poddisruptionbudget.yaml │ │ │ │ ├── default-backend-service.yaml │ │ │ │ ├── headers-configmap.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── tcp-configmap.yaml │ │ │ │ └── udp-configmap.yaml │ │ │ │ └── values.yaml │ │ ├── requirements.yaml │ │ └── values.yaml │ ├── install.sh │ ├── istio-init │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── files │ │ │ ├── crd-10.yaml │ │ │ ├── crd-11.yaml │ │ │ ├── crd-12.yaml │ │ │ ├── crd-certmanager-10.yaml │ │ │ └── crd-certmanager-11.yaml │ │ ├── templates │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-crd-10.yaml │ │ │ ├── configmap-crd-11.yaml │ │ │ ├── configmap-crd-12.yaml │ │ │ ├── configmap-crd-certmanager-10.yaml │ │ │ ├── configmap-crd-certmanager-11.yaml │ │ │ ├── job-crd-10.yaml │ │ │ ├── job-crd-11.yaml │ │ │ ├── job-crd-12.yaml │ │ │ ├── job-crd-certmanager-10.yaml │ │ │ ├── job-crd-certmanager-11.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── istio │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ ├── certmanager │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── galley │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── validatingwebhookconfiguration.yaml.tpl │ │ │ │ └── values.yaml │ │ │ ├── gateways │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── preconfigured.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebindings.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── grafana │ │ │ │ ├── Chart.yaml │ │ │ │ ├── dashboards │ │ │ │ │ ├── galley-dashboard.json │ │ │ │ │ ├── istio-mesh-dashboard.json │ │ │ │ │ ├── istio-performance-dashboard.json │ │ │ │ │ ├── istio-service-dashboard.json │ │ │ │ │ ├── istio-workload-dashboard.json │ │ │ │ │ ├── mixer-dashboard.json │ │ │ │ │ └── pilot-dashboard.json │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap-custom-resources.yaml │ │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── create-custom-resources-job.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── grafana-ports-mtls.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-grafana-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── istiocoredns │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── kiali │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── demosecret.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-kiali-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── mixer │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── nodeagent │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── pilot │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── meshexpansion.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── prometheus │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebindings.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-prometheus-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── security │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cleanup-secrets.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── create-custom-resources-job.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── enable-mesh-mtls.yaml │ │ │ │ │ ├── enable-mesh-permissive.yaml │ │ │ │ │ ├── meshexpansion.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-citadel-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── sidecarInjectorWebhook │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── mutatingwebhook.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── tracing │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment-jaeger.yaml │ │ │ │ ├── deployment-zipkin.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service-jaeger.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-tracing-connection.yaml │ │ │ │ └── values.yaml │ │ ├── example-values │ │ │ ├── README.md │ │ │ ├── values-istio-example-sds-vault.yaml │ │ │ ├── values-istio-gateways.yaml │ │ │ ├── values-istio-googleca.yaml │ │ │ └── values-istio-multicluster-gateways.yaml │ │ ├── files │ │ │ └── injection-template.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _affinity.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _podDisruptionBudget.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── endpoints.yaml │ │ │ ├── install-custom-resources.sh.tpl │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── sidecar-injector-configmap.yaml │ │ ├── values-istio-demo-auth.yaml │ │ ├── values-istio-demo.yaml │ │ ├── values-istio-minimal.yaml │ │ ├── values-istio-remote.yaml │ │ ├── values-istio-sds-auth.yaml │ │ └── values.yaml │ ├── knative-crd │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ └── templates │ │ │ └── knative-serving-crds.yaml │ ├── knative │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── knative-serving.yaml │ │ └── values.yaml │ ├── metrics-server │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── aggregated-metrics-reader.yaml │ │ │ ├── auth-delegator.yaml │ │ │ ├── auth-reader.yaml │ │ │ ├── metrics-apiservice.yaml │ │ │ ├── metrics-server-deployment.yaml │ │ │ ├── metrics-server-service.yaml │ │ │ └── resource-reader.yaml │ │ └── values.yaml │ └── values-cellery.yaml ├── k8s-artefacts │ ├── controller │ │ ├── 00-namespace.yaml │ │ ├── 01-cluster-role.yaml │ │ ├── 02-service-account.yaml │ │ ├── 03-cluster-role-binding.yaml │ │ ├── 04-crd-cell.yaml │ │ ├── 05-crd-composite.yaml │ │ ├── 06-crd-gateway.yaml │ │ ├── 07-crd-component.yaml │ │ ├── 08-crd-autoscale-policy.yaml │ │ ├── 09-crd-token-service.yaml │ │ ├── 10-config.yaml │ │ ├── 11-secret.yaml │ │ ├── 12-controller.yaml │ │ └── 13-webhook.yaml │ ├── global-apim │ │ ├── artifacts-persistent-volume-claim.yaml │ │ ├── artifacts-persistent-volume.yaml │ │ ├── conf │ │ │ ├── api-manager.xml │ │ │ ├── carbon.xml │ │ │ ├── datasources │ │ │ │ └── master-datasources.xml │ │ │ ├── identity │ │ │ │ ├── entitlement.properties │ │ │ │ └── identity.xml │ │ │ ├── log4j.properties │ │ │ ├── registry.xml │ │ │ ├── resources │ │ │ │ └── api_templates │ │ │ │ │ └── velocity_template.xml │ │ │ ├── security │ │ │ │ └── Owasp.CsrfGuard.Carbon.properties │ │ │ ├── synapse-handlers.xml │ │ │ ├── tomcat │ │ │ │ └── catalina-server.xml │ │ │ └── user-mgt.xml │ │ ├── global-apim-volatile.yaml │ │ ├── global-apim.yaml │ │ ├── persistent-volume-claim-local.yaml │ │ ├── persistent-volume-local-dev.yaml │ │ └── persistent-volume-local.yaml │ ├── global-idp │ │ ├── conf │ │ │ ├── axis2 │ │ │ │ └── axis2.xml │ │ │ ├── carbon.xml │ │ │ ├── consent-mgt-config.xml │ │ │ ├── datasources │ │ │ │ ├── bps-datasources.xml │ │ │ │ └── master-datasources.xml │ │ │ ├── hazelcast.properties │ │ │ ├── identity │ │ │ │ ├── entitlement.properties │ │ │ │ └── identity.xml │ │ │ ├── log4j.properties │ │ │ ├── registry.xml │ │ │ ├── tomcat │ │ │ │ └── catalina-server.xml │ │ │ └── user-mgt.xml │ │ └── global-idp.yaml │ ├── metrics-server │ │ ├── aggregated-metrics-reader.yaml │ │ ├── auth-delegator.yaml │ │ ├── auth-reader.yaml │ │ ├── metrics-apiservice.yaml │ │ ├── metrics-server-deployment.yaml │ │ ├── metrics-server-service.yaml │ │ └── resource-reader.yaml │ ├── minikube │ │ └── calico.yaml │ ├── mysql │ │ ├── dbscripts │ │ │ └── init.sql │ │ ├── mysql-deployment-volatile.yaml │ │ ├── mysql-deployment.yaml │ │ ├── mysql-persistent-volume-claim.yaml │ │ ├── mysql-persistent-volumes-local-dev.yaml │ │ ├── mysql-persistent-volumes-local.yaml │ │ ├── mysql-persistent-volumes.yaml │ │ └── mysql-service.yaml │ ├── nfs │ │ ├── nfs-persistent-volume-claim.yaml │ │ ├── nfs-persistent-volume-local.yaml │ │ └── nfs-server.yaml │ ├── observability │ │ ├── grafana │ │ │ ├── config │ │ │ │ └── grafana.ini │ │ │ ├── dashboards │ │ │ │ ├── dashboardproviders.yaml │ │ │ │ └── default │ │ │ │ │ ├── node-metrics.json │ │ │ │ │ └── pod-metrics.json │ │ │ ├── datasources │ │ │ │ └── prometheus.yaml │ │ │ └── k8s-metrics-grafana.yaml │ │ ├── observability-agent │ │ │ ├── kube-agent.yaml │ │ │ ├── telemetry-agent.yaml │ │ │ └── tracing-agent.yaml │ │ ├── portal │ │ │ └── observability-portal.yaml │ │ ├── prometheus │ │ │ ├── config │ │ │ │ └── prometheus.yaml │ │ │ └── k8s-metrics-prometheus.yaml │ │ └── sp │ │ │ ├── conf │ │ │ └── deployment.yaml │ │ │ └── sp-worker.yaml │ ├── system │ │ ├── cloud-generic.yaml │ │ ├── istio-crds.yaml │ │ ├── istio-demo-cellery-auth.yaml │ │ ├── istio-demo-cellery.yaml │ │ ├── istio-gateway.yaml │ │ ├── knative-serving-crds.yaml │ │ ├── knative-serving.yaml │ │ ├── mandatory.yaml │ │ ├── ns-init.yaml │ │ └── service-nodeport.yaml │ └── telepresence │ │ ├── telepresence-cell.yaml │ │ └── telepresence-deployment.yaml ├── packer │ ├── cellery-full-runtime-imgs │ │ ├── .DS_Store │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── http │ │ │ └── preseed.cfg │ │ ├── resources │ │ │ ├── 50-cellery.yaml │ │ │ ├── cellery-runtime-values.yaml │ │ │ ├── ingress-controller-values.yaml │ │ │ └── rbac-config.yaml │ │ ├── script │ │ │ ├── cellery.sh │ │ │ ├── cleanup.sh │ │ │ ├── docker-k8s.sh │ │ │ ├── minimize.sh │ │ │ ├── motd.sh │ │ │ ├── update.sh │ │ │ ├── vagrant.sh │ │ │ └── virtualbox.sh │ │ └── ubuntu.json │ ├── cellery-min-runtime-imgs │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── http │ │ │ └── preseed.cfg │ │ ├── resources │ │ │ ├── 50-cellery.yaml │ │ │ ├── cellery-runtime-values.yaml │ │ │ ├── ingress-controller-values.yaml │ │ │ └── rbac-config.yaml │ │ ├── script │ │ │ ├── cellery.sh │ │ │ ├── cleanup.sh │ │ │ ├── docker-k8s.sh │ │ │ ├── minimize.sh │ │ │ ├── motd.sh │ │ │ ├── update.sh │ │ │ ├── vagrant.sh │ │ │ └── virtualbox.sh │ │ └── ubuntu.json │ ├── gapim-runtime-images │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── http │ │ │ └── preseed.cfg │ │ ├── resources │ │ │ └── 50-cellery.yaml │ │ ├── script │ │ │ ├── cellery.sh │ │ │ ├── cleanup.sh │ │ │ ├── docker-k8s.sh │ │ │ ├── minimize.sh │ │ │ ├── motd.sh │ │ │ ├── update.sh │ │ │ ├── vagrant.sh │ │ │ └── virtualbox.sh │ │ └── ubuntu.json │ └── minimum-runtime-images │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── http │ │ └── preseed.cfg │ │ ├── resources │ │ └── 50-cellery.yaml │ │ ├── script │ │ ├── cellery.sh │ │ ├── cleanup.sh │ │ ├── docker-k8s.sh │ │ ├── minimize.sh │ │ ├── motd.sh │ │ ├── update.sh │ │ ├── vagrant.sh │ │ └── virtualbox.sh │ │ └── ubuntu.json └── scripts │ └── cellery-runtime-deployer │ ├── README.md │ ├── cellery-cleanup.sh │ ├── cellery-deploy.sh │ ├── cellery.env.gcp │ └── cellery.env.kubeadm ├── issue_template.md ├── pom.xml └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/README.md -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/pom.xml -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/spotbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/spotbugs-exclude.xml -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/UpdateManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/UpdateManager.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/API.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/API.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/APIMConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/APIMConfig.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/ApiDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/ApiDefinition.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/ApiDestination.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/ApiDestination.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/Cell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/Cell.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/RestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/controller/RestConfig.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ApiCreateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ApiCreateRequest.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ApiUpdateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ApiUpdateRequest.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Endpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Endpoint.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/InfoDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/InfoDefinition.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Label.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Method.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/Parameter.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/PathDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/PathDefinition.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/PathsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/PathsMapping.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ProductionEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/ProductionEndpoint.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/SandboxEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/beans/request/SandboxEndpoint.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/exceptions/APIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/exceptions/APIException.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/internals/ConfigManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/internals/ConfigManager.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/utils/Constants.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/utils/RequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/java/io/cellery/cell/api/publisher/utils/RequestProcessor.java -------------------------------------------------------------------------------- /components/api/io.cellery.cell.api.publisher/src/main/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/io.cellery.cell.api.publisher/src/main/resources/log4j2.properties -------------------------------------------------------------------------------- /components/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/api/pom.xml -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/pom.xml -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/spotbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/spotbugs-exclude.xml -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/UpdateManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/UpdateManager.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/API.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/API.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/APIMConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/APIMConfig.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/ApiDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/ApiDefinition.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/Cell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/Cell.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/RestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/controller/RestConfig.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/ApiCreateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/ApiCreateRequest.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Endpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Endpoint.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Label.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Label.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Method.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/Parameter.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/PathDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/PathDefinition.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/PathsMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/PathsMapping.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/ProductionEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/ProductionEndpoint.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/SandboxEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/beans/request/SandboxEndpoint.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/exceptions/APIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/exceptions/APIException.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/internals/ConfigManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/internals/ConfigManager.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/utils/Constants.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/utils/RequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/java/io/cellery/cell/gateway/initializer/utils/RequestProcessor.java -------------------------------------------------------------------------------- /components/gateway/io.cellery.cell.gateway.initializer/src/main/resources/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/io.cellery.cell.gateway.initializer/src/main/resources/log4j2.properties -------------------------------------------------------------------------------- /components/gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/gateway/pom.xml -------------------------------------------------------------------------------- /components/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/components/pom.xml -------------------------------------------------------------------------------- /docker/api-publisher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/api-publisher/Dockerfile -------------------------------------------------------------------------------- /docker/api-publisher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/api-publisher/pom.xml -------------------------------------------------------------------------------- /docker/global-apim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/global-apim/Dockerfile -------------------------------------------------------------------------------- /docker/global-apim/global-apim-container-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/global-apim/global-apim-container-base/Dockerfile -------------------------------------------------------------------------------- /docker/global-apim/global-apim-container-base/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/global-apim/global-apim-container-base/init.sh -------------------------------------------------------------------------------- /docker/global-apim/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/global-apim/pom.xml -------------------------------------------------------------------------------- /docker/lightweight-idp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/Dockerfile -------------------------------------------------------------------------------- /docker/lightweight-idp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/pom.xml -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/basicauth.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/basicauth.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/consent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/consent.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/cookie_policy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/cookie_policy.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/css/custom-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/css/custom-common.css -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/images/favicon.png -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/images/logo-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/images/logo-inverse.svg -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/login.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/logout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/logout.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_consent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_consent.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_error.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_logout_consent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/oauth2_logout_consent.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/org/wso2/carbon/identity/application/authentication/endpoint/i18n/Resources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/org/wso2/carbon/identity/application/authentication/endpoint/i18n/Resources.properties -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/privacy_policy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/privacy_policy.jsp -------------------------------------------------------------------------------- /docker/lightweight-idp/resources/identity/authenticationendpoint/retry.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/lightweight-idp/resources/identity/authenticationendpoint/retry.jsp -------------------------------------------------------------------------------- /docker/microgateway/init-container-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/init-container-base/Dockerfile -------------------------------------------------------------------------------- /docker/microgateway/init-container-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/init-container-base/README.md -------------------------------------------------------------------------------- /docker/microgateway/init-container-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/init-container-base/pom.xml -------------------------------------------------------------------------------- /docker/microgateway/init-container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/init-container/Dockerfile -------------------------------------------------------------------------------- /docker/microgateway/init-container/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/init-container/pom.xml -------------------------------------------------------------------------------- /docker/microgateway/microgateway-container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/microgateway-container/Dockerfile -------------------------------------------------------------------------------- /docker/microgateway/microgateway-container/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/microgateway-container/pom.xml -------------------------------------------------------------------------------- /docker/microgateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/microgateway/pom.xml -------------------------------------------------------------------------------- /docker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/docker/pom.xml -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-istio-agents/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-istio-agents/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/charts/telemetry-agents/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-istio-agents/charts/telemetry-agents/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/charts/telemetry-agents/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-istio-agents/charts/telemetry-agents/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/charts/telemetry-agents/templates/telemetry-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-istio-agents/charts/telemetry-agents/templates/telemetry-agent.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/charts/telemetry-agents/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/helm/cellery-istio-agents/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/api-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/api-manager.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/carbon.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/datasources/master-datasources.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/identity/entitlement.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/identity/entitlement.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/identity/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/identity/identity.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/log4j.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/registry.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/resources/api_templates/velocity_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/resources/api_templates/velocity_template.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/security/Owasp.CsrfGuard.Carbon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/security/Owasp.CsrfGuard.Carbon.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/synapse-handlers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/synapse-handlers.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/tomcat/catalina-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/tomcat/catalina-server.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/confs/apim/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/confs/apim/user-mgt.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Cellery global APIM 2 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf-datasources.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf-identity.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf-security.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf-template.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf-tomcat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf-tomcat.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/apim-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/apim-conf.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/persistent-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/persistent-volumes.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/svcaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/svcaccount.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/wso2apim-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/wso2apim-deployment.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/wso2apim-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/wso2apim-ingress.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/wso2apim-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/wso2apim-service.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/templates/wso2apim-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/templates/wso2apim-volume-claim.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/apim/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/apim/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/00-namespace.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/01-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/01-cluster-role.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/02-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/02-service-account.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/03-cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/03-cluster-role-binding.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/04-crd-cell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/04-crd-cell.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/05-crd-composite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/05-crd-composite.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/06-crd-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/06-crd-gateway.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/07-crd-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/07-crd-component.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/08-crd-autoscale-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/08-crd-autoscale-policy.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/09-crd-token-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/09-crd-token-service.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/10-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/10-config.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/11-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/11-secret.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/12-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/12-controller.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/templates/13-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/controller/templates/13-webhook.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/controller/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/confs/config/grafana.ini: -------------------------------------------------------------------------------- 1 | instance_name=http://cellery-k8s-metrics 2 | 3 | [users] 4 | default_theme=light 5 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/confs/dashboards/dashboardproviders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/confs/dashboards/dashboardproviders.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/confs/dashboards/default/node-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/confs/dashboards/default/node-metrics.json -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/confs/dashboards/default/pod-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/confs/dashboards/default/pod-metrics.json -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/confs/datasources/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/confs/datasources/prometheus.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/templates/grafana-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/templates/grafana-conf.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/templates/grafana-dashboards-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/templates/grafana-dashboards-default.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/templates/grafana-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/templates/grafana-dashboards.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/templates/grafana-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/templates/grafana-datasources.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/templates/k8s-metrics-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/templates/k8s-metrics-grafana.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/grafana/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/auth.json -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/axis2/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/axis2/axis2.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/carbon.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/consent-mgt-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/consent-mgt-config.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/datasources/bps-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/datasources/bps-datasources.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/datasources/master-datasources.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/hazelcast.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/hazelcast.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/identity/entitlement.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/identity/entitlement.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/identity/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/identity/identity.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/log4j.properties -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/registry.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/tomcat/catalina-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/tomcat/catalina-server.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/confs/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/confs/user-mgt.xml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/NOTES.txt -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-axis2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-axis2.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-datasources.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-identity.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-tomcat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf-tomcat.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-conf.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-deployment.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-ingress.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-service.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/identity-server-volume-claims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/identity-server-volume-claims.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/loadbalancer-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/loadbalancer-secret.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/persistent-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/persistent-volumes.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/rbac.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/secrets.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/templates/svcaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/templates/svcaccount.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/idp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/idp/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/confs/0-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/confs/0-init.sql -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/confs/1-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/confs/1-init.sql -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/confs/2-init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/confs/2-init.sql -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/configurationFiles-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/configurationFiles-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/initializationFiles-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/initializationFiles-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/local-persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/local-persistent-volume.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/nfs-persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/nfs-persistent-volume.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/pvc.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/secrets.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/templates/svc.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/mysql/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/observability-agent/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/observability-agent/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/templates/kube-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/observability-agent/templates/kube-agent.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/templates/telemetry-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/observability-agent/templates/telemetry-agent.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/templates/tracing-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/observability-agent/templates/tracing-agent.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/observability-agent/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/portal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/portal/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/portal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/portal/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/portal/templates/observability-portal-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/portal/templates/observability-portal-config.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/portal/templates/observability-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/portal/templates/observability-portal.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/portal/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/confs/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/confs/prometheus.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/templates/k8s-metrics-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/templates/k8s-metrics-prometheus.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/templates/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/templates/prometheus.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/.helmignore -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/confs/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/confs/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/templates/sp-worker-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/templates/sp-worker-conf.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/templates/sp-worker-siddhi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/templates/sp-worker-siddhi.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/templates/sp-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/templates/sp-worker.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/charts/sp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/charts/sp/values.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/requirements.yaml -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/cellery-runtime/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cellery-runtime/values.yaml -------------------------------------------------------------------------------- /installer/helm/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/cleanup.sh -------------------------------------------------------------------------------- /installer/helm/helm-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/helm-service-account.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/.helmignore -------------------------------------------------------------------------------- /installer/helm/ingress-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/.helmignore -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/OWNERS -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/README.md -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/ci/psp-values.yaml: -------------------------------------------------------------------------------- 1 | podSecurityPolicy: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-metrics-service.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-service.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-stats-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/controller-stats-service.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-deployment.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/default-backend-service.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/headers-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/headers-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/role.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/rolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/tcp-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/tcp-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/templates/udp-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/templates/udp-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/charts/nginx-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/charts/nginx-ingress/values.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/requirements.yaml -------------------------------------------------------------------------------- /installer/helm/ingress-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/ingress-controller/values.yaml -------------------------------------------------------------------------------- /installer/helm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/install.sh -------------------------------------------------------------------------------- /installer/helm/istio-init/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/README.md -------------------------------------------------------------------------------- /installer/helm/istio-init/files/crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/files/crd-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/files/crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/files/crd-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/files/crd-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/files/crd-12.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/files/crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/files/crd-certmanager-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/files/crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/files/crd-certmanager-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/configmap-crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/configmap-crd-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/configmap-crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/configmap-crd-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/configmap-crd-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/configmap-crd-12.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/configmap-crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/configmap-crd-certmanager-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/configmap-crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/configmap-crd-certmanager-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/job-crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/job-crd-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/job-crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/job-crd-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/job-crd-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/job-crd-12.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/job-crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/job-crd-certmanager-10.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/job-crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/job-crd-certmanager-11.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio-init/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio-init/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/README.md -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/NOTES.txt -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/issuer.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/rbac.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/certmanager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/certmanager/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/templates/validatingwebhookconfiguration.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/templates/validatingwebhookconfiguration.yaml.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/galley/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/galley/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/_affinity.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/autoscale.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/preconfigured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/preconfigured.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/role.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/rolebindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/rolebindings.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/gateways/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/gateways/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/galley-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/galley-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/istio-mesh-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/istio-mesh-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/istio-performance-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/istio-performance-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/istio-service-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/istio-service-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/istio-workload-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/istio-workload-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/mixer-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/mixer-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/dashboards/pilot-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/dashboards/pilot-dashboard.json -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/configmap-custom-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/configmap-custom-resources.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/configmap-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/configmap-dashboards.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/create-custom-resources-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/create-custom-resources-job.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/grafana-ports-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/grafana-ports-mtls.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/templates/tests/test-grafana-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/templates/tests/test-grafana-connection.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/grafana/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/istiocoredns/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/istiocoredns/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/demosecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/demosecret.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/ingress.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/templates/tests/test-kiali-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/templates/tests/test-kiali-connection.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/kiali/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/kiali/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/autoscale.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/config.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/mixer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/mixer/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/templates/daemonset.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/nodeagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/nodeagent/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/autoscale.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/meshexpansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/meshexpansion.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/pilot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/pilot/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/clusterrolebindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/clusterrolebindings.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/ingress.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/templates/tests/test-prometheus-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/templates/tests/test-prometheus-connection.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/cleanup-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/cleanup-secrets.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/create-custom-resources-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/create-custom-resources-job.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/enable-mesh-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/enable-mesh-mtls.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/enable-mesh-permissive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/enable-mesh-permissive.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/meshexpansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/meshexpansion.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/templates/tests/test-citadel-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/templates/tests/test-citadel-connection.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/security/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/deployment.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/mutatingwebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/mutatingwebhook.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/sidecarInjectorWebhook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/sidecarInjectorWebhook/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/deployment-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/deployment-jaeger.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/deployment-zipkin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/deployment-zipkin.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/ingress.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/service-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/service-jaeger.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/templates/tests/test-tracing-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/templates/tests/test-tracing-connection.yaml -------------------------------------------------------------------------------- /installer/helm/istio/charts/tracing/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/charts/tracing/values.yaml -------------------------------------------------------------------------------- /installer/helm/istio/example-values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/example-values/README.md -------------------------------------------------------------------------------- /installer/helm/istio/example-values/values-istio-example-sds-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/example-values/values-istio-example-sds-vault.yaml -------------------------------------------------------------------------------- /installer/helm/istio/example-values/values-istio-gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/example-values/values-istio-gateways.yaml -------------------------------------------------------------------------------- /installer/helm/istio/example-values/values-istio-googleca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/example-values/values-istio-googleca.yaml -------------------------------------------------------------------------------- /installer/helm/istio/example-values/values-istio-multicluster-gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/example-values/values-istio-multicluster-gateways.yaml -------------------------------------------------------------------------------- /installer/helm/istio/files/injection-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/files/injection-template.yaml -------------------------------------------------------------------------------- /installer/helm/istio/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/requirements.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/NOTES.txt -------------------------------------------------------------------------------- /installer/helm/istio/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/_affinity.tpl -------------------------------------------------------------------------------- /installer/helm/istio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/_helpers.tpl -------------------------------------------------------------------------------- /installer/helm/istio/templates/_podDisruptionBudget.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/_podDisruptionBudget.tpl -------------------------------------------------------------------------------- /installer/helm/istio/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/clusterrole.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/endpoints.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/install-custom-resources.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/install-custom-resources.sh.tpl -------------------------------------------------------------------------------- /installer/helm/istio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/service.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /installer/helm/istio/templates/sidecar-injector-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/templates/sidecar-injector-configmap.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values-istio-demo-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values-istio-demo-auth.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values-istio-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values-istio-demo.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values-istio-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values-istio-minimal.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values-istio-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values-istio-remote.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values-istio-sds-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values-istio-sds-auth.yaml -------------------------------------------------------------------------------- /installer/helm/istio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/istio/values.yaml -------------------------------------------------------------------------------- /installer/helm/knative-crd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative-crd/.helmignore -------------------------------------------------------------------------------- /installer/helm/knative-crd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative-crd/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/knative-crd/templates/knative-serving-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative-crd/templates/knative-serving-crds.yaml -------------------------------------------------------------------------------- /installer/helm/knative/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative/.helmignore -------------------------------------------------------------------------------- /installer/helm/knative/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/knative/templates/knative-serving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative/templates/knative-serving.yaml -------------------------------------------------------------------------------- /installer/helm/knative/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/knative/values.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/.helmignore -------------------------------------------------------------------------------- /installer/helm/metrics-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/Chart.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/aggregated-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/aggregated-metrics-reader.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/auth-delegator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/auth-delegator.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/auth-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/auth-reader.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/metrics-apiservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/metrics-apiservice.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/metrics-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/metrics-server-deployment.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/metrics-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/metrics-server-service.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/templates/resource-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/templates/resource-reader.yaml -------------------------------------------------------------------------------- /installer/helm/metrics-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/metrics-server/values.yaml -------------------------------------------------------------------------------- /installer/helm/values-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/helm/values-cellery.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/00-namespace.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/01-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/01-cluster-role.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/02-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/02-service-account.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/03-cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/03-cluster-role-binding.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/04-crd-cell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/04-crd-cell.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/05-crd-composite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/05-crd-composite.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/06-crd-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/06-crd-gateway.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/07-crd-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/07-crd-component.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/08-crd-autoscale-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/08-crd-autoscale-policy.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/09-crd-token-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/09-crd-token-service.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/10-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/10-config.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/11-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/11-secret.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/12-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/12-controller.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/controller/13-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/controller/13-webhook.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/artifacts-persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/artifacts-persistent-volume-claim.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/artifacts-persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/artifacts-persistent-volume.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/api-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/api-manager.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/carbon.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/datasources/master-datasources.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/identity/entitlement.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/identity/entitlement.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/identity/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/identity/identity.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/log4j.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/registry.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/resources/api_templates/velocity_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/resources/api_templates/velocity_template.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/security/Owasp.CsrfGuard.Carbon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/security/Owasp.CsrfGuard.Carbon.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/synapse-handlers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/synapse-handlers.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/tomcat/catalina-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/tomcat/catalina-server.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/conf/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/conf/user-mgt.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/global-apim-volatile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/global-apim-volatile.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/global-apim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/global-apim.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/persistent-volume-claim-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/persistent-volume-claim-local.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/persistent-volume-local-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/persistent-volume-local-dev.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-apim/persistent-volume-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-apim/persistent-volume-local.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/axis2/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/axis2/axis2.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/carbon.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/consent-mgt-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/consent-mgt-config.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/datasources/bps-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/datasources/bps-datasources.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/datasources/master-datasources.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/hazelcast.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/hazelcast.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/identity/entitlement.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/identity/entitlement.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/identity/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/identity/identity.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/log4j.properties -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/registry.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/tomcat/catalina-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/tomcat/catalina-server.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/conf/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/conf/user-mgt.xml -------------------------------------------------------------------------------- /installer/k8s-artefacts/global-idp/global-idp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/global-idp/global-idp.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/aggregated-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/aggregated-metrics-reader.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/auth-delegator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/auth-delegator.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/auth-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/auth-reader.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/metrics-apiservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/metrics-apiservice.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/metrics-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/metrics-server-deployment.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/metrics-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/metrics-server-service.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/metrics-server/resource-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/metrics-server/resource-reader.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/minikube/calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/minikube/calico.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/dbscripts/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/dbscripts/init.sql -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-deployment-volatile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-deployment-volatile.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-deployment.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-persistent-volume-claim.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-persistent-volumes-local-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-persistent-volumes-local-dev.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-persistent-volumes-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-persistent-volumes-local.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-persistent-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-persistent-volumes.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/mysql/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/mysql/mysql-service.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/nfs/nfs-persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/nfs/nfs-persistent-volume-claim.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/nfs/nfs-persistent-volume-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/nfs/nfs-persistent-volume-local.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/nfs/nfs-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/nfs/nfs-server.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/config/grafana.ini: -------------------------------------------------------------------------------- 1 | instance_name=http://cellery-k8s-metrics 2 | 3 | [users] 4 | default_theme=light 5 | -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/dashboards/dashboardproviders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/grafana/dashboards/dashboardproviders.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/dashboards/default/node-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/grafana/dashboards/default/node-metrics.json -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/dashboards/default/pod-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/grafana/dashboards/default/pod-metrics.json -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/datasources/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/grafana/datasources/prometheus.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/grafana/k8s-metrics-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/grafana/k8s-metrics-grafana.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/observability-agent/kube-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/observability-agent/kube-agent.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/observability-agent/telemetry-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/observability-agent/telemetry-agent.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/observability-agent/tracing-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/observability-agent/tracing-agent.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/portal/observability-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/portal/observability-portal.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/prometheus/config/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/prometheus/config/prometheus.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/prometheus/k8s-metrics-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/prometheus/k8s-metrics-prometheus.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/sp/conf/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/sp/conf/deployment.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/observability/sp/sp-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/observability/sp/sp-worker.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/cloud-generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/cloud-generic.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/istio-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/istio-crds.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/istio-demo-cellery-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/istio-demo-cellery-auth.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/istio-demo-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/istio-demo-cellery.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/istio-gateway.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/knative-serving-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/knative-serving-crds.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/knative-serving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/knative-serving.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/mandatory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/mandatory.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/ns-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/ns-init.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/system/service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/system/service-nodeport.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/telepresence/telepresence-cell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/telepresence/telepresence-cell.yaml -------------------------------------------------------------------------------- /installer/k8s-artefacts/telepresence/telepresence-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/k8s-artefacts/telepresence/telepresence-deployment.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/.DS_Store -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/build.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/http/preseed.cfg -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/resources/50-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/resources/50-cellery.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/resources/cellery-runtime-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/resources/cellery-runtime-values.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/resources/ingress-controller-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/resources/ingress-controller-values.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/resources/rbac-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/resources/rbac-config.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/cellery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/cellery.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/docker-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/docker-k8s.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/minimize.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/motd.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/update.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/vagrant.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/script/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/script/virtualbox.sh -------------------------------------------------------------------------------- /installer/packer/cellery-full-runtime-imgs/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-full-runtime-imgs/ubuntu.json -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/build.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/http/preseed.cfg -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/resources/50-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/resources/50-cellery.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/resources/cellery-runtime-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/resources/cellery-runtime-values.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/resources/ingress-controller-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/resources/ingress-controller-values.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/resources/rbac-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/resources/rbac-config.yaml -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/cellery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/cellery.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/docker-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/docker-k8s.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/minimize.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/motd.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/update.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/vagrant.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/script/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/script/virtualbox.sh -------------------------------------------------------------------------------- /installer/packer/cellery-min-runtime-imgs/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/cellery-min-runtime-imgs/ubuntu.json -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/build.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/http/preseed.cfg -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/resources/50-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/resources/50-cellery.yaml -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/cellery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/cellery.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/docker-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/docker-k8s.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/minimize.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/motd.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/update.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/vagrant.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/script/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/script/virtualbox.sh -------------------------------------------------------------------------------- /installer/packer/gapim-runtime-images/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/gapim-runtime-images/ubuntu.json -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/build.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/http/preseed.cfg -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/resources/50-cellery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/resources/50-cellery.yaml -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/cellery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/cellery.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/cleanup.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/docker-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/docker-k8s.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/minimize.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/motd.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/update.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/vagrant.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/script/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/script/virtualbox.sh -------------------------------------------------------------------------------- /installer/packer/minimum-runtime-images/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/packer/minimum-runtime-images/ubuntu.json -------------------------------------------------------------------------------- /installer/scripts/cellery-runtime-deployer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/scripts/cellery-runtime-deployer/README.md -------------------------------------------------------------------------------- /installer/scripts/cellery-runtime-deployer/cellery-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/scripts/cellery-runtime-deployer/cellery-cleanup.sh -------------------------------------------------------------------------------- /installer/scripts/cellery-runtime-deployer/cellery-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/scripts/cellery-runtime-deployer/cellery-deploy.sh -------------------------------------------------------------------------------- /installer/scripts/cellery-runtime-deployer/cellery.env.gcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/scripts/cellery-runtime-deployer/cellery.env.gcp -------------------------------------------------------------------------------- /installer/scripts/cellery-runtime-deployer/cellery.env.kubeadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/installer/scripts/cellery-runtime-deployer/cellery.env.kubeadm -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/issue_template.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/pom.xml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/cellery-distribution/HEAD/pull_request_template.md --------------------------------------------------------------------------------