├── .github └── workflows │ ├── ci.yaml │ ├── cleanup.yaml │ ├── deploy.yaml │ └── loadtest.yaml ├── .gitignore ├── .helmignore ├── .project ├── LICENSE ├── README.md ├── applications ├── air-quality-app │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── config │ │ └── dashboards │ │ │ ├── home.json │ │ │ ├── ica.json │ │ │ ├── pm.json │ │ │ └── pollutants.json │ │ ├── templates │ │ ├── _helpers.tpl │ │ └── cm-dashboard.yaml │ │ └── values.yaml ├── airquality-simulator │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── keycloak-cm.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── grafana-metrics │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── config │ │ └── dashboards │ │ │ └── fiware-metrics-dashboard.json │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cm-dashboard.yaml │ │ ├── rolebinding-datasource.yaml │ │ ├── route.yaml │ │ ├── secret-admin-user.yaml │ │ ├── secret-datasources.yaml │ │ └── tests │ │ │ ├── grafana-test.yaml │ │ │ └── test-config.yaml │ │ ├── values-secured.yaml │ │ ├── values-unsecured.yaml │ │ └── values.yaml ├── grafana │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── config │ │ └── dashboards │ │ │ └── datasource-checker.json │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cm-dashboard.yaml │ │ ├── route.yaml │ │ ├── secret-admin-user.yaml │ │ ├── secret-datasources.yaml │ │ └── tests │ │ │ ├── grafana-test.yaml │ │ │ └── test-config.yaml │ │ ├── values-secured.yaml │ │ ├── values-unsecured.yaml │ │ └── values.yaml ├── keycloak-pep │ └── chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configMap.yaml │ │ ├── deployment.yaml │ │ ├── route.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ └── values.yaml ├── keycloak │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── alert.yaml │ │ ├── profilesConfigMap.yaml │ │ ├── realmConfigmap.yaml │ │ ├── route.yaml │ │ ├── servicemonitor-realm.yaml │ │ └── tests │ │ │ ├── keycloak-test.yaml │ │ │ └── test-config.yaml │ │ └── values.yaml ├── kong │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── configmap.yaml │ │ └── route.yaml │ │ └── values.yaml ├── mongodb │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── values-secured.yaml │ │ ├── values-unsecured.yaml │ │ └── values.yaml ├── orion-ld │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── orion-ld │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap-exporter-config.yaml │ │ │ ├── configmap-script.yaml │ │ │ ├── deployment-hpa.yaml │ │ │ ├── deployment-mongo.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── route.yaml │ │ │ ├── secret.yaml │ │ │ ├── service-metrics.yaml │ │ │ ├── service-mongo.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor-metrics.yaml │ │ │ └── tests │ │ │ │ ├── orion-test.yaml │ │ │ │ └── test-config.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ │ ├── values-secured.yaml │ │ ├── values-unsecured.yaml │ │ └── values.yaml ├── quantumleap │ └── chart │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ └── tests │ │ │ ├── quantumleap-test-config.yaml │ │ │ ├── quantumleap-test-connection.yaml │ │ │ └── quantumleap-test-db.yaml │ │ └── values.yaml └── timescaledb-single │ └── chart │ ├── Chart.yaml │ ├── README.md │ ├── templates │ └── tests │ │ ├── test-config.yaml │ │ └── tsdb-test.yaml │ ├── timescaledb-single │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap-patroni.yaml │ │ ├── configmap-pgbackrest.yaml │ │ ├── configmap-pgbouncer.yaml │ │ ├── configmap-scripts.yaml │ │ ├── job-update-patroni.yaml │ │ ├── networkpolicy.yaml │ │ ├── pgbackrest.yaml │ │ ├── role-scc-anyuid.yaml │ │ ├── role-timescaledb.yaml │ │ ├── rolebinding-scc-anyuid.yaml │ │ ├── rolebinding-timescaledb.yaml │ │ ├── secret-certificate.yaml │ │ ├── secret-patroni.yaml │ │ ├── secret-pgbackrest.yaml │ │ ├── serviceaccount-timescaledb.yaml │ │ ├── servicemonitor.yaml │ │ ├── statefulset-timescaledb.yaml │ │ ├── svc-prometheus.yaml │ │ ├── svc-timescaledb-config.yaml │ │ ├── svc-timescaledb-replica.yaml │ │ └── svc-timescaledb.yaml │ └── values.yaml │ ├── values-secured.yaml │ ├── values-unsecured.yaml │ └── values.yaml ├── clusters └── in-cluster │ ├── kustomization.yaml │ └── marinera │ ├── kustomization.yaml │ └── values.yaml ├── documentation ├── ALERTING.md ├── ALT_DEPLOYMENTS.md ├── APP_SETUP.md ├── E2E_TESTING.md ├── FIWARE_COMPONENTS.md ├── GETTING_STARTED.md ├── GITHUB_CI.md ├── HOW_TO_CONNECT_DEVICES.md ├── HOW_TO_PERSIST_DATA.md ├── LOAD_TESTING.md ├── LOCAL_MARINERA.md ├── LOGGING.md ├── MONITORING.md ├── RELATED_ISSUES.md ├── SECRETS.md ├── UNDERSTANDING_FIWARE.md ├── images │ ├── argocd-apps.png │ ├── fiware-arch-diagram.png │ └── github-secrets.png └── load-test-reports │ ├── scenario1 │ ├── Gatling Stats - Global Information_files │ │ ├── all_sessions.js │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── cible.png │ │ ├── gatling.js │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery-3.5.1.min.js │ │ ├── logo.svg │ │ ├── menu.js │ │ ├── moment-2.24.0.min.js │ │ ├── stats.js │ │ ├── style.css │ │ ├── theme.js │ │ └── unpack.js │ └── report.html │ ├── scenario2 │ ├── Gatling Stats - Global Information_files │ │ ├── all_sessions.js │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── cible.png │ │ ├── gatling.js │ │ ├── highcharts-more.js │ │ ├── highstock.js │ │ ├── jquery-3.5.1.min.js │ │ ├── logo.svg │ │ ├── menu.js │ │ ├── moment-2.24.0.min.js │ │ ├── stats.js │ │ ├── style.css │ │ ├── theme.js │ │ └── unpack.js │ └── report.html │ └── scenario3 │ ├── Gatling Stats - Global Information_files │ ├── all_sessions.js │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── cible.png │ ├── gatling.js │ ├── highcharts-more.js │ ├── highstock.js │ ├── jquery-3.5.1.min.js │ ├── logo.svg │ ├── menu.js │ ├── moment-2.24.0.min.js │ ├── stats.js │ ├── style.css │ ├── theme.js │ └── unpack.js │ └── report.html ├── fiware-platform ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ └── argo-application.yaml └── values.yaml ├── kustomize ├── bundles │ ├── argocd │ │ └── base │ │ │ ├── argocds │ │ │ ├── argocd │ │ │ │ ├── argocd.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ │ ├── clusterrolebindings │ │ │ ├── argocd-allow-all │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ │ ├── clusterroles │ │ │ ├── argocd-allow-all │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ │ ├── externalsecrets │ │ │ ├── argocd-auth-secret │ │ │ │ ├── externalsecret.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespaces │ │ │ ├── argocd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ └── kustomization.yaml │ │ │ ├── operatorgroups │ │ │ ├── argocd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ └── kustomization.yaml │ │ │ ├── patches │ │ │ ├── argocd-auth-secret-patch │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── serviceaccounts │ │ │ ├── kustomization.yaml │ │ │ └── patch-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── subscriptions │ │ │ ├── argocd-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ └── kustomization.yaml │ ├── external-secrets │ │ └── base │ │ │ ├── kustomization.yaml │ │ │ ├── namespaces │ │ │ ├── external-secrets-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ └── kustomization.yaml │ │ │ └── subscriptions │ │ │ ├── external-secrets-operator │ │ │ ├── kustomization.yaml │ │ │ └── operator.yaml │ │ │ └── kustomization.yaml │ ├── fiware │ │ └── base │ │ │ ├── externalsecrets │ │ │ ├── kustomization.yaml │ │ │ └── mongodb-secret │ │ │ │ ├── externalsecret.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── namespaces │ │ │ ├── fiware │ │ │ ├── kustomization.yaml │ │ │ └── namespace.yaml │ │ │ └── kustomization.yaml │ ├── openshift-operators │ │ └── base │ │ │ ├── kustomization.yaml │ │ │ ├── namespaces │ │ │ ├── kustomization.yaml │ │ │ └── openshift-operators │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ └── operatorgroups │ │ │ ├── global-operators │ │ │ ├── kustomization.yaml │ │ │ └── operatorgroup.yaml │ │ │ └── kustomization.yaml │ ├── patch │ │ └── base │ │ │ ├── clusterrolebindings │ │ │ ├── kustomization.yaml │ │ │ └── patch-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── clusterroles │ │ │ ├── kustomization.yaml │ │ │ └── patch-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespaces │ │ │ ├── kustomization.yaml │ │ │ └── patch │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── operatorgroups │ │ │ ├── kustomization.yaml │ │ │ └── patch-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ └── subscriptions │ │ │ ├── kustomization.yaml │ │ │ └── patch-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ └── vault │ │ ├── README.md │ │ └── base │ │ ├── clusterrolebindings │ │ ├── kustomization.yaml │ │ └── vault-server-binding │ │ │ ├── clusterrolebinding.yaml │ │ │ └── kustomization.yaml │ │ ├── clustersecretstores │ │ ├── fiware-cluster-secrets │ │ │ ├── clustersecretstore.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ │ ├── configmaps │ │ ├── configmap.yaml │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── namespaces │ │ ├── kustomization.yaml │ │ └── vault │ │ │ ├── kustomization.yaml │ │ │ └── namespace.yaml │ │ ├── operatorconfigs │ │ ├── cluster │ │ │ ├── kustomization.yaml │ │ │ └── operatorconfig.yaml │ │ └── kustomization.yaml │ │ ├── policy │ │ ├── kustomization.yaml │ │ └── poddisruptionbudget.yaml │ │ ├── rbac.authorization.k8s.io │ │ ├── kustomization.yaml │ │ ├── rolebindings │ │ │ └── rolebinding.yaml │ │ └── roles │ │ │ └── role.yaml │ │ ├── routes │ │ ├── kustomization.yaml │ │ └── route.yaml │ │ ├── serviceaccounts │ │ ├── cluster-vault │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ │ ├── kustomization.yaml │ │ └── vault-secret-reader │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ │ ├── services │ │ ├── kustomization.yaml │ │ ├── vault-active │ │ │ └── service.yaml │ │ ├── vault-internal │ │ │ └── service.yaml │ │ ├── vault-standby │ │ │ └── service.yaml │ │ ├── vault-ui │ │ │ └── service.yaml │ │ └── vault │ │ │ └── service.yaml │ │ └── statefulsets │ │ ├── kustomization.yaml │ │ └── statefulset.yaml └── overlays │ └── openshift-local │ └── kustomization.yaml ├── secrets ├── Chart.yaml ├── README.md ├── templates │ ├── grafana-datasources-sealed-secret.yaml │ ├── grafana-metrics-sealed-secret.yaml │ ├── grafana-sealed-secret.yaml │ ├── mongodb-sealed-secret.yaml │ ├── timescale-password-sealed-secret.yaml │ └── tsdb-credentials-sealed-secret.yaml └── values.yaml └── tests ├── e2e-test ├── Chart.yaml ├── README.md ├── templates │ ├── e2e-test-pod.yaml │ └── kc-configmap.yaml ├── values-secured.yaml └── values.yaml └── selenium-grid ├── .helmignore ├── Chart.yaml ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── chrome-node-deployment.yaml ├── chrome-node-service.yaml ├── distributor-deployment.yaml ├── distributor-service.yaml ├── edge-node-deployment.yaml ├── edge-node-service.yaml ├── event-bus-configmap.yaml ├── event-bus-deployment.yaml ├── event-bus-service.yaml ├── firefox-node-deployment.yaml ├── firefox-node-service.yaml ├── hub-deployment.yaml ├── hub-service.yaml ├── router-deployment.yaml ├── router-service.yaml ├── session-map-deployment.yaml ├── session-map-service.yaml ├── session-queuer-deployment.yaml └── session-queuer-service.yaml └── values.yaml /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.github/workflows/cleanup.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/loadtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.github/workflows/loadtest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- 1 | *.png 2 | values.schema.json 3 | .idea 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/README.md -------------------------------------------------------------------------------- /applications/air-quality-app/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/air-quality-app/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/README.md -------------------------------------------------------------------------------- /applications/air-quality-app/chart/config/dashboards/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/config/dashboards/home.json -------------------------------------------------------------------------------- /applications/air-quality-app/chart/config/dashboards/ica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/config/dashboards/ica.json -------------------------------------------------------------------------------- /applications/air-quality-app/chart/config/dashboards/pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/config/dashboards/pm.json -------------------------------------------------------------------------------- /applications/air-quality-app/chart/config/dashboards/pollutants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/config/dashboards/pollutants.json -------------------------------------------------------------------------------- /applications/air-quality-app/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/air-quality-app/chart/templates/cm-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/air-quality-app/chart/templates/cm-dashboard.yaml -------------------------------------------------------------------------------- /applications/air-quality-app/chart/values.yaml: -------------------------------------------------------------------------------- 1 | nameOverride: "air-quality" -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/README.md -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/templates/keycloak-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/templates/keycloak-cm.yaml -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /applications/airquality-simulator/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/airquality-simulator/chart/values.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/README.md -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/config/dashboards/fiware-metrics-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/config/dashboards/fiware-metrics-dashboard.json -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/cm-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/cm-dashboard.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/rolebinding-datasource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/rolebinding-datasource.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/route.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/secret-admin-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/secret-admin-user.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/secret-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/secret-datasources.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/tests/grafana-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/tests/grafana-test.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/values-secured.yaml: -------------------------------------------------------------------------------- 1 | admin: 2 | secured: true -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/values-unsecured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/values-unsecured.yaml -------------------------------------------------------------------------------- /applications/grafana-metrics/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana-metrics/chart/values.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/README.md -------------------------------------------------------------------------------- /applications/grafana/chart/config/dashboards/datasource-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/config/dashboards/datasource-checker.json -------------------------------------------------------------------------------- /applications/grafana/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/grafana/chart/templates/cm-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/cm-dashboard.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/route.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/templates/secret-admin-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/secret-admin-user.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/templates/secret-datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/secret-datasources.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/templates/tests/grafana-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/tests/grafana-test.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/values-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/values-secured.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/values-unsecured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/values-unsecured.yaml -------------------------------------------------------------------------------- /applications/grafana/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/grafana/chart/values.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/.helmignore -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/README.md -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/configMap.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/route.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/service.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /applications/keycloak-pep/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak-pep/chart/values.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/README.md -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/alert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/alert.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/profilesConfigMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/profilesConfigMap.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/realmConfigmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/realmConfigmap.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/route.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/servicemonitor-realm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/servicemonitor-realm.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/tests/keycloak-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/tests/keycloak-test.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /applications/keycloak/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/keycloak/chart/values.yaml -------------------------------------------------------------------------------- /applications/kong/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/kong/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/kong/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/kong/chart/README.md -------------------------------------------------------------------------------- /applications/kong/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/kong/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /applications/kong/chart/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/kong/chart/templates/route.yaml -------------------------------------------------------------------------------- /applications/kong/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/kong/chart/values.yaml -------------------------------------------------------------------------------- /applications/mongodb/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/mongodb/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/mongodb/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/mongodb/chart/README.md -------------------------------------------------------------------------------- /applications/mongodb/chart/values-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/mongodb/chart/values-secured.yaml -------------------------------------------------------------------------------- /applications/mongodb/chart/values-unsecured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/mongodb/chart/values-unsecured.yaml -------------------------------------------------------------------------------- /applications/mongodb/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/mongodb/chart/values.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/README.md -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/Chart.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/README.md -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/NOTES.txt -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/configmap-exporter-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/configmap-exporter-config.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/configmap-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/configmap-script.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/deployment-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/deployment-hpa.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/deployment-mongo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/deployment-mongo.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/deployment.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/ingress.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/route.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/secret.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/service-metrics.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/service-mongo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/service-mongo.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/service.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/servicemonitor-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/servicemonitor-metrics.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/tests/orion-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/tests/orion-test.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/values.schema.json -------------------------------------------------------------------------------- /applications/orion-ld/chart/orion-ld/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/orion-ld/values.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/values-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/values-secured.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/values-unsecured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/values-unsecured.yaml -------------------------------------------------------------------------------- /applications/orion-ld/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/orion-ld/chart/values.yaml -------------------------------------------------------------------------------- /applications/quantumleap/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/quantumleap/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/README.md -------------------------------------------------------------------------------- /applications/quantumleap/chart/templates/tests/quantumleap-test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/templates/tests/quantumleap-test-config.yaml -------------------------------------------------------------------------------- /applications/quantumleap/chart/templates/tests/quantumleap-test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/templates/tests/quantumleap-test-connection.yaml -------------------------------------------------------------------------------- /applications/quantumleap/chart/templates/tests/quantumleap-test-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/templates/tests/quantumleap-test-db.yaml -------------------------------------------------------------------------------- /applications/quantumleap/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/quantumleap/chart/values.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/Chart.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/README.md -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/templates/tests/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/templates/tests/test-config.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/templates/tests/tsdb-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/templates/tests/tsdb-test.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/Chart.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/NOTES.txt -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/_helpers.tpl -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/configmap-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/configmap-patroni.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/configmap-pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/configmap-pgbackrest.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/configmap-pgbouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/configmap-pgbouncer.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/configmap-scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/configmap-scripts.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/job-update-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/job-update-patroni.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/pgbackrest.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/role-scc-anyuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/role-scc-anyuid.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/role-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/role-timescaledb.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/rolebinding-scc-anyuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/rolebinding-scc-anyuid.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/rolebinding-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/rolebinding-timescaledb.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/secret-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/secret-certificate.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/secret-patroni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/secret-patroni.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/secret-pgbackrest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/secret-pgbackrest.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/serviceaccount-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/serviceaccount-timescaledb.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/statefulset-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/statefulset-timescaledb.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/svc-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/svc-prometheus.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb-config.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb-replica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb-replica.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/templates/svc-timescaledb.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/timescaledb-single/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/timescaledb-single/values.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/values-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/values-secured.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/values-unsecured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/values-unsecured.yaml -------------------------------------------------------------------------------- /applications/timescaledb-single/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/applications/timescaledb-single/chart/values.yaml -------------------------------------------------------------------------------- /clusters/in-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/clusters/in-cluster/kustomization.yaml -------------------------------------------------------------------------------- /clusters/in-cluster/marinera/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/clusters/in-cluster/marinera/kustomization.yaml -------------------------------------------------------------------------------- /clusters/in-cluster/marinera/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/clusters/in-cluster/marinera/values.yaml -------------------------------------------------------------------------------- /documentation/ALERTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/ALERTING.md -------------------------------------------------------------------------------- /documentation/ALT_DEPLOYMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/ALT_DEPLOYMENTS.md -------------------------------------------------------------------------------- /documentation/APP_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/APP_SETUP.md -------------------------------------------------------------------------------- /documentation/E2E_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/E2E_TESTING.md -------------------------------------------------------------------------------- /documentation/FIWARE_COMPONENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/FIWARE_COMPONENTS.md -------------------------------------------------------------------------------- /documentation/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/GETTING_STARTED.md -------------------------------------------------------------------------------- /documentation/GITHUB_CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/GITHUB_CI.md -------------------------------------------------------------------------------- /documentation/HOW_TO_CONNECT_DEVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/HOW_TO_CONNECT_DEVICES.md -------------------------------------------------------------------------------- /documentation/HOW_TO_PERSIST_DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/HOW_TO_PERSIST_DATA.md -------------------------------------------------------------------------------- /documentation/LOAD_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/LOAD_TESTING.md -------------------------------------------------------------------------------- /documentation/LOCAL_MARINERA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/LOCAL_MARINERA.md -------------------------------------------------------------------------------- /documentation/LOGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/LOGGING.md -------------------------------------------------------------------------------- /documentation/MONITORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/MONITORING.md -------------------------------------------------------------------------------- /documentation/RELATED_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/RELATED_ISSUES.md -------------------------------------------------------------------------------- /documentation/SECRETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/SECRETS.md -------------------------------------------------------------------------------- /documentation/UNDERSTANDING_FIWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/UNDERSTANDING_FIWARE.md -------------------------------------------------------------------------------- /documentation/images/argocd-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/images/argocd-apps.png -------------------------------------------------------------------------------- /documentation/images/fiware-arch-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/images/fiware-arch-diagram.png -------------------------------------------------------------------------------- /documentation/images/github-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/images/github-secrets.png -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/all_sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/all_sessions.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/bootstrap.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/cible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/cible.png -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/gatling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/gatling.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/highcharts-more.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/highstock.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/logo.svg -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/menu.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/moment-2.24.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/moment-2.24.0.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/stats.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/style.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/theme.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/unpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/Gatling Stats - Global Information_files/unpack.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario1/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario1/report.html -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/all_sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/all_sessions.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/bootstrap.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/cible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/cible.png -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/gatling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/gatling.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/highcharts-more.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/highstock.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/logo.svg -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/menu.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/moment-2.24.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/moment-2.24.0.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/stats.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/style.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/theme.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/unpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/Gatling Stats - Global Information_files/unpack.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario2/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario2/report.html -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/all_sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/all_sessions.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/bootstrap.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/cible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/cible.png -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/gatling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/gatling.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/highcharts-more.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/highstock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/highstock.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/logo.svg -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/menu.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/moment-2.24.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/moment-2.24.0.min.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/stats.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/style.css -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/theme.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/unpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/Gatling Stats - Global Information_files/unpack.js -------------------------------------------------------------------------------- /documentation/load-test-reports/scenario3/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/documentation/load-test-reports/scenario3/report.html -------------------------------------------------------------------------------- /fiware-platform/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/fiware-platform/Chart.yaml -------------------------------------------------------------------------------- /fiware-platform/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/fiware-platform/templates/_helpers.tpl -------------------------------------------------------------------------------- /fiware-platform/templates/argo-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/fiware-platform/templates/argo-application.yaml -------------------------------------------------------------------------------- /fiware-platform/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/fiware-platform/values.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/argocds/argocd/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/argocds/argocd/argocd.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/argocds/argocd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/argocds/argocd/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/argocds/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/argocds/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterrolebindings/argocd-allow-all/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterrolebindings/argocd-allow-all/clusterrolebinding.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterrolebindings/argocd-allow-all/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterrolebindings/argocd-allow-all/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterrolebindings/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterrolebindings/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterroles/argocd-allow-all/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterroles/argocd-allow-all/clusterrole.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterroles/argocd-allow-all/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterroles/argocd-allow-all/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/clusterroles/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/clusterroles/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/externalsecrets/argocd-auth-secret/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/externalsecrets/argocd-auth-secret/externalsecret.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/externalsecrets/argocd-auth-secret/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/externalsecrets/argocd-auth-secret/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/externalsecrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/externalsecrets/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/namespaces/argocd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/namespaces/argocd/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/namespaces/argocd/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: argocd 5 | -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/operatorgroups/argocd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/operatorgroups/argocd/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/operatorgroups/argocd/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/operatorgroups/argocd/operatorgroup.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/operatorgroups/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/operatorgroups/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/patches/argocd-auth-secret-patch/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/patches/argocd-auth-secret-patch/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/patches/argocd-auth-secret-patch/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/patches/argocd-auth-secret-patch/patch.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/patches/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/patches/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/serviceaccounts/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/serviceaccounts/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/serviceaccounts/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/serviceaccounts/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/serviceaccounts/patch-operator/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/serviceaccounts/patch-operator/serviceaccount.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/subscriptions/argocd-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/subscriptions/argocd-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/subscriptions/argocd-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/subscriptions/argocd-operator/subscription.yaml -------------------------------------------------------------------------------- /kustomize/bundles/argocd/base/subscriptions/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/argocd/base/subscriptions/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/namespaces/external-secrets-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/namespaces/external-secrets-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/namespaces/external-secrets-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/namespaces/external-secrets-operator/namespace.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/subscriptions/external-secrets-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/subscriptions/external-secrets-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/subscriptions/external-secrets-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/subscriptions/external-secrets-operator/operator.yaml -------------------------------------------------------------------------------- /kustomize/bundles/external-secrets/base/subscriptions/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/external-secrets/base/subscriptions/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/externalsecrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/externalsecrets/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/externalsecrets/mongodb-secret/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/externalsecrets/mongodb-secret/externalsecret.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/externalsecrets/mongodb-secret/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/externalsecrets/mongodb-secret/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/namespaces/fiware/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/namespaces/fiware/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/namespaces/fiware/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: fiware 5 | -------------------------------------------------------------------------------- /kustomize/bundles/fiware/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/fiware/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/namespaces/openshift-operators/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/namespaces/openshift-operators/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/namespaces/openshift-operators/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/namespaces/openshift-operators/namespace.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/operatorgroups/global-operators/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/operatorgroups/global-operators/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/operatorgroups/global-operators/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/operatorgroups/global-operators/operatorgroup.yaml -------------------------------------------------------------------------------- /kustomize/bundles/openshift-operators/base/operatorgroups/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/openshift-operators/base/operatorgroups/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterrolebindings/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterrolebindings/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterrolebindings/patch-operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterrolebindings/patch-operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterrolebindings/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterrolebindings/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterroles/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterroles/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterroles/patch-operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterroles/patch-operator/clusterrole.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/clusterroles/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/clusterroles/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/namespaces/patch/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/namespaces/patch/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/namespaces/patch/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: patch-operator 5 | -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/operatorgroups/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/operatorgroups/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/operatorgroups/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/operatorgroups/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/operatorgroups/patch-operator/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/operatorgroups/patch-operator/operatorgroup.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/subscriptions/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/subscriptions/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/subscriptions/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/subscriptions/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/patch/base/subscriptions/patch-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/patch/base/subscriptions/patch-operator/subscription.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/README.md -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clusterrolebindings/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clusterrolebindings/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clusterrolebindings/vault-server-binding/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clusterrolebindings/vault-server-binding/clusterrolebinding.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clusterrolebindings/vault-server-binding/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clusterrolebindings/vault-server-binding/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clustersecretstores/fiware-cluster-secrets/clustersecretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clustersecretstores/fiware-cluster-secrets/clustersecretstore.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clustersecretstores/fiware-cluster-secrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clustersecretstores/fiware-cluster-secrets/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/clustersecretstores/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/clustersecretstores/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/configmaps/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/configmaps/configmap.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/namespaces/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/namespaces/vault/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/namespaces/vault/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/namespaces/vault/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: vault 5 | -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/operatorconfigs/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/operatorconfigs/cluster/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/operatorconfigs/cluster/operatorconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/operatorconfigs/cluster/operatorconfig.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/operatorconfigs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/operatorconfigs/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/policy/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/policy/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/policy/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/rbac.authorization.k8s.io/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/rbac.authorization.k8s.io/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/rbac.authorization.k8s.io/rolebindings/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/rbac.authorization.k8s.io/rolebindings/rolebinding.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/rbac.authorization.k8s.io/roles/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/rbac.authorization.k8s.io/roles/role.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/routes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/routes/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/routes/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/routes/route.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/serviceaccounts/cluster-vault/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/serviceaccounts/cluster-vault/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/serviceaccounts/cluster-vault/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/serviceaccounts/cluster-vault/serviceaccount.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/serviceaccounts/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/serviceaccounts/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/serviceaccounts/vault-secret-reader/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/serviceaccounts/vault-secret-reader/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/serviceaccounts/vault-secret-reader/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/serviceaccounts/vault-secret-reader/serviceaccount.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/vault-active/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/vault-active/service.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/vault-internal/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/vault-internal/service.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/vault-standby/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/vault-standby/service.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/vault-ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/vault-ui/service.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/services/vault/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/services/vault/service.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/statefulsets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/statefulsets/kustomization.yaml -------------------------------------------------------------------------------- /kustomize/bundles/vault/base/statefulsets/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/bundles/vault/base/statefulsets/statefulset.yaml -------------------------------------------------------------------------------- /kustomize/overlays/openshift-local/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/kustomize/overlays/openshift-local/kustomization.yaml -------------------------------------------------------------------------------- /secrets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/Chart.yaml -------------------------------------------------------------------------------- /secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/README.md -------------------------------------------------------------------------------- /secrets/templates/grafana-datasources-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/grafana-datasources-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/templates/grafana-metrics-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/grafana-metrics-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/templates/grafana-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/grafana-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/templates/mongodb-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/mongodb-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/templates/timescale-password-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/timescale-password-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/templates/tsdb-credentials-sealed-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/templates/tsdb-credentials-sealed-secret.yaml -------------------------------------------------------------------------------- /secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/secrets/values.yaml -------------------------------------------------------------------------------- /tests/e2e-test/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/Chart.yaml -------------------------------------------------------------------------------- /tests/e2e-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/README.md -------------------------------------------------------------------------------- /tests/e2e-test/templates/e2e-test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/templates/e2e-test-pod.yaml -------------------------------------------------------------------------------- /tests/e2e-test/templates/kc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/templates/kc-configmap.yaml -------------------------------------------------------------------------------- /tests/e2e-test/values-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/values-secured.yaml -------------------------------------------------------------------------------- /tests/e2e-test/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/e2e-test/values.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/.helmignore -------------------------------------------------------------------------------- /tests/selenium-grid/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/Chart.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/README.md -------------------------------------------------------------------------------- /tests/selenium-grid/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/NOTES.txt -------------------------------------------------------------------------------- /tests/selenium-grid/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/_helpers.tpl -------------------------------------------------------------------------------- /tests/selenium-grid/templates/chrome-node-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/chrome-node-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/chrome-node-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/chrome-node-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/distributor-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/distributor-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/distributor-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/distributor-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/edge-node-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/edge-node-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/edge-node-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/edge-node-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/event-bus-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/event-bus-configmap.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/event-bus-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/event-bus-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/event-bus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/event-bus-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/firefox-node-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/firefox-node-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/firefox-node-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/firefox-node-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/hub-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/hub-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/hub-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/hub-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/router-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/router-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/router-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/router-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/session-map-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/session-map-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/session-map-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/session-map-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/session-queuer-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/session-queuer-deployment.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/templates/session-queuer-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/templates/session-queuer-service.yaml -------------------------------------------------------------------------------- /tests/selenium-grid/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIWARE-Ops/marinera/HEAD/tests/selenium-grid/values.yaml --------------------------------------------------------------------------------