├── .gitignore ├── LICENSE ├── README.md ├── configs └── aerospike.template.conf ├── docs ├── aerospike-enterprise-4.6.0.tgz ├── aerospike-enterprise-4.7.0.tgz ├── aerospike-enterprise-4.8.0.tgz ├── aerospike-enterprise-4.9.0.tgz ├── aerospike-enterprise-5.0.0.tgz ├── aerospike-enterprise-5.1.0.tgz ├── aerospike-enterprise-5.2.0.tgz ├── aerospike-enterprise-5.3.0.tgz ├── aerospike-enterprise-5.4.0.tgz ├── aerospike-enterprise-5.5.0.tgz ├── aerospike-enterprise-5.5.1.tgz ├── artifacthub-repo.yml └── index.yaml ├── examples ├── shadow-device │ ├── README.md │ ├── aerospike-local-volume-provisioner.yaml │ ├── configmap │ │ └── aerospike.template.conf │ ├── namespace.yaml │ ├── service.yaml │ ├── statefulset-shadow-device.yaml │ ├── storageclass-aws.yaml │ └── storageclass-gcp.yaml └── storage-engine-device │ ├── README.md │ ├── aerospike-local-volume-provisioner.yaml │ ├── configmap │ └── aerospike.template.conf │ ├── namespace.yaml │ ├── service.yaml │ └── statefulset-raw-device.yaml ├── helm ├── .helmignore ├── CHANGELOG.md ├── Chart.yaml ├── README.md ├── charts │ └── .gitkeep ├── files │ ├── aerospike.template.conf │ ├── aerospike_rules.yaml │ ├── alertmanager.yaml │ └── ape.toml.template ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── alertmanager-configmap.yaml │ ├── alertmanager-operated-service.yaml │ ├── alertmanager-service.yaml │ ├── alertmanager-statefulset.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── externalipservices.yaml │ ├── grafana-configmap.yaml │ ├── grafana-service.yaml │ ├── grafana-statefulset.yaml │ ├── loadbalancerservices.yaml │ ├── nodeportservices.yaml │ ├── prometheus-configmap.yaml │ ├── prometheus-service.yaml │ ├── prometheus-statefulset.yaml │ ├── secrets.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── statefulset.yaml └── values.yaml ├── manifests ├── namespace.yaml ├── service.yaml ├── statefulset.yaml ├── storageclass-aws.yaml └── storageclass-gcp.yaml └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/README.md -------------------------------------------------------------------------------- /configs/aerospike.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/configs/aerospike.template.conf -------------------------------------------------------------------------------- /docs/aerospike-enterprise-4.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-4.6.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-4.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-4.7.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-4.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-4.8.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-4.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-4.9.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.0.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.1.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.2.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.3.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.4.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.5.0.tgz -------------------------------------------------------------------------------- /docs/aerospike-enterprise-5.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/aerospike-enterprise-5.5.1.tgz -------------------------------------------------------------------------------- /docs/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/artifacthub-repo.yml -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /examples/shadow-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/README.md -------------------------------------------------------------------------------- /examples/shadow-device/aerospike-local-volume-provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/aerospike-local-volume-provisioner.yaml -------------------------------------------------------------------------------- /examples/shadow-device/configmap/aerospike.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/configmap/aerospike.template.conf -------------------------------------------------------------------------------- /examples/shadow-device/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/namespace.yaml -------------------------------------------------------------------------------- /examples/shadow-device/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/service.yaml -------------------------------------------------------------------------------- /examples/shadow-device/statefulset-shadow-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/statefulset-shadow-device.yaml -------------------------------------------------------------------------------- /examples/shadow-device/storageclass-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/storageclass-aws.yaml -------------------------------------------------------------------------------- /examples/shadow-device/storageclass-gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/shadow-device/storageclass-gcp.yaml -------------------------------------------------------------------------------- /examples/storage-engine-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/README.md -------------------------------------------------------------------------------- /examples/storage-engine-device/aerospike-local-volume-provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/aerospike-local-volume-provisioner.yaml -------------------------------------------------------------------------------- /examples/storage-engine-device/configmap/aerospike.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/configmap/aerospike.template.conf -------------------------------------------------------------------------------- /examples/storage-engine-device/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/namespace.yaml -------------------------------------------------------------------------------- /examples/storage-engine-device/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/service.yaml -------------------------------------------------------------------------------- /examples/storage-engine-device/statefulset-raw-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/examples/storage-engine-device/statefulset-raw-device.yaml -------------------------------------------------------------------------------- /helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/.helmignore -------------------------------------------------------------------------------- /helm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/CHANGELOG.md -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/README.md -------------------------------------------------------------------------------- /helm/charts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/files/aerospike.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/files/aerospike.template.conf -------------------------------------------------------------------------------- /helm/files/aerospike_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/files/aerospike_rules.yaml -------------------------------------------------------------------------------- /helm/files/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/files/alertmanager.yaml -------------------------------------------------------------------------------- /helm/files/ape.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/files/ape.toml.template -------------------------------------------------------------------------------- /helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/alertmanager-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/alertmanager-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/alertmanager-operated-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/alertmanager-operated-service.yaml -------------------------------------------------------------------------------- /helm/templates/alertmanager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/alertmanager-service.yaml -------------------------------------------------------------------------------- /helm/templates/alertmanager-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/alertmanager-statefulset.yaml -------------------------------------------------------------------------------- /helm/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/templates/externalipservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/externalipservices.yaml -------------------------------------------------------------------------------- /helm/templates/grafana-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/grafana-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/grafana-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/grafana-service.yaml -------------------------------------------------------------------------------- /helm/templates/grafana-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/grafana-statefulset.yaml -------------------------------------------------------------------------------- /helm/templates/loadbalancerservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/loadbalancerservices.yaml -------------------------------------------------------------------------------- /helm/templates/nodeportservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/nodeportservices.yaml -------------------------------------------------------------------------------- /helm/templates/prometheus-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/prometheus-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/prometheus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/prometheus-service.yaml -------------------------------------------------------------------------------- /helm/templates/prometheus-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/prometheus-statefulset.yaml -------------------------------------------------------------------------------- /helm/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/secrets.yaml -------------------------------------------------------------------------------- /helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/service.yaml -------------------------------------------------------------------------------- /helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /manifests/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/manifests/namespace.yaml -------------------------------------------------------------------------------- /manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/manifests/service.yaml -------------------------------------------------------------------------------- /manifests/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/manifests/statefulset.yaml -------------------------------------------------------------------------------- /manifests/storageclass-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/manifests/storageclass-aws.yaml -------------------------------------------------------------------------------- /manifests/storageclass-gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/manifests/storageclass-gcp.yaml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-kubernetes-enterprise/HEAD/start.sh --------------------------------------------------------------------------------