├── LICENSE ├── README.md ├── apollo-portal ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment-portal.yaml │ ├── ingress-portal.yaml │ ├── service-portal.yaml │ └── service-portaldb.yaml └── values.yaml ├── apollo-service ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment-adminservice.yaml │ ├── deployment-configservice.yaml │ ├── ingress-adminservice.yaml │ ├── ingress-configservice.yaml │ ├── service-adminservice.yaml │ ├── service-configdb.yaml │ └── service-configservice.yaml └── values.yaml └── docs ├── CNAME ├── apollo-portal-0.1.0.tgz ├── apollo-portal-0.1.1.tgz ├── apollo-portal-0.1.2.tgz ├── apollo-portal-0.10.0.tgz ├── apollo-portal-0.2.0.tgz ├── apollo-portal-0.2.1.tgz ├── apollo-portal-0.2.2.tgz ├── apollo-portal-0.3.0.tgz ├── apollo-portal-0.3.1.tgz ├── apollo-portal-0.3.2.tgz ├── apollo-portal-0.4.0.tgz ├── apollo-portal-0.4.1.tgz ├── apollo-portal-0.5.0.tgz ├── apollo-portal-0.5.1.tgz ├── apollo-portal-0.6.0.tgz ├── apollo-portal-0.6.1.tgz ├── apollo-portal-0.7.0.tgz ├── apollo-portal-0.8.0.tgz ├── apollo-portal-0.9.0.tgz ├── apollo-service-0.1.0.tgz ├── apollo-service-0.1.1.tgz ├── apollo-service-0.1.2.tgz ├── apollo-service-0.10.0.tgz ├── apollo-service-0.2.0.tgz ├── apollo-service-0.2.1.tgz ├── apollo-service-0.2.2.tgz ├── apollo-service-0.3.0.tgz ├── apollo-service-0.3.1.tgz ├── apollo-service-0.3.2.tgz ├── apollo-service-0.4.0.tgz ├── apollo-service-0.4.1.tgz ├── apollo-service-0.5.0.tgz ├── apollo-service-0.5.1.tgz ├── apollo-service-0.6.0.tgz ├── apollo-service-0.6.1.tgz ├── apollo-service-0.7.0.tgz ├── apollo-service-0.8.0.tgz ├── apollo-service-0.9.0.tgz ├── index.html └── index.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /apollo-portal/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/.helmignore -------------------------------------------------------------------------------- /apollo-portal/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/Chart.yaml -------------------------------------------------------------------------------- /apollo-portal/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/NOTES.txt -------------------------------------------------------------------------------- /apollo-portal/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/_helpers.tpl -------------------------------------------------------------------------------- /apollo-portal/templates/deployment-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/deployment-portal.yaml -------------------------------------------------------------------------------- /apollo-portal/templates/ingress-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/ingress-portal.yaml -------------------------------------------------------------------------------- /apollo-portal/templates/service-portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/service-portal.yaml -------------------------------------------------------------------------------- /apollo-portal/templates/service-portaldb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/templates/service-portaldb.yaml -------------------------------------------------------------------------------- /apollo-portal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-portal/values.yaml -------------------------------------------------------------------------------- /apollo-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/.helmignore -------------------------------------------------------------------------------- /apollo-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/Chart.yaml -------------------------------------------------------------------------------- /apollo-service/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/NOTES.txt -------------------------------------------------------------------------------- /apollo-service/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/_helpers.tpl -------------------------------------------------------------------------------- /apollo-service/templates/deployment-adminservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/deployment-adminservice.yaml -------------------------------------------------------------------------------- /apollo-service/templates/deployment-configservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/deployment-configservice.yaml -------------------------------------------------------------------------------- /apollo-service/templates/ingress-adminservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/ingress-adminservice.yaml -------------------------------------------------------------------------------- /apollo-service/templates/ingress-configservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/ingress-configservice.yaml -------------------------------------------------------------------------------- /apollo-service/templates/service-adminservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/service-adminservice.yaml -------------------------------------------------------------------------------- /apollo-service/templates/service-configdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/service-configdb.yaml -------------------------------------------------------------------------------- /apollo-service/templates/service-configservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/templates/service-configservice.yaml -------------------------------------------------------------------------------- /apollo-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/apollo-service/values.yaml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | charts.apolloconfig.com -------------------------------------------------------------------------------- /docs/apollo-portal-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.1.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.1.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.1.2.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.10.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.2.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.2.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.2.2.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.3.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.3.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.3.2.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.4.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.4.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.5.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.5.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.6.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.6.1.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.7.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.8.0.tgz -------------------------------------------------------------------------------- /docs/apollo-portal-0.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-portal-0.9.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.1.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.1.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.1.2.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.10.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.2.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.2.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.2.2.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.3.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.3.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.3.2.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.4.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.4.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.5.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.5.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.6.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.6.1.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.7.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.8.0.tgz -------------------------------------------------------------------------------- /docs/apollo-service-0.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/apollo-service-0.9.0.tgz -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo-helm-chart/HEAD/docs/index.yaml --------------------------------------------------------------------------------