├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── config ├── config.yaml ├── images.yaml ├── latest-images.yaml ├── resources.yaml └── secrets.yaml ├── contrib └── gke │ ├── Dockerfile │ ├── README.md │ ├── docker-build.sh │ ├── gcloud │ ├── install-deps.sh │ ├── kubectl │ └── make ├── helm ├── ota-app │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret-signing-key.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-campaigner │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemon-deployment.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-device-registry │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemon-deployment.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── podautoscaler.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-director │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemon-deployment.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── podautoscaler.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-treehub │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── auth-plus-client-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment-internal.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── persistent-volume.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── podautoscaler.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service-internal.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-tuf-keyserver │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemon-deployment.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── podautoscaler.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── ota-tuf-reposerver │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── auth-plus-client-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment-internal.yaml │ │ ├── ingress-internal.yaml │ │ ├── ingress.yaml │ │ ├── persistent-volume-claim.yaml │ │ ├── persistent-volume.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service-internal.yaml │ │ └── service.yaml │ └── values.yaml └── ota-web-events │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── auth-plus-client-secret.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── poddisruptionbudget.yaml │ └── service.yaml │ └── values.yaml ├── scripts ├── certs │ ├── client.cnf │ ├── client.ext │ ├── device_ca.cnf │ ├── server.cnf │ ├── server.ext │ └── server_ca.cnf ├── sql │ ├── create_databases.sql │ └── install_plugins.sql └── start.sh └── templates ├── infra ├── kafka.tmpl.yaml ├── mysql.tmpl.yaml └── zookeeper.tmpl.yaml ├── ingress └── ingress.tmpl.yaml └── services ├── app.tmpl.yaml ├── campaigner-daemon.tmpl.yaml ├── campaigner.tmpl.yaml ├── device-registry-daemon.tmpl.yaml ├── device-registry.tmpl.yaml ├── director-daemon.tmpl.yaml ├── director.tmpl.yaml ├── gateway.tmpl.yaml ├── treehub.tmpl.yaml ├── tuf-keyserver-daemon.tmpl.yaml ├── tuf-keyserver.tmpl.yaml ├── tuf-reposerver.tmpl.yaml └── web-events.tmpl.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | generated/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/config/images.yaml -------------------------------------------------------------------------------- /config/latest-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/config/latest-images.yaml -------------------------------------------------------------------------------- /config/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/config/resources.yaml -------------------------------------------------------------------------------- /config/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/config/secrets.yaml -------------------------------------------------------------------------------- /contrib/gke/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/Dockerfile -------------------------------------------------------------------------------- /contrib/gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/README.md -------------------------------------------------------------------------------- /contrib/gke/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/docker-build.sh -------------------------------------------------------------------------------- /contrib/gke/gcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/gcloud -------------------------------------------------------------------------------- /contrib/gke/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/install-deps.sh -------------------------------------------------------------------------------- /contrib/gke/kubectl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/kubectl -------------------------------------------------------------------------------- /contrib/gke/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/contrib/gke/make -------------------------------------------------------------------------------- /helm/ota-app/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/.helmignore -------------------------------------------------------------------------------- /helm/ota-app/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-app/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-app/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/secret-signing-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/secret-signing-key.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-app/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-app/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-app/values.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/.helmignore -------------------------------------------------------------------------------- /helm/ota-campaigner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/daemon-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/daemon-deployment.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-campaigner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-campaigner/values.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/.helmignore -------------------------------------------------------------------------------- /helm/ota-device-registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/daemon-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/daemon-deployment.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/podautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/podautoscaler.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-device-registry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-device-registry/values.yaml -------------------------------------------------------------------------------- /helm/ota-director/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/.helmignore -------------------------------------------------------------------------------- /helm/ota-director/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-director/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-director/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/daemon-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/daemon-deployment.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/podautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/podautoscaler.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-director/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-director/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-director/values.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/.helmignore -------------------------------------------------------------------------------- /helm/ota-treehub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/README.md -------------------------------------------------------------------------------- /helm/ota-treehub/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-treehub/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-treehub/templates/auth-plus-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/auth-plus-client-secret.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/deployment-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/deployment-internal.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/persistent-volume.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/podautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/podautoscaler.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/service-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/service-internal.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-treehub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-treehub/values.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/.helmignore -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/daemon-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/daemon-deployment.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/podautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/podautoscaler.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-keyserver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-keyserver/values.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/.helmignore -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/auth-plus-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/auth-plus-client-secret.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/deployment-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/deployment-internal.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/ingress-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/ingress-internal.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/persistent-volume-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/persistent-volume-claim.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/persistent-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/persistent-volume.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/secret.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/service-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/service-internal.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-tuf-reposerver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-tuf-reposerver/values.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/.helmignore -------------------------------------------------------------------------------- /helm/ota-web-events/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/Chart.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/ota-web-events/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/ota-web-events/templates/auth-plus-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/auth-plus-client-secret.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/templates/service.yaml -------------------------------------------------------------------------------- /helm/ota-web-events/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/helm/ota-web-events/values.yaml -------------------------------------------------------------------------------- /scripts/certs/client.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/client.cnf -------------------------------------------------------------------------------- /scripts/certs/client.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/client.ext -------------------------------------------------------------------------------- /scripts/certs/device_ca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/device_ca.cnf -------------------------------------------------------------------------------- /scripts/certs/server.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/server.cnf -------------------------------------------------------------------------------- /scripts/certs/server.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/server.ext -------------------------------------------------------------------------------- /scripts/certs/server_ca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/certs/server_ca.cnf -------------------------------------------------------------------------------- /scripts/sql/create_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/sql/create_databases.sql -------------------------------------------------------------------------------- /scripts/sql/install_plugins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/sql/install_plugins.sql -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /templates/infra/kafka.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/infra/kafka.tmpl.yaml -------------------------------------------------------------------------------- /templates/infra/mysql.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/infra/mysql.tmpl.yaml -------------------------------------------------------------------------------- /templates/infra/zookeeper.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/infra/zookeeper.tmpl.yaml -------------------------------------------------------------------------------- /templates/ingress/ingress.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/ingress/ingress.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/app.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/app.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/campaigner-daemon.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/campaigner-daemon.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/campaigner.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/campaigner.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/device-registry-daemon.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/device-registry-daemon.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/device-registry.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/device-registry.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/director-daemon.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/director-daemon.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/director.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/director.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/gateway.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/gateway.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/treehub.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/treehub.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/tuf-keyserver-daemon.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/tuf-keyserver-daemon.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/tuf-keyserver.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/tuf-keyserver.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/tuf-reposerver.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/tuf-reposerver.tmpl.yaml -------------------------------------------------------------------------------- /templates/services/web-events.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedtelematic/ota-community-edition/HEAD/templates/services/web-events.tmpl.yaml --------------------------------------------------------------------------------