├── .circleci ├── config.yml └── continue_config.yml ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .golangci.yaml ├── .protolint.yaml ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.debug ├── Dockerfile.test ├── Dockerfile.ubi ├── Jenkinsfile.groovy ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── VERSION ├── chart ├── kube-arangodb-arm64 │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── crds │ │ ├── analytics-graphanalyticsengine.yaml │ │ ├── apps-job.yaml │ │ ├── backups-backup.yaml │ │ ├── backups-backuppolicy.yaml │ │ ├── database-clustersynchronization.yaml │ │ ├── database-deployment.yaml │ │ ├── database-member.yaml │ │ ├── database-task.yaml │ │ ├── ml-extension.yaml │ │ ├── ml-job-batch.yaml │ │ ├── ml-job-cron.yaml │ │ ├── ml-storage.yaml │ │ ├── networking-route.yaml │ │ ├── platform-chart.yaml │ │ ├── platform-service.yaml │ │ ├── platform-storage.yaml │ │ ├── replication-deploymentreplication.yaml │ │ ├── scheduler-batchjob.yaml │ │ ├── scheduler-cronjob.yaml │ │ ├── scheduler-deployment.yaml │ │ ├── scheduler-pod.yaml │ │ └── scheduler-profile.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── analytics-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── apps-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ ├── role.yaml │ │ │ └── service-account-job.yaml │ │ ├── backup-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── certificates │ │ │ ├── ca.yaml │ │ │ ├── certificate.yaml │ │ │ ├── issuer.ca.yaml │ │ │ └── issuer.yaml │ │ ├── crd │ │ │ ├── cluster-role-binding.yaml │ │ │ └── cluster-role.yaml │ │ ├── debug │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── default-role-binding.yaml │ │ │ ├── default-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-replications-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment.yaml │ │ ├── k2k-cluster-sync-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── ml-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── networking-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── platform-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── scheduler-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── service-account.yaml │ │ ├── service-webhooks.yaml │ │ ├── service.yaml │ │ ├── storage-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── crd.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ └── webhook │ │ │ ├── certificate.yaml │ │ │ ├── mutation.yaml │ │ │ └── validation.yaml │ └── values.yaml ├── kube-arangodb-crd │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ └── templates │ │ ├── _helpers.tpl │ │ ├── backup-policy.yaml │ │ ├── backup.yaml │ │ ├── deployment-replications.yaml │ │ ├── deployment.yaml │ │ ├── job.yaml │ │ ├── k2kclustersync.yaml │ │ └── member.yaml ├── kube-arangodb-enterprise-arm64 │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── crds │ │ ├── analytics-graphanalyticsengine.yaml │ │ ├── apps-job.yaml │ │ ├── backups-backup.yaml │ │ ├── backups-backuppolicy.yaml │ │ ├── database-clustersynchronization.yaml │ │ ├── database-deployment.yaml │ │ ├── database-member.yaml │ │ ├── database-task.yaml │ │ ├── ml-extension.yaml │ │ ├── ml-job-batch.yaml │ │ ├── ml-job-cron.yaml │ │ ├── ml-storage.yaml │ │ ├── networking-route.yaml │ │ ├── platform-chart.yaml │ │ ├── platform-service.yaml │ │ ├── platform-storage.yaml │ │ ├── replication-deploymentreplication.yaml │ │ ├── scheduler-batchjob.yaml │ │ ├── scheduler-cronjob.yaml │ │ ├── scheduler-deployment.yaml │ │ ├── scheduler-pod.yaml │ │ └── scheduler-profile.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── analytics-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── apps-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ ├── role.yaml │ │ │ └── service-account-job.yaml │ │ ├── backup-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── certificates │ │ │ ├── ca.yaml │ │ │ ├── certificate.yaml │ │ │ ├── issuer.ca.yaml │ │ │ └── issuer.yaml │ │ ├── crd │ │ │ ├── cluster-role-binding.yaml │ │ │ └── cluster-role.yaml │ │ ├── debug │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── default-role-binding.yaml │ │ │ ├── default-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-replications-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment.yaml │ │ ├── k2k-cluster-sync-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── ml-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── networking-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── platform-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── scheduler-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── service-account.yaml │ │ ├── service-webhooks.yaml │ │ ├── service.yaml │ │ ├── storage-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── crd.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ └── webhook │ │ │ ├── certificate.yaml │ │ │ ├── mutation.yaml │ │ │ └── validation.yaml │ └── values.yaml ├── kube-arangodb-enterprise │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── crds │ │ ├── analytics-graphanalyticsengine.yaml │ │ ├── apps-job.yaml │ │ ├── backups-backup.yaml │ │ ├── backups-backuppolicy.yaml │ │ ├── database-clustersynchronization.yaml │ │ ├── database-deployment.yaml │ │ ├── database-member.yaml │ │ ├── database-task.yaml │ │ ├── ml-extension.yaml │ │ ├── ml-job-batch.yaml │ │ ├── ml-job-cron.yaml │ │ ├── ml-storage.yaml │ │ ├── networking-route.yaml │ │ ├── platform-chart.yaml │ │ ├── platform-service.yaml │ │ ├── platform-storage.yaml │ │ ├── replication-deploymentreplication.yaml │ │ ├── scheduler-batchjob.yaml │ │ ├── scheduler-cronjob.yaml │ │ ├── scheduler-deployment.yaml │ │ ├── scheduler-pod.yaml │ │ └── scheduler-profile.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── analytics-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── apps-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ ├── role.yaml │ │ │ └── service-account-job.yaml │ │ ├── backup-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── certificates │ │ │ ├── ca.yaml │ │ │ ├── certificate.yaml │ │ │ ├── issuer.ca.yaml │ │ │ └── issuer.yaml │ │ ├── crd │ │ │ ├── cluster-role-binding.yaml │ │ │ └── cluster-role.yaml │ │ ├── debug │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── default-role-binding.yaml │ │ │ ├── default-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment-replications-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── deployment.yaml │ │ ├── k2k-cluster-sync-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── ml-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── networking-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── platform-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── scheduler-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ ├── service-account.yaml │ │ ├── service-webhooks.yaml │ │ ├── service.yaml │ │ ├── storage-operator │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── crd.yaml │ │ │ ├── role-binding.yaml │ │ │ └── role.yaml │ │ └── webhook │ │ │ ├── certificate.yaml │ │ │ ├── mutation.yaml │ │ │ └── validation.yaml │ └── values.yaml └── kube-arangodb │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── crds │ ├── analytics-graphanalyticsengine.yaml │ ├── apps-job.yaml │ ├── backups-backup.yaml │ ├── backups-backuppolicy.yaml │ ├── database-clustersynchronization.yaml │ ├── database-deployment.yaml │ ├── database-member.yaml │ ├── database-task.yaml │ ├── ml-extension.yaml │ ├── ml-job-batch.yaml │ ├── ml-job-cron.yaml │ ├── ml-storage.yaml │ ├── networking-route.yaml │ ├── platform-chart.yaml │ ├── platform-service.yaml │ ├── platform-storage.yaml │ ├── replication-deploymentreplication.yaml │ ├── scheduler-batchjob.yaml │ ├── scheduler-cronjob.yaml │ ├── scheduler-deployment.yaml │ ├── scheduler-pod.yaml │ └── scheduler-profile.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── analytics-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── apps-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ ├── role.yaml │ │ └── service-account-job.yaml │ ├── backup-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── certificates │ │ ├── ca.yaml │ │ ├── certificate.yaml │ │ ├── issuer.ca.yaml │ │ └── issuer.yaml │ ├── crd │ │ ├── cluster-role-binding.yaml │ │ └── cluster-role.yaml │ ├── debug │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── deployment-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── default-role-binding.yaml │ │ ├── default-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── deployment-replications-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── deployment.yaml │ ├── k2k-cluster-sync-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── ml-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── networking-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── platform-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── scheduler-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ ├── service-account.yaml │ ├── service-webhooks.yaml │ ├── service.yaml │ ├── storage-operator │ │ ├── cluster-role-binding.yaml │ │ ├── cluster-role.yaml │ │ ├── crd.yaml │ │ ├── role-binding.yaml │ │ └── role.yaml │ └── webhook │ │ ├── certificate.yaml │ │ ├── mutation.yaml │ │ └── validation.yaml │ └── values.yaml ├── cmd ├── admin.go ├── cmd.go ├── cmd_ops.go ├── cmd_pod_test.go ├── crd.go ├── debug.go ├── exporter.go ├── init_container_version_check.go ├── init_container_version_check_test.go ├── init_containers.go ├── integration.go ├── integration │ └── init.go ├── lifecycle.go ├── lifecycle_probes.go ├── lifecycle_startup.go ├── lifecycle_wait.go ├── logger.go ├── main-int │ └── main_int.go ├── main-ops │ └── main_ops.go ├── main-platform │ └── main_int.go ├── main │ └── main.go ├── memory.go ├── storage.go ├── task.go ├── uuid.go ├── version.go └── webhook.go ├── community.mk ├── dashboard ├── .dockerignore ├── .gitignore ├── Dockerfile.build ├── README.create-react-app.md ├── README.md ├── assets.go ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.js │ ├── NoOperator.js │ ├── api │ └── api.js │ ├── auth │ ├── Auth.js │ ├── Login.js │ └── LogoutContext.js │ ├── deployment │ ├── DeploymentDetails.js │ ├── DeploymentList.js │ ├── DeploymentOperator.js │ └── MemberList.js │ ├── index.css │ ├── index.js │ ├── registerServiceWorker.js │ ├── replication │ ├── DeploymentReplicationDetails.js │ ├── DeploymentReplicationList.js │ └── DeploymentReplicationOperator.js │ ├── storage │ ├── StorageList.js │ ├── StorageOperator.js │ ├── StorageRow.js │ └── VolumeList.js │ ├── style │ └── style.js │ └── util │ ├── CommandInstruction.js │ ├── Loading.js │ └── Storage.js ├── docs ├── CODEOWNERS ├── api │ ├── ArangoBackup.V1.md │ ├── ArangoBackupPolicy.V1.md │ ├── ArangoDeployment.V1.md │ ├── ArangoDeploymentReplication.V1.md │ ├── ArangoJob.V1.md │ ├── ArangoLocalStorage.V1Alpha.md │ ├── ArangoMLBatchJob.V1Alpha1.md │ ├── ArangoMLCronJob.V1Alpha1.md │ ├── ArangoMLExtension.V1Alpha1.md │ ├── ArangoMLExtension.V1Beta1.md │ ├── ArangoMLStorage.V1Alpha1.md │ ├── ArangoMLStorage.V1Beta1.md │ ├── ArangoMember.V1.md │ ├── ArangoPlatform.V1Beta1.Authentication.OpenID.md │ ├── ArangoPlatformChart.V1Beta1.md │ ├── ArangoPlatformService.V1Beta1.md │ ├── ArangoPlatformStorage.V1Beta1.md │ ├── ArangoProfile.V1Beta1.md │ ├── ArangoRoute.V1Beta1.md │ ├── GraphAnalyticsEngine.V1Alpha1.md │ └── README.md ├── arango-platform-chart-resource.md ├── arango-profile-resource.md ├── authentication.md ├── backup-resource.md ├── backuppolicy-resource.md ├── cli.md ├── cli │ ├── arangodb_operator.md │ ├── arangodb_operator_integration.md │ ├── arangodb_operator_ops.md │ └── arangodb_operator_platform.md ├── configuration-and-secrets.md ├── crds.md ├── deployment-replication-resource-reference.md ├── deployment-resource-reference.md ├── design │ ├── README.md │ ├── api.md │ ├── backup.md │ ├── constraints.md │ ├── exporter.md │ ├── health.md │ ├── lifecycle_hooks_and_finalizers.md │ ├── pod_eviction_and_replacement.md │ ├── pod_name_versus_cluster_id.md │ ├── resources_and_labels.md │ └── topology_awareness.md ├── draining-nodes.md ├── driver-configuration.md ├── features │ ├── README.md │ ├── deployment_spec_defaults.md │ ├── ephemeral_volumes.md │ ├── failover_leader_service.md │ ├── rebalancer.md │ ├── rebalancer_v2.md │ ├── rebuild_out_synced_shards.md │ └── secured_containers.md ├── gae-resource.md ├── generated │ ├── actions.md │ └── metrics │ │ ├── README.md │ │ ├── arango_operator_objects_processed.md │ │ ├── arangodb_operator_agency_cache_health_present.md │ │ ├── arangodb_operator_agency_cache_healthy.md │ │ ├── arangodb_operator_agency_cache_leaders.md │ │ ├── arangodb_operator_agency_cache_member_commit_offset.md │ │ ├── arangodb_operator_agency_cache_member_serving.md │ │ ├── arangodb_operator_agency_cache_present.md │ │ ├── arangodb_operator_agency_cache_serving.md │ │ ├── arangodb_operator_agency_errors.md │ │ ├── arangodb_operator_agency_fetches.md │ │ ├── arangodb_operator_agency_index.md │ │ ├── arangodb_operator_deployment_conditions.md │ │ ├── arangodb_operator_engine_assertions.md │ │ ├── arangodb_operator_engine_ops_alerts.md │ │ ├── arangodb_operator_engine_panics_recovered.md │ │ ├── arangodb_operator_kubernetes_client_request_errors.md │ │ ├── arangodb_operator_kubernetes_client_requests.md │ │ ├── arangodb_operator_members_conditions.md │ │ ├── arangodb_operator_members_unexpected_container_exit_codes.md │ │ ├── arangodb_operator_objects_processed.md │ │ ├── arangodb_operator_rebalancer_enabled.md │ │ ├── arangodb_operator_rebalancer_moves_current.md │ │ ├── arangodb_operator_rebalancer_moves_failed.md │ │ ├── arangodb_operator_rebalancer_moves_generated.md │ │ ├── arangodb_operator_rebalancer_moves_succeeded.md │ │ ├── arangodb_operator_resources_arangodeployment_accepted.md │ │ ├── arangodb_operator_resources_arangodeployment_immutable_errors.md │ │ ├── arangodb_operator_resources_arangodeployment_propagated.md │ │ ├── arangodb_operator_resources_arangodeployment_status_restores.md │ │ ├── arangodb_operator_resources_arangodeployment_uptodate.md │ │ ├── arangodb_operator_resources_arangodeployment_validation_errors.md │ │ ├── arangodb_operator_resources_arangodeploymentreplication_active.md │ │ ├── arangodb_operator_resources_arangodeploymentreplication_failed.md │ │ ├── arangodb_resources_deployment_config_map_duration.md │ │ └── arangodb_resources_deployment_config_map_inspected.md ├── helm.md ├── how-to │ ├── README.md │ ├── additional_configuration.md │ ├── arch_change.md │ ├── configuring_tz.md │ ├── debugging.md │ ├── logging.md │ ├── maintenance.md │ ├── manual-upgrade.md │ ├── override_detected_memory.md │ ├── recovery.md │ ├── replace-pod.md │ ├── rotate-pod.md │ ├── set_license.md │ └── set_root_user_password.md ├── images │ ├── HealthyCluster.png │ └── ShardsInSync.png ├── index.html ├── integration-sidecar.md ├── integration │ ├── authentication.v1.md │ ├── authorization.v0.md │ ├── events.v1.md │ ├── meta.v1.md │ ├── scheduler.v1.md │ ├── scheduler.v2.md │ ├── shutdown.v1.md │ └── storage.v2.md ├── metrics.md ├── mlextension-resource.md ├── platform.common.md ├── platform.helm.md ├── platform.install.md ├── platform.md ├── platform.sso.md ├── platform.sso.openid.md ├── platform │ ├── storage.md │ └── storage │ │ ├── gcs.md │ │ ├── minio.md │ │ └── s3.md ├── providers │ └── eks │ │ └── README.md ├── scaling.md ├── services-and-load-balancer.md ├── storage-resource.md ├── storage.md ├── tls.md ├── troubleshooting.md ├── upgrade │ ├── health-endpoint-issues.md │ └── index-sorting-order-issues.md ├── upgrading.md └── using-the-operator.md ├── examples ├── arango-local-storage.yaml ├── arangoclustersync.yaml ├── arangojob.yaml ├── cluster1-with-sync.yaml ├── cluster2-with-sync.yaml ├── local-storage-class.yaml ├── metrics │ ├── dashboard.json │ └── deployment-operator-servicemonitor.yaml ├── nodeport-cluster.yaml ├── nodeport-single-server.yaml ├── platform │ ├── package.yaml │ ├── platform-single-server-sso.yaml │ └── platform-single-server.yaml ├── production-cluster-with-metrics.yaml ├── production-cluster.yaml ├── reboot-pod.yaml ├── simple-cluster-no-tls.yaml ├── simple-cluster-with-metrics.yaml ├── simple-cluster.yaml ├── single-server-no-auth.yaml ├── single-server-route.yaml └── single-server.yaml ├── go.mod ├── go.sum ├── integrations ├── authentication │ └── v1 │ │ ├── auth.go │ │ ├── cache.go │ │ ├── configuration.go │ │ ├── definition │ │ ├── authentication.go │ │ ├── consts.go │ │ ├── definition.pb.go │ │ ├── definition.pb.gw.go │ │ ├── definition.proto │ │ └── definition_grpc.pb.go │ │ ├── http_test.go │ │ ├── implementation.go │ │ ├── implementation_test.go │ │ ├── logger.go │ │ ├── service_test.go │ │ └── utils_test.go ├── authorization │ ├── v0 │ │ ├── definition │ │ │ ├── consts.go │ │ │ ├── definition.pb.go │ │ │ ├── definition.proto │ │ │ └── definition_grpc.pb.go │ │ ├── implementation.go │ │ └── service_test.go │ └── v1 │ │ └── definition │ │ ├── types.go │ │ ├── types.pb.go │ │ ├── types.proto │ │ └── types_test.go ├── config │ └── v1 │ │ ├── config.go │ │ ├── config_test.go │ │ ├── consts.go │ │ ├── definition │ │ ├── config.pb.go │ │ ├── config.proto │ │ └── config_grpc.pb.go │ │ ├── file_details_test.go │ │ ├── impl.go │ │ ├── impl_darwin.go │ │ ├── impl_linux.go │ │ ├── logger.go │ │ ├── module_details_test.go │ │ ├── module_test.go │ │ └── service_test.go ├── envoy │ └── auth │ │ └── v3 │ │ ├── impl.go │ │ ├── impl │ │ ├── auth_bearer │ │ │ ├── impl.go │ │ │ └── logger.go │ │ ├── auth_cookie │ │ │ ├── impl.go │ │ │ └── logger.go │ │ ├── auth_custom │ │ │ ├── impl.go │ │ │ └── openid │ │ │ │ ├── impl.go │ │ │ │ ├── logger.go │ │ │ │ └── session.go │ │ ├── auth_required │ │ │ └── impl.go │ │ ├── impl.go │ │ ├── pass_mode │ │ │ ├── impl.go │ │ │ └── logger.go │ │ ├── request_id │ │ │ └── impl.go │ │ ├── required │ │ │ └── impl.go │ │ ├── session │ │ │ ├── session.go │ │ │ └── type.go │ │ └── users │ │ │ └── impl.go │ │ ├── logger.go │ │ ├── service_test.go │ │ └── shared │ │ ├── configuration.go │ │ ├── consts.go │ │ ├── cookie.go │ │ ├── factory.go │ │ ├── handler.go │ │ ├── helper.go │ │ ├── response.go │ │ ├── response_custom.go │ │ └── response_custom_denied.go ├── events │ └── v1 │ │ ├── async.go │ │ ├── collection.go │ │ ├── configuration.go │ │ ├── consts.go │ │ ├── definition │ │ ├── consts.go │ │ ├── definition.pb.go │ │ ├── definition.proto │ │ ├── definition_grpc.pb.go │ │ ├── event.pb.go │ │ └── event.proto │ │ ├── events_test.go │ │ ├── impl.go │ │ ├── logger.go │ │ ├── remote.go │ │ ├── remote_test.go │ │ └── service_test.go ├── inventory │ └── v1 │ │ └── definition │ │ ├── inventory.go │ │ ├── inventory.pb.go │ │ ├── inventory.proto │ │ ├── inventory_test.go │ │ ├── service.pb.go │ │ ├── service.pb.gw.go │ │ ├── service.proto │ │ └── service_grpc.pb.go ├── meta │ └── v1 │ │ ├── configuration.go │ │ ├── definition │ │ ├── consts.go │ │ ├── definition.pb.go │ │ ├── definition.proto │ │ └── definition_grpc.pb.go │ │ ├── impl.go │ │ ├── impl_test.go │ │ ├── logger.go │ │ ├── object.go │ │ ├── service_test.go │ │ └── types_test.go ├── pong │ └── v1 │ │ ├── definition │ │ ├── consts.go │ │ ├── pong.pb.go │ │ ├── pong.pb.gw.go │ │ ├── pong.proto │ │ └── pong_grpc.pb.go │ │ ├── impl.go │ │ ├── logger.go │ │ └── service_test.go ├── scheduler │ ├── v1 │ │ ├── batch_job.go │ │ ├── batch_job_test.go │ │ ├── configuration.go │ │ ├── consts.go │ │ ├── cron_job.go │ │ ├── cron_job_test.go │ │ ├── definition │ │ │ ├── batchjob.pb.go │ │ │ ├── batchjob.proto │ │ │ ├── common.pb.go │ │ │ ├── common.proto │ │ │ ├── consts.go │ │ │ ├── cronjob.pb.go │ │ │ ├── cronjob.proto │ │ │ ├── definition.pb.go │ │ │ ├── definition.proto │ │ │ ├── definition_grpc.pb.go │ │ │ ├── deployment.pb.go │ │ │ └── deployment.proto │ │ ├── deployment.go │ │ ├── deployment_test.go │ │ ├── helpers.go │ │ ├── implementation.go │ │ └── suite_test.go │ └── v2 │ │ ├── chart.go │ │ ├── chart_test.go │ │ ├── configuration.go │ │ ├── consts.go │ │ ├── definition │ │ ├── chart.pb.go │ │ ├── chart.proto │ │ ├── consts.go │ │ ├── definition.pb.go │ │ ├── definition.proto │ │ ├── definition_grpc.pb.go │ │ ├── helm.pb.go │ │ ├── helm.proto │ │ ├── helpers.go │ │ ├── kubernetes.pb.go │ │ ├── kubernetes.proto │ │ ├── release.pb.go │ │ └── release.proto │ │ ├── errors.go │ │ ├── helm.go │ │ ├── implementation.go │ │ ├── implementation_test.go │ │ ├── kubernetes.go │ │ ├── logger.go │ │ ├── suite.go │ │ └── suite_test.go ├── shared │ └── v1 │ │ └── definition │ │ ├── empty.pb.go │ │ ├── empty.proto │ │ ├── kv.go │ │ ├── kv.pb.go │ │ └── kv.proto ├── shutdown │ └── v1 │ │ ├── configuration.go │ │ ├── definition │ │ ├── consts.go │ │ ├── shutdown.pb.go │ │ ├── shutdown.pb.gw.go │ │ ├── shutdown.proto │ │ └── shutdown_grpc.pb.go │ │ ├── impl.go │ │ ├── impl_test.go │ │ ├── logger.go │ │ └── service_test.go └── storage │ ├── v1 │ ├── configuration.go │ ├── definition │ │ └── consts.go │ ├── shared │ │ └── s3 │ │ │ ├── configuration.go │ │ │ ├── folder_counter.go │ │ │ ├── folder_counter_test.go │ │ │ ├── id.go │ │ │ ├── impl.go │ │ │ ├── impl_methods.go │ │ │ ├── impl_test.go │ │ │ ├── io.go │ │ │ ├── logger.go │ │ │ ├── object.go │ │ │ └── suite_test.go │ └── storage.go │ └── v2 │ ├── configuration.go │ ├── definition │ ├── consts.go │ ├── helpers.go │ ├── storage.pb.go │ ├── storage.proto │ └── storage_grpc.pb.go │ ├── logger.go │ ├── object.go │ ├── object_test.go │ ├── shared │ ├── consts.go │ ├── gcs │ │ ├── configuration.go │ │ ├── delete.go │ │ ├── head.go │ │ ├── init.go │ │ ├── io.go │ │ ├── list.go │ │ ├── read.go │ │ └── write.go │ ├── init.go │ ├── io.go │ └── s3 │ │ ├── configuration.go │ │ ├── delete.go │ │ ├── errors.go │ │ ├── head.go │ │ ├── init.go │ │ ├── io.go │ │ ├── list.go │ │ ├── read.go │ │ ├── wr_offset.go │ │ └── write.go │ ├── storage.go │ ├── storage_test.go │ ├── suite_gcs_test.go │ ├── suite_s3_test.go │ └── suite_test.go ├── internal ├── actions.config.go.tmpl ├── actions.go ├── actions.go.tmpl ├── actions.register.go.tmpl ├── actions.register.test.go.tmpl ├── actions.yaml ├── actions_test.go ├── cr_validation_test.go ├── doc_definition_test.go ├── docs_parser_test.go ├── docs_test.go ├── features.yaml ├── features_test.go ├── generators │ ├── generator_pkg_operatorv2_handlers.go.tmpl │ └── generator_test.go ├── limits.yaml ├── metrics.go ├── metrics.go.tmpl ├── metrics.item.go.tmpl ├── metrics.item.go_test.tmpl ├── metrics.item.tmpl ├── metrics.yaml ├── metrics_test.go ├── platforms.yaml ├── readme.go ├── readme_cli.go ├── readme_test.go ├── schema_builder_test.go ├── timezones.go ├── timezones.go.tmpl └── timezones_test.go ├── manifests ├── .gitignore ├── arango-all.yaml ├── arango-apps.yaml ├── arango-backup.yaml ├── arango-crd-all.yaml ├── arango-crd-basic.yaml ├── arango-crd.yaml ├── arango-deployment-replication.yaml ├── arango-deployment.yaml ├── arango-k2kclustersync.yaml ├── arango-ml.yaml ├── arango-storage.yaml ├── enterprise-all.yaml ├── enterprise-apps.yaml ├── enterprise-backup.yaml ├── enterprise-crd-all.yaml ├── enterprise-crd-basic.yaml ├── enterprise-crd.yaml ├── enterprise-deployment-replication.yaml ├── enterprise-deployment.yaml ├── enterprise-k2kclustersync.yaml ├── enterprise-ml.yaml ├── enterprise-storage.yaml ├── kustomize-enterprise │ ├── all │ │ ├── enterprise-all.yaml │ │ └── kustomization.yaml │ ├── apps │ │ ├── enterprise-apps.yaml │ │ └── kustomization.yaml │ ├── backup │ │ ├── enterprise-backup.yaml │ │ └── kustomization.yaml │ ├── crd │ │ ├── enterprise-crd-all.yaml │ │ ├── enterprise-crd-basic.yaml │ │ ├── enterprise-crd.yaml │ │ └── kustomization.yaml │ ├── deployment-replication │ │ ├── enterprise-deployment-replication.yaml │ │ └── kustomization.yaml │ ├── deployment │ │ ├── enterprise-deployment.yaml │ │ └── kustomization.yaml │ ├── k2kclustersync │ │ ├── enterprise-k2kclustersync.yaml │ │ └── kustomization.yaml │ └── storage │ │ ├── enterprise-storage.yaml │ │ └── kustomization.yaml └── kustomize │ ├── all │ ├── arango-all.yaml │ └── kustomization.yaml │ ├── apps │ ├── arango-apps.yaml │ ├── arango-ml.yaml │ ├── enterprise-ml.yaml │ └── kustomization.yaml │ ├── backup │ ├── arango-backup.yaml │ └── kustomization.yaml │ ├── crd │ ├── arango-crd-all.yaml │ ├── arango-crd-basic.yaml │ ├── arango-crd.yaml │ └── kustomization.yaml │ ├── deployment-replication │ ├── arango-deployment-replication.yaml │ └── kustomization.yaml │ ├── deployment │ ├── arango-deployment.yaml │ └── kustomization.yaml │ ├── k2kclustersync │ ├── arango-k2kclustersync.yaml │ └── kustomization.yaml │ └── storage │ ├── arango-storage.yaml │ └── kustomization.yaml ├── pkg ├── api │ ├── api.go │ ├── auth.go │ ├── grpc.go │ ├── http.go │ ├── jwt.go │ ├── logging.go │ ├── server │ │ ├── operator.pb.go │ │ ├── operator.proto │ │ └── operator_grpc.pb.go │ └── tls.go ├── apis │ ├── README.md │ ├── analytics │ │ ├── definitions.go │ │ └── v1alpha1 │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── gae.go │ │ │ ├── gae_spec.go │ │ │ ├── gae_spec_deployment.go │ │ │ ├── gae_spec_deployment_service.go │ │ │ ├── gae_status.go │ │ │ ├── gae_status_arangodb_ref.go │ │ │ ├── gae_status_reconciliation.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── definitions.go │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── job.go │ │ │ ├── job_spec.go │ │ │ ├── job_validate.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── backup │ │ ├── definitions.go │ │ └── v1 │ │ │ ├── backup.go │ │ │ ├── backup_policy.go │ │ │ ├── backup_policy_spec.go │ │ │ ├── backup_policy_status.go │ │ │ ├── backup_policy_validate.go │ │ │ ├── backup_spec.go │ │ │ ├── backup_spec_backoff.go │ │ │ ├── backup_spec_backoff_test.go │ │ │ ├── backup_state.go │ │ │ ├── backup_status.go │ │ │ ├── backup_status_backoff.go │ │ │ ├── backup_status_backoff_test.go │ │ │ ├── backup_validate.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ ├── deployment │ │ ├── annotations.go │ │ ├── definitions.go │ │ ├── v1 │ │ │ ├── actions.generated.go │ │ │ ├── arango_member.go │ │ │ ├── arango_member_pod_template.go │ │ │ ├── arango_member_spec.go │ │ │ ├── arango_member_spec_overrides.go │ │ │ ├── arango_member_status.go │ │ │ ├── arango_member_status_test.go │ │ │ ├── arango_task.go │ │ │ ├── arango_task_spec.go │ │ │ ├── arango_task_status.go │ │ │ ├── arango_task_test.go │ │ │ ├── architecture.go │ │ │ ├── arguments.go │ │ │ ├── authentication_spec.go │ │ │ ├── authentication_spec_test.go │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── bootstrap.go │ │ │ ├── chaos_spec.go │ │ │ ├── cluster_synchronization.go │ │ │ ├── cluster_synchronization_spec.go │ │ │ ├── cluster_synchronization_spec_test.go │ │ │ ├── cluster_synchronization_status.go │ │ │ ├── compatibility_test.go │ │ │ ├── conditions.go │ │ │ ├── conditions_check.go │ │ │ ├── conditions_check_test.go │ │ │ ├── conditions_deployment.go │ │ │ ├── conditions_params.go │ │ │ ├── conditions_test.go │ │ │ ├── const.go │ │ │ ├── database_spec.go │ │ │ ├── deployment.go │ │ │ ├── deployment_backup_status.go │ │ │ ├── deployment_communication_method.go │ │ │ ├── deployment_features.go │ │ │ ├── deployment_member_propagation_mode.go │ │ │ ├── deployment_member_status_element.go │ │ │ ├── deployment_metrics_service_monitor_spec.go │ │ │ ├── deployment_metrics_spec.go │ │ │ ├── deployment_metrics_spec_extensions.go │ │ │ ├── deployment_mode.go │ │ │ ├── deployment_mode_test.go │ │ │ ├── deployment_phase.go │ │ │ ├── deployment_phase_test.go │ │ │ ├── deployment_rotate_spec.go │ │ │ ├── deployment_spec.go │ │ │ ├── deployment_spec_gateway.go │ │ │ ├── deployment_spec_gateway_authentication.go │ │ │ ├── deployment_spec_image.go │ │ │ ├── deployment_spec_integration.go │ │ │ ├── deployment_spec_order.go │ │ │ ├── deployment_spec_order_test.go │ │ │ ├── deployment_spec_test.go │ │ │ ├── deployment_status.go │ │ │ ├── deployment_status_agency_info.go │ │ │ ├── deployment_status_license.go │ │ │ ├── deployment_status_members.go │ │ │ ├── deployment_status_members_test.go │ │ │ ├── deployment_upgrade_spec.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── environment.go │ │ │ ├── environment_test.go │ │ │ ├── errors.go │ │ │ ├── external_access_spec.go │ │ │ ├── external_access_type.go │ │ │ ├── hashes.go │ │ │ ├── image_info.go │ │ │ ├── image_info_test.go │ │ │ ├── immutable_checksum_test.go │ │ │ ├── license_spec.go │ │ │ ├── license_spec_test.go │ │ │ ├── lifecycle_spec.go │ │ │ ├── list.go │ │ │ ├── member_phase.go │ │ │ ├── member_pod_status.go │ │ │ ├── member_pvc_status.go │ │ │ ├── member_status.go │ │ │ ├── member_status_list.go │ │ │ ├── member_status_list_test.go │ │ │ ├── member_status_test.go │ │ │ ├── percent.go │ │ │ ├── plan.go │ │ │ ├── plan_locals.go │ │ │ ├── plan_locals_test.go │ │ │ ├── plan_test.go │ │ │ ├── probes.go │ │ │ ├── pvc.go │ │ │ ├── rebalancer_spec.go │ │ │ ├── rebalancer_status.go │ │ │ ├── recovery_spec.go │ │ │ ├── register.go │ │ │ ├── rocksdb_spec.go │ │ │ ├── rocksdb_spec_test.go │ │ │ ├── secret_hashes.go │ │ │ ├── secret_hashes_test.go │ │ │ ├── server_group.go │ │ │ ├── server_group_containers.go │ │ │ ├── server_group_env_var.go │ │ │ ├── server_group_ephemeral_volumes.go │ │ │ ├── server_group_index_method.go │ │ │ ├── server_group_init_containers.go │ │ │ ├── server_group_numactl_spec.go │ │ │ ├── server_group_security_context_spec.go │ │ │ ├── server_group_security_context_spec_test.go │ │ │ ├── server_group_spec.go │ │ │ ├── server_group_spec_network_mode.go │ │ │ ├── server_group_spec_pid_mode.go │ │ │ ├── server_group_spec_pod_modes.go │ │ │ ├── server_group_spec_port_proto.go │ │ │ ├── server_group_spec_probe.go │ │ │ ├── server_group_spec_shutdown_method.go │ │ │ ├── server_group_spec_test.go │ │ │ ├── server_group_spec_upgrade_mode.go │ │ │ ├── server_group_status.go │ │ │ ├── server_group_test.go │ │ │ ├── server_group_type.go │ │ │ ├── server_group_volume.go │ │ │ ├── server_group_volume_mount.go │ │ │ ├── server_group_volume_test.go │ │ │ ├── server_id_group_spec.go │ │ │ ├── storage_engine.go │ │ │ ├── storage_engine_test.go │ │ │ ├── sync_authentication_spec.go │ │ │ ├── sync_external_access_spec.go │ │ │ ├── sync_monitoring_spec.go │ │ │ ├── sync_monitoring_spec_test.go │ │ │ ├── sync_spec.go │ │ │ ├── sync_spec_test.go │ │ │ ├── timeouts.go │ │ │ ├── timeouts_test.go │ │ │ ├── tls_sni_spec.go │ │ │ ├── tls_spec.go │ │ │ ├── tls_spec_test.go │ │ │ ├── topology_member_status.go │ │ │ ├── topology_spec.go │ │ │ ├── topology_status.go │ │ │ ├── topology_status_test.go │ │ │ ├── version.go │ │ │ ├── version_test.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2alpha1 │ │ │ ├── actions.generated.go │ │ │ ├── arango_member.go │ │ │ ├── arango_member_pod_template.go │ │ │ ├── arango_member_spec.go │ │ │ ├── arango_member_spec_overrides.go │ │ │ ├── arango_member_status.go │ │ │ ├── arango_member_status_test.go │ │ │ ├── arango_task.go │ │ │ ├── arango_task_spec.go │ │ │ ├── arango_task_status.go │ │ │ ├── arango_task_test.go │ │ │ ├── architecture.go │ │ │ ├── arguments.go │ │ │ ├── authentication_spec.go │ │ │ ├── authentication_spec_test.go │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── bootstrap.go │ │ │ ├── chaos_spec.go │ │ │ ├── cluster_synchronization.go │ │ │ ├── cluster_synchronization_spec.go │ │ │ ├── cluster_synchronization_spec_test.go │ │ │ ├── cluster_synchronization_status.go │ │ │ ├── compatibility_test.go │ │ │ ├── conditions.go │ │ │ ├── conditions_check.go │ │ │ ├── conditions_check_test.go │ │ │ ├── conditions_deployment.go │ │ │ ├── conditions_params.go │ │ │ ├── conditions_test.go │ │ │ ├── const.go │ │ │ ├── database_spec.go │ │ │ ├── deployment.go │ │ │ ├── deployment_backup_status.go │ │ │ ├── deployment_communication_method.go │ │ │ ├── deployment_features.go │ │ │ ├── deployment_member_propagation_mode.go │ │ │ ├── deployment_member_status_element.go │ │ │ ├── deployment_metrics_service_monitor_spec.go │ │ │ ├── deployment_metrics_spec.go │ │ │ ├── deployment_metrics_spec_extensions.go │ │ │ ├── deployment_mode.go │ │ │ ├── deployment_mode_test.go │ │ │ ├── deployment_phase.go │ │ │ ├── deployment_phase_test.go │ │ │ ├── deployment_rotate_spec.go │ │ │ ├── deployment_spec.go │ │ │ ├── deployment_spec_gateway.go │ │ │ ├── deployment_spec_gateway_authentication.go │ │ │ ├── deployment_spec_image.go │ │ │ ├── deployment_spec_integration.go │ │ │ ├── deployment_spec_order.go │ │ │ ├── deployment_spec_order_test.go │ │ │ ├── deployment_spec_test.go │ │ │ ├── deployment_status.go │ │ │ ├── deployment_status_agency_info.go │ │ │ ├── deployment_status_license.go │ │ │ ├── deployment_status_members.go │ │ │ ├── deployment_status_members_test.go │ │ │ ├── deployment_upgrade_spec.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── environment.go │ │ │ ├── environment_test.go │ │ │ ├── errors.go │ │ │ ├── external_access_spec.go │ │ │ ├── external_access_type.go │ │ │ ├── hashes.go │ │ │ ├── image_info.go │ │ │ ├── image_info_test.go │ │ │ ├── immutable_checksum_test.go │ │ │ ├── license_spec.go │ │ │ ├── license_spec_test.go │ │ │ ├── lifecycle_spec.go │ │ │ ├── list.go │ │ │ ├── member_phase.go │ │ │ ├── member_pod_status.go │ │ │ ├── member_pvc_status.go │ │ │ ├── member_status.go │ │ │ ├── member_status_list.go │ │ │ ├── member_status_list_test.go │ │ │ ├── member_status_test.go │ │ │ ├── percent.go │ │ │ ├── plan.go │ │ │ ├── plan_locals.go │ │ │ ├── plan_locals_test.go │ │ │ ├── plan_test.go │ │ │ ├── probes.go │ │ │ ├── pvc.go │ │ │ ├── rebalancer_spec.go │ │ │ ├── rebalancer_status.go │ │ │ ├── recovery_spec.go │ │ │ ├── register.go │ │ │ ├── rocksdb_spec.go │ │ │ ├── rocksdb_spec_test.go │ │ │ ├── secret_hashes.go │ │ │ ├── secret_hashes_test.go │ │ │ ├── server_group.go │ │ │ ├── server_group_containers.go │ │ │ ├── server_group_env_var.go │ │ │ ├── server_group_ephemeral_volumes.go │ │ │ ├── server_group_index_method.go │ │ │ ├── server_group_init_containers.go │ │ │ ├── server_group_numactl_spec.go │ │ │ ├── server_group_security_context_spec.go │ │ │ ├── server_group_security_context_spec_test.go │ │ │ ├── server_group_spec.go │ │ │ ├── server_group_spec_network_mode.go │ │ │ ├── server_group_spec_pid_mode.go │ │ │ ├── server_group_spec_pod_modes.go │ │ │ ├── server_group_spec_port_proto.go │ │ │ ├── server_group_spec_probe.go │ │ │ ├── server_group_spec_shutdown_method.go │ │ │ ├── server_group_spec_test.go │ │ │ ├── server_group_spec_upgrade_mode.go │ │ │ ├── server_group_status.go │ │ │ ├── server_group_test.go │ │ │ ├── server_group_type.go │ │ │ ├── server_group_volume.go │ │ │ ├── server_group_volume_mount.go │ │ │ ├── server_group_volume_test.go │ │ │ ├── server_id_group_spec.go │ │ │ ├── storage_engine.go │ │ │ ├── storage_engine_test.go │ │ │ ├── sync_authentication_spec.go │ │ │ ├── sync_external_access_spec.go │ │ │ ├── sync_monitoring_spec.go │ │ │ ├── sync_monitoring_spec_test.go │ │ │ ├── sync_spec.go │ │ │ ├── sync_spec_test.go │ │ │ ├── timeouts.go │ │ │ ├── timeouts_test.go │ │ │ ├── tls_sni_spec.go │ │ │ ├── tls_spec.go │ │ │ ├── tls_spec_test.go │ │ │ ├── topology_member_status.go │ │ │ ├── topology_spec.go │ │ │ ├── topology_status.go │ │ │ ├── topology_status_test.go │ │ │ ├── version.go │ │ │ ├── version_test.go │ │ │ └── zz_generated.deepcopy.go │ ├── ml │ │ ├── definitions.go │ │ ├── v1alpha1 │ │ │ ├── batchjob.go │ │ │ ├── batchjob_spec.go │ │ │ ├── batchjob_status.go │ │ │ ├── conditions.go │ │ │ ├── cronjob.go │ │ │ ├── cronjob_spec.go │ │ │ ├── cronjob_status.go │ │ │ ├── doc.go │ │ │ ├── extension.go │ │ │ ├── extension_spec.go │ │ │ ├── extension_spec_deployment.go │ │ │ ├── extension_spec_deployment_service.go │ │ │ ├── extension_spec_job.go │ │ │ ├── extension_spec_metadata_service.go │ │ │ ├── extension_status.go │ │ │ ├── extension_status_arangodb_ref.go │ │ │ ├── extension_status_metadata_service.go │ │ │ ├── extension_status_reconciliation.go │ │ │ ├── register.go │ │ │ ├── storage.go │ │ │ ├── storage_spec.go │ │ │ ├── storage_spec_backend.go │ │ │ ├── storage_spec_backend_s3.go │ │ │ ├── storage_spec_mode.go │ │ │ ├── storage_spec_mode_sidecar.go │ │ │ ├── storage_spec_test.go │ │ │ ├── storage_status.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── extension.go │ │ │ ├── extension_spec.go │ │ │ ├── extension_spec_deployment.go │ │ │ ├── extension_spec_deployment_service.go │ │ │ ├── extension_spec_job.go │ │ │ ├── extension_spec_metadata_service.go │ │ │ ├── extension_spec_storage_type.go │ │ │ ├── extension_status.go │ │ │ ├── extension_status_arangodb_ref.go │ │ │ ├── extension_status_metadata_service.go │ │ │ ├── extension_status_reconciliation.go │ │ │ ├── register.go │ │ │ ├── storage.go │ │ │ ├── storage_spec.go │ │ │ ├── storage_spec_backend.go │ │ │ ├── storage_spec_backend_s3.go │ │ │ ├── storage_spec_mode.go │ │ │ ├── storage_spec_mode_sidecar.go │ │ │ ├── storage_spec_test.go │ │ │ ├── storage_status.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── definitions.go │ │ ├── v1alpha1 │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── route.go │ │ │ ├── route_spec.go │ │ │ ├── route_spec_authentication_pass_mode.go │ │ │ ├── route_spec_authentication_type.go │ │ │ ├── route_spec_destination.go │ │ │ ├── route_spec_destination_authentication.go │ │ │ ├── route_spec_destination_endpoint.go │ │ │ ├── route_spec_destination_schema.go │ │ │ ├── route_spec_destination_service.go │ │ │ ├── route_spec_destination_tls.go │ │ │ ├── route_spec_options.go │ │ │ ├── route_spec_options_upgrade.go │ │ │ ├── route_spec_protocol.go │ │ │ ├── route_spec_route.go │ │ │ ├── route_status.go │ │ │ ├── route_status_target.go │ │ │ ├── route_status_target_authentication.go │ │ │ ├── route_status_target_destination.go │ │ │ ├── route_status_target_options.go │ │ │ ├── route_status_target_options_upgrade.go │ │ │ ├── route_status_target_route.go │ │ │ ├── route_status_target_tls.go │ │ │ ├── route_status_target_type.go │ │ │ ├── route_upgrade_type.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── route.go │ │ │ ├── route_spec.go │ │ │ ├── route_spec_authentication_pass_mode.go │ │ │ ├── route_spec_authentication_type.go │ │ │ ├── route_spec_destination.go │ │ │ ├── route_spec_destination_authentication.go │ │ │ ├── route_spec_destination_endpoint.go │ │ │ ├── route_spec_destination_redirect.go │ │ │ ├── route_spec_destination_schema.go │ │ │ ├── route_spec_destination_service.go │ │ │ ├── route_spec_destination_tls.go │ │ │ ├── route_spec_options.go │ │ │ ├── route_spec_options_upgrade.go │ │ │ ├── route_spec_protocol.go │ │ │ ├── route_spec_route.go │ │ │ ├── route_status.go │ │ │ ├── route_status_target.go │ │ │ ├── route_status_target_authentication.go │ │ │ ├── route_status_target_destination.go │ │ │ ├── route_status_target_options.go │ │ │ ├── route_status_target_options_upgrade.go │ │ │ ├── route_status_target_redirect.go │ │ │ ├── route_status_target_route.go │ │ │ ├── route_status_target_tls.go │ │ │ ├── route_status_target_type.go │ │ │ ├── route_upgrade_type.go │ │ │ └── zz_generated.deepcopy.go │ ├── platform │ │ ├── definitions.go │ │ ├── v1alpha1 │ │ │ ├── authentication │ │ │ │ ├── doc.go │ │ │ │ ├── openid.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── chart.go │ │ │ ├── chart_details.go │ │ │ ├── chart_details_platform.go │ │ │ ├── chart_details_platform_version.go │ │ │ ├── chart_spec.go │ │ │ ├── chart_status.go │ │ │ ├── chart_status_info.go │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── service.go │ │ │ ├── service_spec.go │ │ │ ├── service_status.go │ │ │ ├── service_status_release.go │ │ │ ├── storage.go │ │ │ ├── storage_spec.go │ │ │ ├── storage_spec_backend.go │ │ │ ├── storage_spec_backend_gcs.go │ │ │ ├── storage_spec_backend_s3.go │ │ │ ├── storage_spec_mode.go │ │ │ ├── storage_spec_mode_sidecar.go │ │ │ ├── storage_spec_test.go │ │ │ ├── storage_status.go │ │ │ ├── types │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── authentication │ │ │ ├── doc.go │ │ │ ├── openid.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── chart.go │ │ │ ├── chart_details.go │ │ │ ├── chart_details_platform.go │ │ │ ├── chart_details_platform_version.go │ │ │ ├── chart_spec.go │ │ │ ├── chart_status.go │ │ │ ├── chart_status_info.go │ │ │ ├── conditions.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── service.go │ │ │ ├── service_spec.go │ │ │ ├── service_status.go │ │ │ ├── service_status_release.go │ │ │ ├── storage.go │ │ │ ├── storage_spec.go │ │ │ ├── storage_spec_backend.go │ │ │ ├── storage_spec_backend_gcs.go │ │ │ ├── storage_spec_backend_s3.go │ │ │ ├── storage_spec_mode.go │ │ │ ├── storage_spec_mode_sidecar.go │ │ │ ├── storage_spec_test.go │ │ │ ├── storage_status.go │ │ │ ├── types │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ ├── replication │ │ ├── definitions.go │ │ ├── v1 │ │ │ ├── collection_status.go │ │ │ ├── conditions.go │ │ │ ├── conditions_test.go │ │ │ ├── database_status.go │ │ │ ├── database_synchronization_status.go │ │ │ ├── doc.go │ │ │ ├── endpoint_authentication_spec.go │ │ │ ├── endpoint_spec.go │ │ │ ├── endpoint_status.go │ │ │ ├── endpoint_tls_spec.go │ │ │ ├── errors.go │ │ │ ├── register.go │ │ │ ├── replication.go │ │ │ ├── replication_phase.go │ │ │ ├── replication_spec.go │ │ │ ├── replication_status.go │ │ │ ├── shard_status.go │ │ │ ├── synchronization_status.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2alpha1 │ │ │ ├── collection_status.go │ │ │ ├── conditions.go │ │ │ ├── conditions_test.go │ │ │ ├── database_status.go │ │ │ ├── database_synchronization_status.go │ │ │ ├── doc.go │ │ │ ├── endpoint_authentication_spec.go │ │ │ ├── endpoint_spec.go │ │ │ ├── endpoint_status.go │ │ │ ├── endpoint_tls_spec.go │ │ │ ├── errors.go │ │ │ ├── register.go │ │ │ ├── replication.go │ │ │ ├── replication_phase.go │ │ │ ├── replication_spec.go │ │ │ ├── replication_status.go │ │ │ ├── shard_status.go │ │ │ ├── synchronization_status.go │ │ │ └── zz_generated.deepcopy.go │ ├── scheduler │ │ ├── definitions.go │ │ ├── v1alpha1 │ │ │ ├── container │ │ │ │ ├── definition.go │ │ │ │ ├── definition_container_test.go │ │ │ │ ├── definition_containers_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── generic_test.go │ │ │ │ ├── resources │ │ │ │ │ ├── core.go │ │ │ │ │ ├── core_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── environments.go │ │ │ │ │ ├── environments_test.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_test.go │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── lifecycle_test.go │ │ │ │ │ ├── networking.go │ │ │ │ │ ├── networking_test.go │ │ │ │ │ ├── probes.go │ │ │ │ │ ├── probes_test.go │ │ │ │ │ ├── resources.go │ │ │ │ │ ├── resources_test.go │ │ │ │ │ ├── security.go │ │ │ │ │ ├── security_test.go │ │ │ │ │ ├── volume_mounts.go │ │ │ │ │ ├── volume_mounts_test.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── doc.go │ │ │ ├── interfaces │ │ │ │ └── interfaces.go │ │ │ ├── pod │ │ │ │ ├── definition.go │ │ │ │ ├── definition_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── resources │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_test.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── metadata_test.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_test.go │ │ │ │ │ ├── scheduling.go │ │ │ │ │ ├── scheduling_test.go │ │ │ │ │ ├── security.go │ │ │ │ │ ├── security_test.go │ │ │ │ │ ├── service_account.go │ │ │ │ │ ├── service_account_test.go │ │ │ │ │ ├── volumes.go │ │ │ │ │ ├── volumes_test.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── profile.go │ │ │ ├── profile_container_template.go │ │ │ ├── profile_selectors.go │ │ │ ├── profile_spec.go │ │ │ ├── profile_status.go │ │ │ ├── profile_template.go │ │ │ ├── profile_templates.go │ │ │ ├── profiles │ │ │ │ ├── environments.container.kubernetes.go │ │ │ │ └── environments.container.resources.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── conditions.go │ │ │ ├── container │ │ │ ├── definition.go │ │ │ ├── definition_container_test.go │ │ │ ├── definition_containers_test.go │ │ │ ├── doc.go │ │ │ ├── generic.go │ │ │ ├── generic_test.go │ │ │ ├── resources │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── environments.go │ │ │ │ ├── environments_test.go │ │ │ │ ├── image.go │ │ │ │ ├── image_test.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecycle_test.go │ │ │ │ ├── networking.go │ │ │ │ ├── networking_test.go │ │ │ │ ├── probes.go │ │ │ │ ├── probes_test.go │ │ │ │ ├── resources.go │ │ │ │ ├── resources_test.go │ │ │ │ ├── security.go │ │ │ │ ├── security_test.go │ │ │ │ ├── volume_mounts.go │ │ │ │ ├── volume_mounts_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── doc.go │ │ │ ├── integration │ │ │ ├── doc.go │ │ │ ├── integration.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── interfaces │ │ │ └── interfaces.go │ │ │ ├── pod │ │ │ ├── definition.go │ │ │ ├── definition_test.go │ │ │ ├── doc.go │ │ │ ├── resources │ │ │ │ ├── doc.go │ │ │ │ ├── image.go │ │ │ │ ├── image_test.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metadata_test.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_test.go │ │ │ │ ├── scheduling.go │ │ │ │ ├── scheduling_test.go │ │ │ │ ├── security.go │ │ │ │ ├── security_test.go │ │ │ │ ├── service_account.go │ │ │ │ ├── service_account_test.go │ │ │ │ ├── volumes.go │ │ │ │ ├── volumes_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── policy │ │ │ ├── doc.go │ │ │ ├── merge.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── profile.go │ │ │ ├── profile_accepted_template.go │ │ │ ├── profile_container_template.go │ │ │ ├── profile_selectors.go │ │ │ ├── profile_spec.go │ │ │ ├── profile_status.go │ │ │ ├── profile_template.go │ │ │ ├── profile_templates.go │ │ │ ├── profiles │ │ │ ├── environments.container.kubernetes.go │ │ │ └── environments.container.resources.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_batchjob.go │ │ │ ├── types_cronjob.go │ │ │ ├── types_deployment.go │ │ │ ├── types_pod.go │ │ │ └── zz_generated.deepcopy.go │ ├── shared │ │ ├── constants.go │ │ ├── errors.go │ │ ├── names.go │ │ ├── names_test.go │ │ ├── v1 │ │ │ ├── any.go │ │ │ ├── any_test.go │ │ │ ├── any_testing.go │ │ │ ├── data.go │ │ │ ├── data_test.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── object.go │ │ │ ├── object_test.go │ │ │ ├── resource.go │ │ │ ├── service_account.go │ │ │ ├── tls.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── validate.go │ │ └── validate_test.go │ └── storage │ │ ├── definitions.go │ │ └── v1alpha │ │ ├── doc.go │ │ ├── errors.go │ │ ├── local_storage.go │ │ ├── local_storage_pod_customization.go │ │ ├── local_storage_spec.go │ │ ├── local_storage_spec_test.go │ │ ├── local_storage_state.go │ │ ├── local_storage_status.go │ │ ├── register.go │ │ ├── storage_class_spec.go │ │ ├── storage_class_spec_test.go │ │ └── zz_generated.deepcopy.go ├── crd │ ├── analytics.go │ ├── apply.go │ ├── apply_test.go │ ├── arangobackup.go │ ├── arangobackuppolicies.go │ ├── arangoclustersynchronizations.go │ ├── arangodeploymentreplications.go │ ├── arangodeployments.go │ ├── arangojobs.go │ ├── arangolocalstorage.go │ ├── arangomembers.go │ ├── arangoml.go │ ├── arangotasks.go │ ├── crds │ │ ├── analytics-graphanalyticsengine.go │ │ ├── analytics-graphanalyticsengine.schema.generated.yaml │ │ ├── analytics-graphanalyticsengine.yaml │ │ ├── apps-job.go │ │ ├── apps-job.schema.generated.yaml │ │ ├── apps-job.yaml │ │ ├── backups-backup.go │ │ ├── backups-backup.schema.generated.yaml │ │ ├── backups-backup.yaml │ │ ├── backups-backuppolicy.go │ │ ├── backups-backuppolicy.schema.generated.yaml │ │ ├── backups-backuppolicy.yaml │ │ ├── crds.go │ │ ├── crds_test.go │ │ ├── database-clustersynchronization.go │ │ ├── database-clustersynchronization.schema.generated.yaml │ │ ├── database-clustersynchronization.yaml │ │ ├── database-deployment.go │ │ ├── database-deployment.schema.generated.yaml │ │ ├── database-deployment.yaml │ │ ├── database-member.go │ │ ├── database-member.schema.generated.yaml │ │ ├── database-member.yaml │ │ ├── database-task.go │ │ ├── database-task.schema.generated.yaml │ │ ├── database-task.yaml │ │ ├── ml-extension.go │ │ ├── ml-extension.schema.generated.yaml │ │ ├── ml-extension.yaml │ │ ├── ml-job-batch.go │ │ ├── ml-job-batch.schema.generated.yaml │ │ ├── ml-job-batch.yaml │ │ ├── ml-job-cron.go │ │ ├── ml-job-cron.schema.generated.yaml │ │ ├── ml-job-cron.yaml │ │ ├── ml-storage.go │ │ ├── ml-storage.schema.generated.yaml │ │ ├── ml-storage.yaml │ │ ├── networking-route.go │ │ ├── networking-route.schema.generated.yaml │ │ ├── networking-route.yaml │ │ ├── platform-chart.go │ │ ├── platform-chart.schema.generated.yaml │ │ ├── platform-chart.yaml │ │ ├── platform-service.go │ │ ├── platform-service.schema.generated.yaml │ │ ├── platform-service.yaml │ │ ├── platform-storage.go │ │ ├── platform-storage.schema.generated.yaml │ │ ├── platform-storage.yaml │ │ ├── replication-deploymentreplication.go │ │ ├── replication-deploymentreplication.schema.generated.yaml │ │ ├── replication-deploymentreplication.yaml │ │ ├── scheduler-batchjob.go │ │ ├── scheduler-batchjob.schema.generated.yaml │ │ ├── scheduler-batchjob.yaml │ │ ├── scheduler-cronjob.go │ │ ├── scheduler-cronjob.schema.generated.yaml │ │ ├── scheduler-cronjob.yaml │ │ ├── scheduler-deployment.go │ │ ├── scheduler-deployment.schema.generated.yaml │ │ ├── scheduler-deployment.yaml │ │ ├── scheduler-pod.go │ │ ├── scheduler-pod.schema.generated.yaml │ │ ├── scheduler-pod.yaml │ │ ├── scheduler-profile.go │ │ ├── scheduler-profile.schema.generated.yaml │ │ ├── scheduler-profile.yaml │ │ ├── storage-localstorage.go │ │ ├── storage-localstorage.schema.generated.yaml │ │ └── storage-localstorage.yaml │ ├── definitions.go │ ├── networking.go │ ├── platform.go │ └── scheduling.go ├── debug_package │ ├── cli │ │ └── cli.go │ ├── generator.go │ ├── generators │ │ ├── arango │ │ │ ├── arango.go │ │ │ ├── arango_analytics.go │ │ │ ├── arango_backup.go │ │ │ ├── arango_database.go │ │ │ ├── arango_database_deployment.go │ │ │ ├── arango_ml.go │ │ │ ├── arango_networking.go │ │ │ ├── arango_platform.go │ │ │ ├── arango_platform_charts.go │ │ │ ├── arango_platform_storage.go │ │ │ └── arango_scheduler.go │ │ ├── helm │ │ │ └── helm.go │ │ ├── kubernetes │ │ │ ├── kubernetes.go │ │ │ ├── kubernetes_apps.go │ │ │ ├── kubernetes_batch.go │ │ │ ├── kubernetes_core.go │ │ │ ├── kubernetes_core_pods.go │ │ │ ├── kubernetes_core_secrets.go │ │ │ └── kubernetes_core_services.go │ │ └── prometheus │ │ │ ├── prometheus.go │ │ │ └── prometheus_monitoring.go │ ├── out.go │ └── shared │ │ ├── exec.go │ │ ├── file.go │ │ ├── gen.go │ │ ├── k8s.go │ │ └── prefix.go ├── deployment │ ├── access_package.go │ ├── acs │ │ ├── acs.community.go │ │ └── sutil │ │ │ ├── conditions.go │ │ │ └── interfaces.go │ ├── actions │ │ └── wrapper.go │ ├── agency │ │ ├── cache.go │ │ ├── config.go │ │ ├── config │ │ │ └── config.go │ │ ├── config_test.go │ │ ├── definitions.go │ │ ├── leader.go │ │ ├── loader.community.go │ │ ├── loader.go │ │ ├── loader_delayer.go │ │ ├── loader_invalidate.go │ │ ├── loader_refresher.go │ │ ├── loader_retry.go │ │ ├── loader_timeout.go │ │ ├── logger.go │ │ ├── state.go │ │ └── state │ │ │ ├── arangosync.go │ │ │ ├── arangosync_test.go │ │ │ ├── current_collections.go │ │ │ ├── current_maintenance_servers.go │ │ │ ├── generator_collection_test.go │ │ │ ├── generator_database_test.go │ │ │ ├── generator_jobs_test.go │ │ │ ├── generator_shard_test.go │ │ │ ├── generator_test.go │ │ │ ├── job.go │ │ │ ├── job_test.go │ │ │ ├── jobs_performance_test.go │ │ │ ├── leader_test.go │ │ │ ├── plan_collections.go │ │ │ ├── plan_databases.go │ │ │ ├── plan_databases_test.go │ │ │ ├── rf.go │ │ │ ├── server.go │ │ │ ├── shards.go │ │ │ ├── shards_in_sync.go │ │ │ ├── shards_in_sync_test.go │ │ │ ├── state.go │ │ │ ├── state_exists.go │ │ │ ├── state_performance_test.go │ │ │ ├── state_test.go │ │ │ ├── state_timestamp.go │ │ │ ├── supervision.go │ │ │ ├── target.go │ │ │ ├── target_test.go │ │ │ └── testdata │ │ │ ├── agency_dump.3.10.json │ │ │ ├── agency_dump.3.6.json │ │ │ ├── agency_dump.3.7.json │ │ │ ├── agency_dump.3.8.json │ │ │ ├── agency_dump.3.9.hotbackup.json │ │ │ ├── agency_dump.3.9.jobs.json │ │ │ ├── agency_dump.3.9.json │ │ │ ├── agency_dump.3.9.satellite.json │ │ │ ├── config.json │ │ │ ├── longdata.json │ │ │ ├── sync.source.json │ │ │ └── sync.target.json │ ├── chaos │ │ ├── context.go │ │ └── monkey.go │ ├── cleanup.go │ ├── client │ │ ├── client.go │ │ ├── client_cache.go │ │ ├── compact.go │ │ ├── encryption.go │ │ ├── id.go │ │ ├── inventory.go │ │ ├── jobs.go │ │ ├── jwt.go │ │ ├── license.go │ │ ├── logger.go │ │ ├── logger_impl.go │ │ ├── maintenance.go │ │ ├── rebalance.execute.go │ │ ├── rebalance.get.go │ │ ├── rebalance.go │ │ ├── rebalance.plan.go │ │ ├── sha.go │ │ ├── status.go │ │ ├── tls.go │ │ └── types.go │ ├── cluster_scaling_integration.go │ ├── context_impl.go │ ├── deployment.go │ ├── deployment_affinity_test.go │ ├── deployment_core_test.go │ ├── deployment_definitions_test.go │ ├── deployment_encryption_test.go │ ├── deployment_features_test.go │ ├── deployment_finalizers.go │ ├── deployment_image_test.go │ ├── deployment_inspector.go │ ├── deployment_metrics_test.go │ ├── deployment_pod_probe_test.go │ ├── deployment_pod_resources_test.go │ ├── deployment_pod_sync_test.go │ ├── deployment_pod_tls_sni_test.go │ ├── deployment_pod_volumes_test.go │ ├── deployment_run_test.go │ ├── deployment_spec_test.go │ ├── deployment_status_pod_details_recovery.go │ ├── deployment_status_recovery.go │ ├── deployment_suite_args_test.go │ ├── deployment_suite_test.go │ ├── features │ │ ├── active-failover.go │ │ ├── agency.go │ │ ├── backup.go │ │ ├── config.go │ │ ├── deployment.go │ │ ├── encryption.go │ │ ├── features.go │ │ ├── gateway.go │ │ ├── graceful.go │ │ ├── init_containers.go │ │ ├── jwt.go │ │ ├── local.go │ │ ├── maintenance.go │ │ ├── metrics.go │ │ ├── names.go │ │ ├── rebalancer.go │ │ ├── rebuild_out_synced_shards.go │ │ ├── resign_leadership.go │ │ ├── restart_policy_always.go │ │ ├── secured_containers.go │ │ ├── security.go │ │ ├── timezone.go │ │ ├── tls.go │ │ ├── upgrade.go │ │ ├── upgrade_test.go │ │ ├── version_3_10.go │ │ └── volumes.go │ ├── images.go │ ├── images_test.go │ ├── logger.go │ ├── member │ │ ├── image.go │ │ ├── phase_updates.go │ │ ├── state.go │ │ └── state_test.go │ ├── members.community.go │ ├── members.go │ ├── metrics.go │ ├── metrics_conditions.go │ ├── old_metrics.go │ ├── patch │ │ ├── item.go │ │ └── patch.go │ ├── pod │ │ ├── affinity.go │ │ ├── builder.go │ │ ├── encryption.go │ │ ├── jwt.go │ │ ├── probes.go │ │ ├── security.go │ │ ├── sni-gateway.go │ │ ├── sni.go │ │ ├── timezone.go │ │ ├── tls.go │ │ ├── topology.community.go │ │ ├── topology.go │ │ ├── upgrade.go │ │ ├── upgrade_version_check.go │ │ ├── utils.go │ │ └── volumes.go │ ├── reconcile │ │ ├── action.config.generated.go │ │ ├── action.go │ │ ├── action.register.generated.go │ │ ├── action.register.generated_test.go │ │ ├── action_add_member.go │ │ ├── action_arango_member_update_pod_spec.go │ │ ├── action_arango_member_update_pod_status.go │ │ ├── action_backup_restore.go │ │ ├── action_backup_restore_clean.go │ │ ├── action_bootstrap_set_password.go │ │ ├── action_bootstrap_update.go │ │ ├── action_clean_member_service.go │ │ ├── action_cleanout_member.go │ │ ├── action_cluster_member_cleanup.go │ │ ├── action_compact_member.go │ │ ├── action_context.go │ │ ├── action_delay.go │ │ ├── action_encryption_add.go │ │ ├── action_encryption_propagated.go │ │ ├── action_encryption_refresh.go │ │ ├── action_encryption_remove.go │ │ ├── action_encryption_status_update.go │ │ ├── action_enforce_resign_leadership.go │ │ ├── action_helper.go │ │ ├── action_idle.go │ │ ├── action_jwt_add.go │ │ ├── action_jwt_clean.go │ │ ├── action_jwt_propagated.go │ │ ├── action_jwt_refresh.go │ │ ├── action_jwt_set_active.go │ │ ├── action_jwt_status_update.go │ │ ├── action_kill_member_pod.go │ │ ├── action_license_clean.go │ │ ├── action_license_generate.go │ │ ├── action_license_set.go │ │ ├── action_maintenance_condition.go │ │ ├── action_maintenance_disable.go │ │ ├── action_maintenance_enable.go │ │ ├── action_mark_to_remove_member.go │ │ ├── action_member_maintenance_disable.community.go │ │ ├── action_member_maintenance_disable.go │ │ ├── action_member_maintenance_enable.community.go │ │ ├── action_member_maintenance_enable.go │ │ ├── action_member_phase_update.go │ │ ├── action_member_status_sync.go │ │ ├── action_migrate_member.go │ │ ├── action_placeholder.community.go │ │ ├── action_placeholder.go │ │ ├── action_pvc_resize.go │ │ ├── action_pvc_resized.go │ │ ├── action_rebalancer_check.community.go │ │ ├── action_rebalancer_check.go │ │ ├── action_rebalancer_check_v2.go │ │ ├── action_rebalancer_clean.community.go │ │ ├── action_rebalancer_clean.go │ │ ├── action_rebalancer_clean_v2.go │ │ ├── action_rebalancer_generate.community.go │ │ ├── action_rebalancer_generate.go │ │ ├── action_rebalancer_generate_v2.go │ │ ├── action_rebalancer_helper.go │ │ ├── action_rebuild_outsynced_shards.go │ │ ├── action_recreate_member.go │ │ ├── action_remove_member.go │ │ ├── action_remove_member_pvc.go │ │ ├── action_renew_tls_certificate.go │ │ ├── action_resign_leadership.go │ │ ├── action_resign_leadership_utils.go │ │ ├── action_resource_sync.go │ │ ├── action_rotate_member.go │ │ ├── action_rotate_start_member.go │ │ ├── action_rotate_stop_member.go │ │ ├── action_runtime_container_args_udpate.go │ │ ├── action_runtime_container_image_update.go │ │ ├── action_runtime_sync_tolerations.go │ │ ├── action_set_annotation.go │ │ ├── action_set_condition_v2.go │ │ ├── action_set_current_image.go │ │ ├── action_set_current_member_arch.go │ │ ├── action_set_member_condition_v2.go │ │ ├── action_shutdown_member.go │ │ ├── action_test.go │ │ ├── action_timeouts.go │ │ ├── action_timezone_secret_set.go │ │ ├── action_tls_ca_append.go │ │ ├── action_tls_ca_clean.go │ │ ├── action_tls_ca_refresh.go │ │ ├── action_tls_ca_renew.go │ │ ├── action_tls_keyfile_clean.go │ │ ├── action_tls_keyfile_refresh.go │ │ ├── action_tls_propagated.go │ │ ├── action_tls_sni_update.go │ │ ├── action_tls_status_update.go │ │ ├── action_topology_disable.community.go │ │ ├── action_topology_disable.go │ │ ├── action_topology_enable.community.go │ │ ├── action_topology_enable.go │ │ ├── action_topology_member_assignment.community.go │ │ ├── action_topology_member_assignment.go │ │ ├── action_topology_zones_update.community.go │ │ ├── action_topology_zones_update.go │ │ ├── action_upgrade_current_image.go │ │ ├── action_upgrade_member.go │ │ ├── action_uptodate_update.go │ │ ├── action_wait_for_member_in_sync.go │ │ ├── action_wait_for_member_ready.go │ │ ├── action_wait_for_member_up.go │ │ ├── condition_member_recreation.go │ │ ├── context.go │ │ ├── helper_member.go │ │ ├── helper_shutdown.go │ │ ├── helper_tls_sni.go │ │ ├── helper_wrap.go │ │ ├── metrics.go │ │ ├── plan_builder.go │ │ ├── plan_builder_appender.go │ │ ├── plan_builder_appender_test.go │ │ ├── plan_builder_bootstrap.go │ │ ├── plan_builder_clean_out.go │ │ ├── plan_builder_cluster.go │ │ ├── plan_builder_common.go │ │ ├── plan_builder_context.go │ │ ├── plan_builder_encryption.go │ │ ├── plan_builder_factory.go │ │ ├── plan_builder_gateway.go │ │ ├── plan_builder_generator.go │ │ ├── plan_builder_high.go │ │ ├── plan_builder_jwt.go │ │ ├── plan_builder_license.go │ │ ├── plan_builder_maintenance.community.go │ │ ├── plan_builder_maintenance.go │ │ ├── plan_builder_member_pod_scheduling_failure.go │ │ ├── plan_builder_member_recovery.go │ │ ├── plan_builder_normal.go │ │ ├── plan_builder_rebalancer.community.go │ │ ├── plan_builder_rebalancer.go │ │ ├── plan_builder_rebalancer_v2.go │ │ ├── plan_builder_rebuild_outsynced_shards.go │ │ ├── plan_builder_resources.go │ │ ├── plan_builder_restore.go │ │ ├── plan_builder_rotate_arch.go │ │ ├── plan_builder_rotate_upgrade.go │ │ ├── plan_builder_rotate_upgrade_decision.go │ │ ├── plan_builder_rotate_upgrade_decision_test.go │ │ ├── plan_builder_rotate_upgrade_test.go │ │ ├── plan_builder_scale.go │ │ ├── plan_builder_scale_funcs.community.go │ │ ├── plan_builder_scale_funcs.go │ │ ├── plan_builder_scale_utils.go │ │ ├── plan_builder_storage.go │ │ ├── plan_builder_sync.go │ │ ├── plan_builder_test.go │ │ ├── plan_builder_timezone.go │ │ ├── plan_builder_tls.go │ │ ├── plan_builder_tls_go1.19.go │ │ ├── plan_builder_tls_go1.20.go │ │ ├── plan_builder_tls_sni.go │ │ ├── plan_builder_topology.community.go │ │ ├── plan_builder_utils.go │ │ ├── plan_builder_volume.go │ │ ├── plan_builder_volume_test.go │ │ ├── plan_executor.go │ │ ├── plan_executor_test.go │ │ ├── reconciler.go │ │ ├── shared │ │ │ ├── action_set_condition_v2.go │ │ │ └── shared.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── utils_timezone.go │ │ └── utils_timezone_test.go │ ├── reconciler │ │ └── context.go │ ├── resilience │ │ ├── context.go │ │ ├── logger.go │ │ ├── member_failure.go │ │ └── resilience.go │ ├── resources │ │ ├── annotations.go │ │ ├── arango_profiles.go │ │ ├── certificates.go │ │ ├── certificates_client_auth.go │ │ ├── certificates_tls.go │ │ ├── config_map_gateway.go │ │ ├── config_map_gateway_member.go │ │ ├── config_maps.go │ │ ├── config_maps_member.go │ │ ├── context.go │ │ ├── env_builder.go │ │ ├── exporter.go │ │ ├── gateway │ │ │ ├── alpn.go │ │ │ ├── alpn_test.go │ │ │ ├── dynamic.go │ │ │ ├── gateway_authz_extension.go │ │ │ ├── gateway_config.go │ │ │ ├── gateway_config_destination.go │ │ │ ├── gateway_config_destination_health.go │ │ │ ├── gateway_config_destination_protocol.go │ │ │ ├── gateway_config_destination_redirect.go │ │ │ ├── gateway_config_destination_static.go │ │ │ ├── gateway_config_destination_target.go │ │ │ ├── gateway_config_destination_tls.go │ │ │ ├── gateway_config_destination_type.go │ │ │ ├── gateway_config_destination_upgrade.go │ │ │ ├── gateway_config_options.go │ │ │ ├── gateway_config_sni.go │ │ │ ├── gateway_config_test.go │ │ │ ├── gateway_config_tls.go │ │ │ ├── gateway_filter_extension.go │ │ │ └── path.go │ │ ├── inspector │ │ │ ├── acs.go │ │ │ ├── acs_anonymous.go │ │ │ ├── acs_gvk.go │ │ │ ├── acs_mod.go │ │ │ ├── am.go │ │ │ ├── am_anonymous.go │ │ │ ├── am_gvk.go │ │ │ ├── am_mod.go │ │ │ ├── ap.go │ │ │ ├── ap_anonymous.go │ │ │ ├── ap_gvk.go │ │ │ ├── ap_mod.go │ │ │ ├── aps.go │ │ │ ├── aps_anonymous.go │ │ │ ├── aps_gvk.go │ │ │ ├── aps_mod.go │ │ │ ├── apsvc.go │ │ │ ├── apsvc_anonymous.go │ │ │ ├── apsvc_gvk.go │ │ │ ├── apsvs_mod.go │ │ │ ├── ar.go │ │ │ ├── ar_anonymous.go │ │ │ ├── ar_gvk.go │ │ │ ├── ar_mod.go │ │ │ ├── at.go │ │ │ ├── at_anonymous.go │ │ │ ├── at_gvk.go │ │ │ ├── at_mod.go │ │ │ ├── configmaps.go │ │ │ ├── configmaps_anonymous.go │ │ │ ├── configmaps_gvk.go │ │ │ ├── configmaps_mod.go │ │ │ ├── endpoints.go │ │ │ ├── endpoints_anonymous.go │ │ │ ├── endpoints_gvk.go │ │ │ ├── endpoints_mod.go │ │ │ ├── errors.go │ │ │ ├── generic.go │ │ │ ├── inspector.go │ │ │ ├── inspector_test.go │ │ │ ├── k8s_informer.go │ │ │ ├── metrics.go │ │ │ ├── metrics_client.go │ │ │ ├── metrics_test.go │ │ │ ├── nodes.go │ │ │ ├── nodes_anonymous.go │ │ │ ├── nodes_gvk.go │ │ │ ├── owner.go │ │ │ ├── owner_test.go │ │ │ ├── pdbs.go │ │ │ ├── pdbs_anonymous.go │ │ │ ├── pdbs_gvk.go │ │ │ ├── pdbs_mod.go │ │ │ ├── pdbs_version_test.go │ │ │ ├── pods.go │ │ │ ├── pods_anonymous.go │ │ │ ├── pods_gvk.go │ │ │ ├── pods_mod.go │ │ │ ├── pvcs.go │ │ │ ├── pvcs_anonymous.go │ │ │ ├── pvcs_gvk.go │ │ │ ├── pvcs_mod.go │ │ │ ├── pvs.go │ │ │ ├── pvs_anonymous.go │ │ │ ├── pvs_gvk.go │ │ │ ├── register_loader.go │ │ │ ├── sa.go │ │ │ ├── sa_anonymous.go │ │ │ ├── sa_gvk.go │ │ │ ├── sa_mod.go │ │ │ ├── secrets.go │ │ │ ├── secrets_anonymous.go │ │ │ ├── secrets_gvk.go │ │ │ ├── secrets_mod.go │ │ │ ├── services.go │ │ │ ├── services_anonymous.go │ │ │ ├── services_gvk.go │ │ │ ├── services_mod.go │ │ │ ├── sm.go │ │ │ ├── sm_anonymous.go │ │ │ ├── sm_gvk.go │ │ │ ├── sm_mod.go │ │ │ ├── throttles.go │ │ │ └── wrap.go │ │ ├── internal_exporter.go │ │ ├── labels.go │ │ ├── logger.go │ │ ├── member_cleanup.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── pdbs.go │ │ ├── pod_cleanup.go │ │ ├── pod_creator.go │ │ ├── pod_creator_agent_args_test.go │ │ ├── pod_creator_arangod.go │ │ ├── pod_creator_coordinator_args_test.go │ │ ├── pod_creator_dbserver_args_test.go │ │ ├── pod_creator_gateway.go │ │ ├── pod_creator_gateway_container.go │ │ ├── pod_creator_gateway_pod.go │ │ ├── pod_creator_numactl_test.go │ │ ├── pod_creator_probes.go │ │ ├── pod_creator_single_args_test.go │ │ ├── pod_creator_sync.go │ │ ├── pod_creator_tolerations.go │ │ ├── pod_finalizers.go │ │ ├── pod_init_containers.go │ │ ├── pod_inspector.go │ │ ├── pod_inspector_restarts.go │ │ ├── pod_leader.go │ │ ├── pod_termination.go │ │ ├── pvc_finalizers.go │ │ ├── pvc_inspector.go │ │ ├── pvcs.go │ │ ├── resources.go │ │ ├── secret_hashes.go │ │ ├── secrets.go │ │ ├── servicemonitor.go │ │ └── services.go │ ├── rotation │ │ ├── arangod.go │ │ ├── arangod_containers.go │ │ ├── arangod_containers_test.go │ │ ├── arangod_empty.go │ │ ├── arangod_empty_test.go │ │ ├── arangod_envs.go │ │ ├── arangod_probes.go │ │ ├── arangod_test.go │ │ ├── arangod_tolerations.go │ │ ├── arangod_volume_mounts.go │ │ ├── arangod_volumes.go │ │ ├── arangod_volumes_test.go │ │ ├── builder_utils_security_context_test.go │ │ ├── builder_utils_volume_mounts_test.go │ │ ├── builder_utils_volume_test.go │ │ ├── check.go │ │ ├── compare.go │ │ ├── helper.go │ │ ├── logger.go │ │ ├── predefined_test.go │ │ ├── testdata │ │ │ ├── pod_lifecycle_change.000.spec.json │ │ │ └── pod_lifecycle_change.000.status.json │ │ └── utils_test.go │ ├── server_api.go │ ├── server_member_api.go │ ├── topology │ │ ├── const.go │ │ ├── mods.community.go │ │ └── topology.community.go │ └── versions │ │ ├── check.go │ │ ├── check_test.go │ │ ├── member_maintenance.go │ │ └── member_maintenance_test.go ├── exporter │ ├── exporter.go │ ├── monitor.go │ ├── monitor_test.go │ └── passthru.go ├── generated │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── analytics │ │ │ └── v1alpha1 │ │ │ │ ├── analytics_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_analytics_client.go │ │ │ │ └── fake_graphanalyticsengine.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── graphanalyticsengine.go │ │ │ ├── apps │ │ │ └── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── arangojob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ └── fake_arangojob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── backup │ │ │ └── v1 │ │ │ │ ├── arangobackup.go │ │ │ │ ├── arangobackuppolicy.go │ │ │ │ ├── backup_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangobackup.go │ │ │ │ ├── fake_arangobackuppolicy.go │ │ │ │ └── fake_backup_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── deployment │ │ │ ├── v1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ ├── deployment_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangoclustersynchronization.go │ │ │ │ │ ├── fake_arangodeployment.go │ │ │ │ │ ├── fake_arangomember.go │ │ │ │ │ ├── fake_arangotask.go │ │ │ │ │ └── fake_deployment_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ ├── deployment_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangoclustersynchronization.go │ │ │ │ ├── fake_arangodeployment.go │ │ │ │ ├── fake_arangomember.go │ │ │ │ ├── fake_arangotask.go │ │ │ │ └── fake_deployment_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── ml │ │ │ ├── v1alpha1 │ │ │ │ ├── arangomlbatchjob.go │ │ │ │ ├── arangomlcronjob.go │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangomlbatchjob.go │ │ │ │ │ ├── fake_arangomlcronjob.go │ │ │ │ │ ├── fake_arangomlextension.go │ │ │ │ │ ├── fake_arangomlstorage.go │ │ │ │ │ └── fake_ml_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── ml_client.go │ │ │ └── v1beta1 │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangomlextension.go │ │ │ │ ├── fake_arangomlstorage.go │ │ │ │ └── fake_ml_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── ml_client.go │ │ │ ├── networking │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoroute.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangoroute.go │ │ │ │ │ └── fake_networking_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── networking_client.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoroute.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangoroute.go │ │ │ │ └── fake_networking_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── networking_client.go │ │ │ ├── platform │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangoplatformchart.go │ │ │ │ │ ├── fake_arangoplatformservice.go │ │ │ │ │ ├── fake_arangoplatformstorage.go │ │ │ │ │ └── fake_platform_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── platform_client.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangoplatformchart.go │ │ │ │ ├── fake_arangoplatformservice.go │ │ │ │ ├── fake_arangoplatformstorage.go │ │ │ │ └── fake_platform_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── platform_client.go │ │ │ ├── replication │ │ │ ├── v1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangodeploymentreplication.go │ │ │ │ │ └── fake_replication_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── replication_client.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangodeploymentreplication.go │ │ │ │ └── fake_replication_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── replication_client.go │ │ │ ├── scheduler │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoprofile.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_arangoprofile.go │ │ │ │ │ └── fake_scheduler_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── scheduler_client.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoprofile.go │ │ │ │ ├── arangoschedulerbatchjob.go │ │ │ │ ├── arangoschedulercronjob.go │ │ │ │ ├── arangoschedulerdeployment.go │ │ │ │ ├── arangoschedulerpod.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_arangoprofile.go │ │ │ │ ├── fake_arangoschedulerbatchjob.go │ │ │ │ ├── fake_arangoschedulercronjob.go │ │ │ │ ├── fake_arangoschedulerdeployment.go │ │ │ │ ├── fake_arangoschedulerpod.go │ │ │ │ └── fake_scheduler_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── scheduler_client.go │ │ │ └── storage │ │ │ └── v1alpha │ │ │ ├── arangolocalstorage.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_arangolocalstorage.go │ │ │ └── fake_storage_client.go │ │ │ ├── generated_expansion.go │ │ │ └── storage_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── analytics │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── graphanalyticsengine.go │ │ │ │ └── interface.go │ │ │ ├── apps │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── arangojob.go │ │ │ │ └── interface.go │ │ │ ├── backup │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── arangobackup.go │ │ │ │ ├── arangobackuppolicy.go │ │ │ │ └── interface.go │ │ │ ├── deployment │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ └── interface.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ ├── ml │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── arangomlbatchjob.go │ │ │ │ ├── arangomlcronjob.go │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ └── interface.go │ │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoroute.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoroute.go │ │ │ │ └── interface.go │ │ │ ├── platform │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ └── interface.go │ │ │ ├── replication │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ └── interface.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ └── interface.go │ │ │ ├── scheduler │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoprofile.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoprofile.go │ │ │ │ ├── arangoschedulerbatchjob.go │ │ │ │ ├── arangoschedulercronjob.go │ │ │ │ ├── arangoschedulerdeployment.go │ │ │ │ ├── arangoschedulerpod.go │ │ │ │ └── interface.go │ │ │ └── storage │ │ │ ├── interface.go │ │ │ └── v1alpha │ │ │ ├── arangolocalstorage.go │ │ │ └── interface.go │ ├── listers │ │ ├── analytics │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── graphanalyticsengine.go │ │ ├── apps │ │ │ └── v1 │ │ │ │ ├── arangojob.go │ │ │ │ └── expansion_generated.go │ │ ├── backup │ │ │ └── v1 │ │ │ │ ├── arangobackup.go │ │ │ │ ├── arangobackuppolicy.go │ │ │ │ └── expansion_generated.go │ │ ├── deployment │ │ │ ├── v1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ └── expansion_generated.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangoclustersynchronization.go │ │ │ │ ├── arangodeployment.go │ │ │ │ ├── arangomember.go │ │ │ │ ├── arangotask.go │ │ │ │ └── expansion_generated.go │ │ ├── ml │ │ │ ├── v1alpha1 │ │ │ │ ├── arangomlbatchjob.go │ │ │ │ ├── arangomlcronjob.go │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── arangomlextension.go │ │ │ │ ├── arangomlstorage.go │ │ │ │ └── expansion_generated.go │ │ ├── networking │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoroute.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoroute.go │ │ │ │ └── expansion_generated.go │ │ ├── platform │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoplatformchart.go │ │ │ │ ├── arangoplatformservice.go │ │ │ │ ├── arangoplatformstorage.go │ │ │ │ └── expansion_generated.go │ │ ├── replication │ │ │ ├── v1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ └── expansion_generated.go │ │ │ └── v2alpha1 │ │ │ │ ├── arangodeploymentreplication.go │ │ │ │ └── expansion_generated.go │ │ ├── scheduler │ │ │ ├── v1alpha1 │ │ │ │ ├── arangoprofile.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── arangoprofile.go │ │ │ │ ├── arangoschedulerbatchjob.go │ │ │ │ ├── arangoschedulercronjob.go │ │ │ │ ├── arangoschedulerdeployment.go │ │ │ │ ├── arangoschedulerpod.go │ │ │ │ └── expansion_generated.go │ │ └── storage │ │ │ └── v1alpha │ │ │ ├── arangolocalstorage.go │ │ │ └── expansion_generated.go │ ├── metric_descriptions │ │ ├── arangodb_operator_agency_cache_health_present.go │ │ ├── arangodb_operator_agency_cache_health_present_test.go │ │ ├── arangodb_operator_agency_cache_healthy.go │ │ ├── arangodb_operator_agency_cache_healthy_test.go │ │ ├── arangodb_operator_agency_cache_leaders.go │ │ ├── arangodb_operator_agency_cache_leaders_test.go │ │ ├── arangodb_operator_agency_cache_member_commit_offset.go │ │ ├── arangodb_operator_agency_cache_member_commit_offset_test.go │ │ ├── arangodb_operator_agency_cache_member_serving.go │ │ ├── arangodb_operator_agency_cache_member_serving_test.go │ │ ├── arangodb_operator_agency_cache_present.go │ │ ├── arangodb_operator_agency_cache_present_test.go │ │ ├── arangodb_operator_agency_cache_serving.go │ │ ├── arangodb_operator_agency_cache_serving_test.go │ │ ├── arangodb_operator_agency_errors.go │ │ ├── arangodb_operator_agency_errors_test.go │ │ ├── arangodb_operator_agency_fetches.go │ │ ├── arangodb_operator_agency_fetches_test.go │ │ ├── arangodb_operator_agency_index.go │ │ ├── arangodb_operator_agency_index_test.go │ │ ├── arangodb_operator_deployment_conditions.go │ │ ├── arangodb_operator_deployment_conditions_test.go │ │ ├── arangodb_operator_engine_assertions.go │ │ ├── arangodb_operator_engine_assertions_test.go │ │ ├── arangodb_operator_engine_ops_alerts.go │ │ ├── arangodb_operator_engine_ops_alerts_test.go │ │ ├── arangodb_operator_engine_panics_recovered.go │ │ ├── arangodb_operator_engine_panics_recovered_test.go │ │ ├── arangodb_operator_kubernetes_client_request_errors.go │ │ ├── arangodb_operator_kubernetes_client_request_errors_test.go │ │ ├── arangodb_operator_kubernetes_client_requests.go │ │ ├── arangodb_operator_kubernetes_client_requests_test.go │ │ ├── arangodb_operator_members_conditions.go │ │ ├── arangodb_operator_members_conditions_test.go │ │ ├── arangodb_operator_members_unexpected_container_exit_codes.go │ │ ├── arangodb_operator_members_unexpected_container_exit_codes_test.go │ │ ├── arangodb_operator_objects_processed.go │ │ ├── arangodb_operator_objects_processed_test.go │ │ ├── arangodb_operator_rebalancer_enabled.go │ │ ├── arangodb_operator_rebalancer_enabled_test.go │ │ ├── arangodb_operator_rebalancer_moves_current.go │ │ ├── arangodb_operator_rebalancer_moves_current_test.go │ │ ├── arangodb_operator_rebalancer_moves_failed.go │ │ ├── arangodb_operator_rebalancer_moves_failed_test.go │ │ ├── arangodb_operator_rebalancer_moves_generated.go │ │ ├── arangodb_operator_rebalancer_moves_generated_test.go │ │ ├── arangodb_operator_rebalancer_moves_succeeded.go │ │ ├── arangodb_operator_rebalancer_moves_succeeded_test.go │ │ ├── arangodb_operator_resources_arangodeployment_accepted.go │ │ ├── arangodb_operator_resources_arangodeployment_accepted_test.go │ │ ├── arangodb_operator_resources_arangodeployment_immutable_errors.go │ │ ├── arangodb_operator_resources_arangodeployment_immutable_errors_test.go │ │ ├── arangodb_operator_resources_arangodeployment_propagated.go │ │ ├── arangodb_operator_resources_arangodeployment_propagated_test.go │ │ ├── arangodb_operator_resources_arangodeployment_status_restores.go │ │ ├── arangodb_operator_resources_arangodeployment_status_restores_test.go │ │ ├── arangodb_operator_resources_arangodeployment_uptodate.go │ │ ├── arangodb_operator_resources_arangodeployment_uptodate_test.go │ │ ├── arangodb_operator_resources_arangodeployment_validation_errors.go │ │ ├── arangodb_operator_resources_arangodeployment_validation_errors_test.go │ │ ├── arangodb_operator_resources_arangodeploymentreplication_active.go │ │ ├── arangodb_operator_resources_arangodeploymentreplication_active_test.go │ │ ├── arangodb_operator_resources_arangodeploymentreplication_failed.go │ │ ├── arangodb_operator_resources_arangodeploymentreplication_failed_test.go │ │ ├── arangodb_resources_deployment_config_map_duration.go │ │ ├── arangodb_resources_deployment_config_map_duration_test.go │ │ ├── arangodb_resources_deployment_config_map_inspected.go │ │ ├── arangodb_resources_deployment_config_map_inspected_test.go │ │ └── metrics.go │ └── timezones │ │ ├── timezones.go │ │ └── timezones_test.go ├── handlers │ ├── backup │ │ ├── arango_client.go │ │ ├── arango_client_impl.go │ │ ├── arango_client_mock_test.go │ │ ├── arango_client_test.go │ │ ├── backup_suite_test.go │ │ ├── errors.go │ │ ├── finalizer.go │ │ ├── finalizer_test.go │ │ ├── flow_test.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── lifecycle.go │ │ ├── register.go │ │ ├── state.go │ │ ├── state │ │ │ ├── errors.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── state.go │ │ │ └── state_test.go │ │ ├── state_create.go │ │ ├── state_create_test.go │ │ ├── state_createerror.go │ │ ├── state_createerror_test.go │ │ ├── state_creating.go │ │ ├── state_creating_test.go │ │ ├── state_deleted.go │ │ ├── state_deleted_test.go │ │ ├── state_download.go │ │ ├── state_download_test.go │ │ ├── state_downloaderror.go │ │ ├── state_downloaderror_test.go │ │ ├── state_downloading.go │ │ ├── state_downloading_test.go │ │ ├── state_failed.go │ │ ├── state_failed_test.go │ │ ├── state_none.go │ │ ├── state_none_test.go │ │ ├── state_pending.go │ │ ├── state_pending_test.go │ │ ├── state_ready.go │ │ ├── state_ready_test.go │ │ ├── state_scheduled.go │ │ ├── state_scheduled_test.go │ │ ├── state_unavailable.go │ │ ├── state_unavailable_test.go │ │ ├── state_upload.go │ │ ├── state_upload_test.go │ │ ├── state_uploaderror.go │ │ ├── state_uploaderror_test.go │ │ ├── state_uploading.go │ │ ├── state_uploading_test.go │ │ ├── status.go │ │ └── util.go │ ├── generic │ │ └── parent │ │ │ └── parent.go │ ├── job │ │ ├── handler.go │ │ ├── handler_scheduler_test.go │ │ ├── handler_test.go │ │ ├── job_suite_test.go │ │ ├── lifecycle.go │ │ ├── logger.go │ │ └── register.go │ ├── networking │ │ └── route │ │ │ ├── handler.go │ │ │ ├── handler_deployment.go │ │ │ ├── handler_deployment_test.go │ │ │ ├── handler_destination.go │ │ │ ├── handler_destination_endpoints.go │ │ │ ├── handler_destination_endpoints_test.go │ │ │ ├── handler_destination_redirect.go │ │ │ ├── handler_destination_redirect_test.go │ │ │ ├── handler_destination_service.go │ │ │ ├── handler_destination_service_test.go │ │ │ ├── handler_destination_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ ├── platform │ │ ├── chart │ │ │ ├── chart_test.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ ├── suite_test.go │ │ │ └── testing.go │ │ ├── service │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ ├── service_test.go │ │ │ └── suite_test.go │ │ ├── shutdown │ │ │ ├── handler.go │ │ │ ├── local.go │ │ │ └── register.go │ │ └── storage │ │ │ ├── handler.go │ │ │ ├── handler_deployment.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ ├── policy │ │ ├── handler.go │ │ ├── handler_scheduler_test.go │ │ ├── handler_suite_test.go │ │ ├── handler_test.go │ │ ├── lifecycle.go │ │ └── register.go │ ├── scheduler │ │ ├── admissions.go │ │ ├── batchjob │ │ │ ├── handler.go │ │ │ ├── handler_manage_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ │ ├── cronjob │ │ │ ├── handler.go │ │ │ ├── handler_manage_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ │ ├── deployment │ │ │ ├── handler.go │ │ │ ├── handler_manage_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ │ ├── pod │ │ │ ├── handler.go │ │ │ ├── handler_manage_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ │ ├── profile │ │ │ ├── handler.go │ │ │ ├── handler_template.go │ │ │ ├── handler_template_test.go │ │ │ ├── handler_test.go │ │ │ ├── local.go │ │ │ ├── register.go │ │ │ └── suite_test.go │ │ └── webhooks │ │ │ └── policies │ │ │ └── handler.go │ └── utils │ │ ├── errors.go │ │ ├── ints.go │ │ ├── retry.go │ │ └── strings.go ├── integrations │ ├── auth.go │ ├── auth_test.go │ ├── authentication_v1.go │ ├── authorization_v0.go │ ├── clients │ │ ├── client.go │ │ ├── health_v1.go │ │ ├── pong_v1.go │ │ ├── register.go │ │ └── shutdown_v1.go │ ├── config_v1.go │ ├── envoy_auth_v3.go │ ├── events_v1.go │ ├── extension.go │ ├── flags.go │ ├── integration.go │ ├── logger.go │ ├── meta_v1.go │ ├── pong_test.go │ ├── register.go │ ├── scheduler_v1.go │ ├── scheduler_v2.go │ ├── shared │ │ ├── database.go │ │ ├── endpoint.go │ │ └── fill.go │ ├── shutdown_v1.go │ ├── sidecar │ │ ├── core.go │ │ ├── extension.shutdown.v1.debug.go │ │ ├── integration.authentication.v1.go │ │ ├── integration.authorization.v0.go │ │ ├── integration.envoy.v3.go │ │ ├── integration.events.v1.go │ │ ├── integration.go │ │ ├── integration.meta.v1.go │ │ ├── integration.scheduler.v1.go │ │ ├── integration.scheduler.v2.go │ │ ├── integration.shutdown.v1.go │ │ ├── integration.storage.v1.go │ │ ├── integration.storage.v2.go │ │ └── integration_interface.go │ ├── storage_v1.go │ ├── storage_v2.go │ ├── suite.go │ ├── suite_test.go │ ├── tls.go │ └── tls_test.go ├── license_manager │ ├── client.go │ ├── registry.go │ └── stage.go ├── logging │ ├── cli.go │ ├── global.go │ ├── http.go │ ├── level.go │ ├── logger.go │ ├── sampler.go │ ├── sampler_test.go │ ├── testing.go │ ├── utils.go │ ├── utils_test.go │ └── wrap.go ├── metrics │ ├── collector │ │ └── collector.go │ └── metrics.go ├── operator │ ├── crd.go │ ├── operator.community.go │ ├── operator.go │ ├── operator_deployment.go │ ├── operator_deployment_replication.go │ ├── operator_leader.go │ ├── operator_local_storage.go │ ├── server_api.go │ └── server_discovery_api.go ├── operatorV2 │ ├── errors_reconcile.go │ ├── errors_stop.go │ ├── errors_temporary.go │ ├── event │ │ ├── event.go │ │ ├── event_test.go │ │ └── logger.go │ ├── filter.go │ ├── handle.go │ ├── handler.go │ ├── handler_p0.generated.go │ ├── handler_p1.generated.go │ ├── handler_p2.generated.go │ ├── handler_p3.generated.go │ ├── handler_p4.generated.go │ ├── handler_p5.generated.go │ ├── handler_p6.generated.go │ ├── handler_p7.generated.go │ ├── handler_p8.generated.go │ ├── handler_p9.generated.go │ ├── informer.go │ ├── lifecycle.go │ ├── logger.go │ ├── operation │ │ ├── item.go │ │ └── item_test.go │ ├── operator.go │ ├── operator_suite_test.go │ ├── operator_test.go │ ├── operator_worker.go │ ├── operator_worker_test.go │ ├── prometheus.go │ ├── update.go │ └── update_wraps.go ├── platform │ ├── consts.go │ ├── flags.go │ ├── helm.go │ ├── helm_registry.go │ ├── init.go │ ├── installer.go │ ├── inventory │ │ ├── aql.go │ │ ├── configuration.go │ │ ├── consts.go │ │ ├── consts_test.go │ │ ├── fetcher.aql.timestamp.go │ │ ├── fetcher.deployment.id.go │ │ ├── fetcher.server.mode.go │ │ ├── fetcher.server.version.go │ │ ├── global.go │ │ ├── inventory.go │ │ ├── inventory.pb.go │ │ ├── inventory.proto │ │ ├── queries │ │ │ └── timestamp.aql │ │ ├── types.go │ │ └── types_test.go │ ├── k8s.go │ ├── labels │ │ └── labels.go │ ├── license.go │ ├── license_activate.go │ ├── license_generate.go │ ├── license_inventory.go │ ├── license_secret.go │ ├── logger.go │ ├── output.go │ ├── pack │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── export.go │ │ ├── import.go │ │ ├── logger.go │ │ ├── proto.go │ │ ├── registry.go │ │ └── utils.go │ ├── package.go │ ├── package_dump.go │ ├── package_export.go │ ├── package_import.go │ ├── package_install.go │ ├── package_merge.go │ ├── package_test.go │ ├── runner.go │ └── suite │ │ └── sample-1.0.0.tgz ├── replication │ ├── client.go │ ├── deployment_replication.go │ ├── finalizers.go │ ├── inventory.go │ ├── metrics.go │ ├── server_api.go │ ├── server_endpoint_api.go │ ├── sync_client.go │ └── sync_inspector.go ├── scheduler │ ├── input.go │ └── profiles.go ├── server │ ├── auth.go │ ├── errors.go │ ├── handlers.go │ ├── handlers_deployment.go │ ├── handlers_replication.go │ ├── handlers_storage.go │ └── server.go ├── storage │ ├── clients.go │ ├── consts.go │ ├── daemon_set.go │ ├── daemon_set_test.go │ ├── image.go │ ├── image_test.go │ ├── local_storage.go │ ├── provisioner │ │ ├── api.go │ │ ├── client │ │ │ └── client.go │ │ ├── errors.go │ │ ├── mocks │ │ │ ├── mocks.go │ │ │ └── provisioner.go │ │ └── service │ │ │ ├── provisioner.go │ │ │ └── server.go │ ├── pv_cleanup.go │ ├── pv_creator.go │ ├── pv_creator_test.go │ ├── pv_informer.go │ ├── pv_inspector.go │ ├── pvc_informer.go │ ├── pvc_inspector.go │ ├── resources │ │ ├── nodes.go │ │ ├── nodes_test.go │ │ └── pods.go │ ├── server_api.go │ ├── server_volume_api.go │ ├── service.go │ ├── storage_class.go │ ├── utils │ │ ├── taints.go │ │ └── taints_test.go │ └── utils_test.go ├── upgrade │ ├── member_cid_append.go │ ├── member_cid_append_test.go │ ├── upgrade.go │ ├── upgrade_struct.go │ └── upgrade_test.go ├── util │ ├── arangod │ │ ├── client.go │ │ ├── cluster.go │ │ ├── dbserver.go │ │ ├── driver_init.go │ │ ├── error.go │ │ ├── license.go │ │ ├── next.go │ │ ├── options │ │ │ └── options.go │ │ └── request.go │ ├── arangosync │ │ └── options │ │ │ └── options.go │ ├── assertion │ │ ├── assert.go │ │ ├── assert_exit.go │ │ ├── assert_log.go │ │ ├── frames.go │ │ ├── logger.go │ │ ├── metrics.go │ │ └── metrics_test.go │ ├── aws │ │ ├── config.go │ │ ├── file.go │ │ ├── http.go │ │ ├── impersonate.go │ │ ├── provider.go │ │ └── tls.go │ ├── cache │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── config.go │ │ ├── hash.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── remote_cache.go │ │ └── remote_cache_list.go │ ├── cert │ │ └── signer.go │ ├── checksum.go │ ├── checksum.md5.go │ ├── checksum.sha224.go │ ├── checksum.sha256.go │ ├── cli │ │ ├── deployment.auth.basic.go │ │ ├── deployment.auth.token.go │ │ ├── deployment.go │ │ ├── exit_code.go │ │ ├── flag.go │ │ ├── flag_test.go │ │ ├── lm.client.go │ │ ├── lm.go │ │ ├── logger.go │ │ ├── registry.go │ │ ├── run.go │ │ └── usage.go │ ├── closer │ │ ├── close.go │ │ └── multi.go │ ├── collection │ │ └── map.go │ ├── compare │ │ ├── compare.go │ │ ├── diff.go │ │ ├── gen.go │ │ ├── interfaces.go │ │ ├── k8s │ │ │ ├── filter.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ └── statefulset.go │ │ ├── mode.go │ │ └── sub.go │ ├── constants │ │ ├── adb_codes.go │ │ ├── connection.go │ │ ├── constants.go │ │ ├── envoy.go │ │ ├── envs.go │ │ ├── gateway.go │ │ ├── helm.go │ │ ├── namespace.go │ │ ├── namespace_test.go │ │ ├── phase.go │ │ ├── profiles.go │ │ └── versions.go │ ├── context.go │ ├── crd │ │ └── crd.go │ ├── crypto │ │ └── certificates.go │ ├── dict.go │ ├── dict_test.go │ ├── env.go │ ├── errors │ │ ├── defined.go │ │ ├── errors.go │ │ ├── errors_array.go │ │ ├── errors_test.go │ │ ├── execute.go │ │ ├── grpc.go │ │ ├── grpc_test.go │ │ ├── panics │ │ │ ├── error.go │ │ │ ├── logger.go │ │ │ ├── metric.go │ │ │ ├── recovery.go │ │ │ ├── recovery_test.go │ │ │ └── stack.go │ │ └── section.go │ ├── executor │ │ ├── executor.go │ │ ├── executor_test.go │ │ └── threader.go │ ├── file.go │ ├── filter.go │ ├── fwatch │ │ ├── watcher.go │ │ └── watcher_test.go │ ├── gcs │ │ ├── config.go │ │ └── provider.go │ ├── globals │ │ ├── global.go │ │ ├── globals_test.go │ │ ├── int.go │ │ └── timeout.go │ ├── grpc │ │ ├── grpc.go │ │ ├── http.go │ │ ├── marshal.go │ │ ├── object.go │ │ └── stream.go │ ├── http │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── client.go │ │ ├── client_configuration.go │ │ ├── client_mod.go │ │ ├── client_test.go │ │ ├── content.go │ │ ├── downloader.go │ │ ├── encoding.go │ │ ├── error.go │ │ ├── headers.go │ │ ├── headers_test.go │ │ ├── logger.go │ │ ├── no_content.go │ │ ├── response.go │ │ ├── server.go │ │ └── writer.go │ ├── image.go │ ├── int.go │ ├── interval.go │ ├── io.go │ ├── json.go │ ├── k8sutil │ │ ├── access │ │ │ ├── access.go │ │ │ ├── consts.go │ │ │ ├── helper.go │ │ │ └── logger.go │ │ ├── affinity.go │ │ ├── affinity_test.go │ │ ├── base │ │ │ └── base.go │ │ ├── configmaps.go │ │ ├── deepcopy.go │ │ ├── dns.go │ │ ├── dns_test.go │ │ ├── events.go │ │ ├── finalizers.go │ │ ├── gvk.go │ │ ├── helm │ │ │ ├── chart.go │ │ │ ├── chart_data.go │ │ │ ├── chart_manager.go │ │ │ ├── chart_manager_repo.go │ │ │ ├── chart_manager_repo_version.go │ │ │ ├── chart_manager_test.go │ │ │ ├── charts.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── configuration.go │ │ │ ├── configuration_driver.go │ │ │ ├── logger.go │ │ │ ├── package.go │ │ │ ├── platform.go │ │ │ ├── platform_object.go │ │ │ ├── platform_test.go │ │ │ ├── suite_test.go │ │ │ ├── types.go │ │ │ ├── values.go │ │ │ ├── values_merge_method.go │ │ │ └── values_merge_method_test.go │ │ ├── helpers │ │ │ ├── service_account.go │ │ │ ├── service_account_test.go │ │ │ ├── updator.go │ │ │ ├── updator_decition.go │ │ │ └── updator_test.go │ │ ├── images.go │ │ ├── images_test.go │ │ ├── info │ │ │ └── pods.go │ │ ├── informer.go │ │ ├── informers.go │ │ ├── informers_test.go │ │ ├── inspector │ │ │ ├── anonymous │ │ │ │ ├── anonymous.go │ │ │ │ ├── anonymous_errors.go │ │ │ │ └── anonymous_impl.go │ │ │ ├── arangoclustersynchronization │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangodeployment │ │ │ │ └── arangodeployment.go │ │ │ ├── arangomember │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangoplatformservice │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangoplatformstorage │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangoprofile │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangoroute │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── arangotask │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── configmap │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── constants │ │ │ │ ├── arango_analytics_engine_constants.go │ │ │ │ ├── arango_backup_backup_constants.go │ │ │ │ ├── arango_backup_backuppolicy_constants.go │ │ │ │ ├── arango_database_acs_constants.go │ │ │ │ ├── arango_database_deployment_constants.go │ │ │ │ ├── arango_database_member_constants.go │ │ │ │ ├── arango_database_task_constants.go │ │ │ │ ├── arango_ml_batchjob_constants.go │ │ │ │ ├── arango_ml_cronjob_constants.go │ │ │ │ ├── arango_ml_extension_constants.go │ │ │ │ ├── arango_ml_storage_constants.go │ │ │ │ ├── arango_networking_route_constants.go │ │ │ │ ├── arango_platform_chart_constants.go │ │ │ │ ├── arango_platform_service_constants.go │ │ │ │ ├── arango_platform_storage_constants.go │ │ │ │ ├── arango_scheduler_batchjob_constants.go │ │ │ │ ├── arango_scheduler_cronjob_constants.go │ │ │ │ ├── arango_scheduler_deployment_constants.go │ │ │ │ ├── arango_scheduler_pod_constants.go │ │ │ │ ├── arango_scheduler_profile_constants.go │ │ │ │ ├── gvk_test.go │ │ │ │ ├── kubernetes_apps_deployment_constants.go │ │ │ │ ├── kubernetes_apps_rs_constants.go │ │ │ │ ├── kubernetes_apps_sts_constants.go │ │ │ │ ├── kubernetes_batch_cronjob_constants.go │ │ │ │ ├── kubernetes_batch_job_constants.go │ │ │ │ ├── kubernetes_core_configmap_constants.go │ │ │ │ ├── kubernetes_core_endpoint_constants.go │ │ │ │ ├── kubernetes_core_event_constants.go │ │ │ │ ├── kubernetes_core_node_constants.go │ │ │ │ ├── kubernetes_core_ns_constants.go │ │ │ │ ├── kubernetes_core_pod_constants.go │ │ │ │ ├── kubernetes_core_pv_constants.go │ │ │ │ ├── kubernetes_core_pvc_constants.go │ │ │ │ ├── kubernetes_core_sa_constants.go │ │ │ │ ├── kubernetes_core_secret_constants.go │ │ │ │ ├── kubernetes_core_service_constants.go │ │ │ │ ├── kubernetes_extension_crd_constants.go │ │ │ │ ├── kubernetes_policy_pdb_constants.go │ │ │ │ ├── kubernetes_rbac_cr_constants.go │ │ │ │ ├── kubernetes_rbac_crb_constants.go │ │ │ │ ├── kubernetes_rbac_r_constants.go │ │ │ │ ├── kubernetes_rbac_rb_constants.go │ │ │ │ ├── prometheus_monitoring_sm_constants.go │ │ │ │ └── register.go │ │ │ ├── definitions │ │ │ │ ├── components.go │ │ │ │ └── verbs.go │ │ │ ├── endpoints │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── generic │ │ │ │ ├── inspector.go │ │ │ │ ├── inspector_filter.go │ │ │ │ ├── mod.go │ │ │ │ ├── mod_errors.go │ │ │ │ ├── mod_impl.go │ │ │ │ └── mod_throotle.go │ │ │ ├── gvk │ │ │ │ └── gvk.go │ │ │ ├── helpers.go │ │ │ ├── inspector.go │ │ │ ├── mods │ │ │ │ └── mods.go │ │ │ ├── node │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── persistentvolume │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── persistentvolumeclaim │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── pod │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── poddisruptionbudget │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── refresh │ │ │ │ └── refresh.go │ │ │ ├── secret │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── server │ │ │ │ └── server.go │ │ │ ├── service │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── serviceaccount │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ ├── servicemonitor │ │ │ │ ├── definition.go │ │ │ │ └── generic.go │ │ │ └── throttle │ │ │ │ └── throttle.go │ │ ├── interfaces │ │ │ └── pod_creator.go │ │ ├── kerrors │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ └── resources.go │ │ ├── license.go │ │ ├── license_test.go │ │ ├── lifecycle.go │ │ ├── list │ │ │ ├── list.go │ │ │ └── lister.go │ │ ├── logger.go │ │ ├── names │ │ │ └── id.go │ │ ├── names_test.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── owner.go │ │ ├── pair.go │ │ ├── pair_test.go │ │ ├── patcher │ │ │ ├── common.go │ │ │ ├── config_map.go │ │ │ ├── config_map_test.go │ │ │ ├── metadata.go │ │ │ ├── patcher.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_ports_test.go │ │ │ └── service_test.go │ │ ├── pods.go │ │ ├── pods_test.go │ │ ├── portforwarder.go │ │ ├── probes │ │ │ ├── probes.go │ │ │ └── probes_test.go │ │ ├── pvc.go │ │ ├── reconcile.go │ │ ├── resources │ │ │ ├── affinity.go │ │ │ ├── container.go │ │ │ ├── envs.go │ │ │ ├── lifecycle.go │ │ │ ├── lifecycle_k8s_1.28.go │ │ │ ├── lifecycle_k8s_1.29.go │ │ │ ├── metadata.go │ │ │ ├── ports.go │ │ │ ├── probes.go │ │ │ ├── pvc_k8s_1.28.go │ │ │ ├── pvc_k8s_1.29.go │ │ │ ├── resources.go │ │ │ ├── resources_test.go │ │ │ ├── selectors.go │ │ │ ├── selectors_test.go │ │ │ └── volumes.go │ │ ├── secrets.go │ │ ├── security_context.go │ │ ├── services.go │ │ ├── storageclass.go │ │ ├── storageclass_test.go │ │ ├── test │ │ │ ├── doc.go │ │ │ └── events_test.go │ │ ├── time.go │ │ ├── tls │ │ │ ├── cert.go │ │ │ └── tls.go │ │ ├── tolerations │ │ │ ├── tolerations.go │ │ │ └── tolerations_test.go │ │ ├── tools │ │ │ └── owner.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── version_check.go │ │ └── volumes.go │ ├── kclient │ │ ├── client_factory.go │ │ ├── external │ │ │ ├── external.go │ │ │ └── external_disabled.go │ │ ├── fake.go │ │ ├── helpers │ │ │ ├── secret.go │ │ │ └── secret_test.go │ │ ├── logger.go │ │ ├── mod.go │ │ ├── ratelimiter.go │ │ ├── ratelimiter_clock.go │ │ ├── ratelimiter_impl.go │ │ └── ratelimiter_test.go │ ├── kconfig │ │ ├── client.go │ │ └── rest.go │ ├── labels.go │ ├── list.go │ ├── list_test.go │ ├── loader.go │ ├── metrics │ │ ├── collector.go │ │ ├── description.go │ │ ├── duration.go │ │ ├── factory_counter.go │ │ ├── factory_gauge.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── http_utils_test.go │ │ ├── metric.go │ │ ├── metric_counter.go │ │ ├── metric_gauge.go │ │ ├── producer.go │ │ ├── push.go │ │ ├── push_filter.go │ │ ├── push_filter_prefix.go │ │ └── push_filter_test.go │ ├── mod.go │ ├── next.go │ ├── parallel.go │ ├── pretty │ │ ├── marsh_table.go │ │ ├── marsh_table_test.go │ │ ├── replace.go │ │ └── wrap.go │ ├── probe │ │ ├── grpc.go │ │ ├── liveness.go │ │ ├── liveness_test.go │ │ └── ready.go │ ├── rand.go │ ├── refs.go │ ├── refs_test.go │ ├── registerer.go │ ├── retry │ │ ├── retry.go │ │ └── timeout.go │ ├── shutdown │ │ └── shutdown.go │ ├── signal.go │ ├── strings │ │ ├── strings.go │ │ └── strings_test.go │ ├── svc │ │ ├── background.go │ │ ├── configuration.go │ │ ├── error.go │ │ ├── handler.go │ │ ├── health.go │ │ ├── run.go │ │ ├── service.go │ │ ├── service_test.go │ │ ├── shutdown.go │ │ └── starter.go │ ├── sync │ │ └── map.go │ ├── tags.go │ ├── tests │ │ ├── ap.go │ │ ├── aws.go │ │ ├── cache │ │ │ └── remote_cache.go │ │ ├── cast.go │ │ ├── cli.go │ │ ├── equal.go │ │ ├── features.go │ │ ├── gcs.go │ │ ├── generic.go │ │ ├── http.go │ │ ├── inspector.go │ │ ├── kubernetes.go │ │ ├── kubernetes_test.go │ │ ├── logging.go │ │ ├── logging_test.go │ │ ├── network.go │ │ ├── operator.go │ │ ├── path.go │ │ ├── port.go │ │ ├── resources.go │ │ ├── suite │ │ │ ├── chart.go │ │ │ ├── chart │ │ │ │ ├── example-1.0.0.tgz │ │ │ │ ├── example-1.0.1.tgz │ │ │ │ ├── example-1.1.0.tgz │ │ │ │ ├── secret-1.0.0.tgz │ │ │ │ ├── secret-1.0.1.tgz │ │ │ │ └── secret-1.1.0.tgz │ │ │ ├── chart_disabled.go │ │ │ ├── config_map.go │ │ │ └── generate.go │ │ ├── tgrpc │ │ │ └── grpc.go │ │ ├── time.go │ │ └── types │ │ │ └── compatibility.go │ ├── timeout.go │ ├── timer │ │ ├── after.go │ │ ├── after_leak_test.go │ │ ├── after_test.go │ │ ├── delayer.go │ │ └── delayer_test.go │ ├── times.go │ ├── tls.go │ ├── token │ │ ├── claims.go │ │ ├── consts.go │ │ ├── errors.go │ │ ├── interface.go │ │ ├── method.go │ │ ├── mods.go │ │ ├── parse.go │ │ ├── secret.go │ │ ├── secret_empty.go │ │ ├── secret_set.go │ │ ├── secrets.go │ │ ├── token.go │ │ └── token_test.go │ ├── trigger │ │ └── trigger.go │ ├── validation │ │ ├── dns_name.go │ │ ├── dns_name_test.go │ │ ├── email_address.go │ │ └── email_address_test.go │ ├── version.go │ └── version_test.go ├── version │ ├── version.community.go │ └── version.go └── webhook │ ├── admission.go │ ├── handler.go │ ├── logger.go │ ├── responses.go │ ├── suite_pod_test.go │ └── suite_test.go ├── scripts ├── cache.sh ├── codegen.sh ├── patch_chart.sh ├── patch_docs.sh ├── patch_examples.sh └── patch_readme.sh └── tools ├── codegen ├── Dockerfile └── license-header.txt ├── dategen └── main.go └── license └── license.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/continue_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.circleci/continue_config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.protolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/.protolint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Dockerfile.debug -------------------------------------------------------------------------------- /Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Dockerfile.test -------------------------------------------------------------------------------- /Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Dockerfile.ubi -------------------------------------------------------------------------------- /Jenkinsfile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Jenkinsfile.groovy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.3+git -------------------------------------------------------------------------------- /chart/kube-arangodb-arm64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb-arm64/LICENSE -------------------------------------------------------------------------------- /chart/kube-arangodb-arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb-arm64/README.md -------------------------------------------------------------------------------- /chart/kube-arangodb-crd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb-crd/Chart.yaml -------------------------------------------------------------------------------- /chart/kube-arangodb-crd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb-crd/LICENSE -------------------------------------------------------------------------------- /chart/kube-arangodb-crd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb-crd/README.md -------------------------------------------------------------------------------- /chart/kube-arangodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb/Chart.yaml -------------------------------------------------------------------------------- /chart/kube-arangodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb/LICENSE -------------------------------------------------------------------------------- /chart/kube-arangodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb/README.md -------------------------------------------------------------------------------- /chart/kube-arangodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/chart/kube-arangodb/values.yaml -------------------------------------------------------------------------------- /cmd/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/admin.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/cmd_ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/cmd_ops.go -------------------------------------------------------------------------------- /cmd/cmd_pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/cmd_pod_test.go -------------------------------------------------------------------------------- /cmd/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/crd.go -------------------------------------------------------------------------------- /cmd/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/debug.go -------------------------------------------------------------------------------- /cmd/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/exporter.go -------------------------------------------------------------------------------- /cmd/init_container_version_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/init_container_version_check.go -------------------------------------------------------------------------------- /cmd/init_containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/init_containers.go -------------------------------------------------------------------------------- /cmd/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/integration.go -------------------------------------------------------------------------------- /cmd/integration/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/integration/init.go -------------------------------------------------------------------------------- /cmd/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/lifecycle.go -------------------------------------------------------------------------------- /cmd/lifecycle_probes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/lifecycle_probes.go -------------------------------------------------------------------------------- /cmd/lifecycle_startup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/lifecycle_startup.go -------------------------------------------------------------------------------- /cmd/lifecycle_wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/lifecycle_wait.go -------------------------------------------------------------------------------- /cmd/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/logger.go -------------------------------------------------------------------------------- /cmd/main-int/main_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/main-int/main_int.go -------------------------------------------------------------------------------- /cmd/main-ops/main_ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/main-ops/main_ops.go -------------------------------------------------------------------------------- /cmd/main-platform/main_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/main-platform/main_int.go -------------------------------------------------------------------------------- /cmd/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/main/main.go -------------------------------------------------------------------------------- /cmd/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/memory.go -------------------------------------------------------------------------------- /cmd/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/storage.go -------------------------------------------------------------------------------- /cmd/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/task.go -------------------------------------------------------------------------------- /cmd/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/uuid.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/cmd/webhook.go -------------------------------------------------------------------------------- /community.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/community.mk -------------------------------------------------------------------------------- /dashboard/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/.dockerignore -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/Dockerfile.build -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/assets.go -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/public/index.html -------------------------------------------------------------------------------- /dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/public/manifest.json -------------------------------------------------------------------------------- /dashboard/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/App.js -------------------------------------------------------------------------------- /dashboard/src/NoOperator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/NoOperator.js -------------------------------------------------------------------------------- /dashboard/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/api/api.js -------------------------------------------------------------------------------- /dashboard/src/auth/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/auth/Auth.js -------------------------------------------------------------------------------- /dashboard/src/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/auth/Login.js -------------------------------------------------------------------------------- /dashboard/src/auth/LogoutContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/auth/LogoutContext.js -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/index.js -------------------------------------------------------------------------------- /dashboard/src/storage/StorageRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/storage/StorageRow.js -------------------------------------------------------------------------------- /dashboard/src/storage/VolumeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/storage/VolumeList.js -------------------------------------------------------------------------------- /dashboard/src/style/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/style/style.js -------------------------------------------------------------------------------- /dashboard/src/util/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/util/Loading.js -------------------------------------------------------------------------------- /dashboard/src/util/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/dashboard/src/util/Storage.js -------------------------------------------------------------------------------- /docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/CODEOWNERS -------------------------------------------------------------------------------- /docs/api/ArangoBackup.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoBackup.V1.md -------------------------------------------------------------------------------- /docs/api/ArangoBackupPolicy.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoBackupPolicy.V1.md -------------------------------------------------------------------------------- /docs/api/ArangoDeployment.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoDeployment.V1.md -------------------------------------------------------------------------------- /docs/api/ArangoJob.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoJob.V1.md -------------------------------------------------------------------------------- /docs/api/ArangoMLStorage.V1Beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoMLStorage.V1Beta1.md -------------------------------------------------------------------------------- /docs/api/ArangoMember.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoMember.V1.md -------------------------------------------------------------------------------- /docs/api/ArangoProfile.V1Beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoProfile.V1Beta1.md -------------------------------------------------------------------------------- /docs/api/ArangoRoute.V1Beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/api/ArangoRoute.V1Beta1.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: CRD reference 4 | has_children: true 5 | nav_order: 3 6 | --- 7 | -------------------------------------------------------------------------------- /docs/arango-profile-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/arango-profile-resource.md -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/backup-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/backup-resource.md -------------------------------------------------------------------------------- /docs/backuppolicy-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/backuppolicy-resource.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/cli/arangodb_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/cli/arangodb_operator.md -------------------------------------------------------------------------------- /docs/cli/arangodb_operator_ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/cli/arangodb_operator_ops.md -------------------------------------------------------------------------------- /docs/configuration-and-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/configuration-and-secrets.md -------------------------------------------------------------------------------- /docs/crds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/crds.md -------------------------------------------------------------------------------- /docs/design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/README.md -------------------------------------------------------------------------------- /docs/design/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/api.md -------------------------------------------------------------------------------- /docs/design/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/backup.md -------------------------------------------------------------------------------- /docs/design/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/constraints.md -------------------------------------------------------------------------------- /docs/design/exporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/exporter.md -------------------------------------------------------------------------------- /docs/design/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/health.md -------------------------------------------------------------------------------- /docs/design/resources_and_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/resources_and_labels.md -------------------------------------------------------------------------------- /docs/design/topology_awareness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/design/topology_awareness.md -------------------------------------------------------------------------------- /docs/draining-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/draining-nodes.md -------------------------------------------------------------------------------- /docs/driver-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/driver-configuration.md -------------------------------------------------------------------------------- /docs/features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/features/README.md -------------------------------------------------------------------------------- /docs/features/ephemeral_volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/features/ephemeral_volumes.md -------------------------------------------------------------------------------- /docs/features/rebalancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/features/rebalancer.md -------------------------------------------------------------------------------- /docs/features/rebalancer_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/features/rebalancer_v2.md -------------------------------------------------------------------------------- /docs/features/secured_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/features/secured_containers.md -------------------------------------------------------------------------------- /docs/gae-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/gae-resource.md -------------------------------------------------------------------------------- /docs/generated/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/generated/actions.md -------------------------------------------------------------------------------- /docs/generated/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/generated/metrics/README.md -------------------------------------------------------------------------------- /docs/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/helm.md -------------------------------------------------------------------------------- /docs/how-to/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: How to ... 4 | nav_order: 6 5 | has_children: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/how-to/arch_change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/arch_change.md -------------------------------------------------------------------------------- /docs/how-to/configuring_tz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/configuring_tz.md -------------------------------------------------------------------------------- /docs/how-to/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/debugging.md -------------------------------------------------------------------------------- /docs/how-to/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/logging.md -------------------------------------------------------------------------------- /docs/how-to/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/maintenance.md -------------------------------------------------------------------------------- /docs/how-to/manual-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/manual-upgrade.md -------------------------------------------------------------------------------- /docs/how-to/recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/recovery.md -------------------------------------------------------------------------------- /docs/how-to/replace-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/replace-pod.md -------------------------------------------------------------------------------- /docs/how-to/rotate-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/rotate-pod.md -------------------------------------------------------------------------------- /docs/how-to/set_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/how-to/set_license.md -------------------------------------------------------------------------------- /docs/images/HealthyCluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/images/HealthyCluster.png -------------------------------------------------------------------------------- /docs/images/ShardsInSync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/images/ShardsInSync.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/integration-sidecar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration-sidecar.md -------------------------------------------------------------------------------- /docs/integration/events.v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/events.v1.md -------------------------------------------------------------------------------- /docs/integration/meta.v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/meta.v1.md -------------------------------------------------------------------------------- /docs/integration/scheduler.v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/scheduler.v1.md -------------------------------------------------------------------------------- /docs/integration/scheduler.v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/scheduler.v2.md -------------------------------------------------------------------------------- /docs/integration/shutdown.v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/shutdown.v1.md -------------------------------------------------------------------------------- /docs/integration/storage.v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/integration/storage.v2.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/mlextension-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/mlextension-resource.md -------------------------------------------------------------------------------- /docs/platform.common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.common.md -------------------------------------------------------------------------------- /docs/platform.helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.helm.md -------------------------------------------------------------------------------- /docs/platform.install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.install.md -------------------------------------------------------------------------------- /docs/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.md -------------------------------------------------------------------------------- /docs/platform.sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.sso.md -------------------------------------------------------------------------------- /docs/platform.sso.openid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform.sso.openid.md -------------------------------------------------------------------------------- /docs/platform/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform/storage.md -------------------------------------------------------------------------------- /docs/platform/storage/gcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform/storage/gcs.md -------------------------------------------------------------------------------- /docs/platform/storage/minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform/storage/minio.md -------------------------------------------------------------------------------- /docs/platform/storage/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/platform/storage/s3.md -------------------------------------------------------------------------------- /docs/providers/eks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/providers/eks/README.md -------------------------------------------------------------------------------- /docs/scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/scaling.md -------------------------------------------------------------------------------- /docs/services-and-load-balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/services-and-load-balancer.md -------------------------------------------------------------------------------- /docs/storage-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/storage-resource.md -------------------------------------------------------------------------------- /docs/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/storage.md -------------------------------------------------------------------------------- /docs/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/tls.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /docs/using-the-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/docs/using-the-operator.md -------------------------------------------------------------------------------- /examples/arango-local-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/arango-local-storage.yaml -------------------------------------------------------------------------------- /examples/arangoclustersync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/arangoclustersync.yaml -------------------------------------------------------------------------------- /examples/arangojob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/arangojob.yaml -------------------------------------------------------------------------------- /examples/cluster1-with-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/cluster1-with-sync.yaml -------------------------------------------------------------------------------- /examples/cluster2-with-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/cluster2-with-sync.yaml -------------------------------------------------------------------------------- /examples/local-storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/local-storage-class.yaml -------------------------------------------------------------------------------- /examples/metrics/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/metrics/dashboard.json -------------------------------------------------------------------------------- /examples/nodeport-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/nodeport-cluster.yaml -------------------------------------------------------------------------------- /examples/platform/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/platform/package.yaml -------------------------------------------------------------------------------- /examples/production-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/production-cluster.yaml -------------------------------------------------------------------------------- /examples/reboot-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/reboot-pod.yaml -------------------------------------------------------------------------------- /examples/simple-cluster-no-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/simple-cluster-no-tls.yaml -------------------------------------------------------------------------------- /examples/simple-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/simple-cluster.yaml -------------------------------------------------------------------------------- /examples/single-server-no-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/single-server-no-auth.yaml -------------------------------------------------------------------------------- /examples/single-server-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/single-server-route.yaml -------------------------------------------------------------------------------- /examples/single-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/examples/single-server.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/go.sum -------------------------------------------------------------------------------- /integrations/config/v1/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/config/v1/config.go -------------------------------------------------------------------------------- /integrations/config/v1/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/config/v1/consts.go -------------------------------------------------------------------------------- /integrations/config/v1/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/config/v1/impl.go -------------------------------------------------------------------------------- /integrations/config/v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/config/v1/logger.go -------------------------------------------------------------------------------- /integrations/envoy/auth/v3/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/envoy/auth/v3/impl.go -------------------------------------------------------------------------------- /integrations/events/v1/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/events/v1/async.go -------------------------------------------------------------------------------- /integrations/events/v1/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/events/v1/consts.go -------------------------------------------------------------------------------- /integrations/events/v1/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/events/v1/impl.go -------------------------------------------------------------------------------- /integrations/events/v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/events/v1/logger.go -------------------------------------------------------------------------------- /integrations/events/v1/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/events/v1/remote.go -------------------------------------------------------------------------------- /integrations/meta/v1/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/meta/v1/impl.go -------------------------------------------------------------------------------- /integrations/meta/v1/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/meta/v1/impl_test.go -------------------------------------------------------------------------------- /integrations/meta/v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/meta/v1/logger.go -------------------------------------------------------------------------------- /integrations/meta/v1/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/meta/v1/object.go -------------------------------------------------------------------------------- /integrations/meta/v1/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/meta/v1/types_test.go -------------------------------------------------------------------------------- /integrations/pong/v1/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/pong/v1/impl.go -------------------------------------------------------------------------------- /integrations/pong/v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/pong/v1/logger.go -------------------------------------------------------------------------------- /integrations/scheduler/v1/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v1/consts.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/chart.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/consts.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/errors.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/helm.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/logger.go -------------------------------------------------------------------------------- /integrations/scheduler/v2/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/scheduler/v2/suite.go -------------------------------------------------------------------------------- /integrations/shutdown/v1/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/shutdown/v1/impl.go -------------------------------------------------------------------------------- /integrations/shutdown/v1/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/shutdown/v1/logger.go -------------------------------------------------------------------------------- /integrations/storage/v1/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/storage/v1/storage.go -------------------------------------------------------------------------------- /integrations/storage/v2/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/storage/v2/logger.go -------------------------------------------------------------------------------- /integrations/storage/v2/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/storage/v2/object.go -------------------------------------------------------------------------------- /integrations/storage/v2/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/integrations/storage/v2/storage.go -------------------------------------------------------------------------------- /internal/actions.config.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions.config.go.tmpl -------------------------------------------------------------------------------- /internal/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions.go -------------------------------------------------------------------------------- /internal/actions.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions.go.tmpl -------------------------------------------------------------------------------- /internal/actions.register.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions.register.go.tmpl -------------------------------------------------------------------------------- /internal/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions.yaml -------------------------------------------------------------------------------- /internal/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/actions_test.go -------------------------------------------------------------------------------- /internal/cr_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/cr_validation_test.go -------------------------------------------------------------------------------- /internal/doc_definition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/doc_definition_test.go -------------------------------------------------------------------------------- /internal/docs_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/docs_parser_test.go -------------------------------------------------------------------------------- /internal/docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/docs_test.go -------------------------------------------------------------------------------- /internal/features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/features.yaml -------------------------------------------------------------------------------- /internal/features_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/features_test.go -------------------------------------------------------------------------------- /internal/limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/limits.yaml -------------------------------------------------------------------------------- /internal/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.go -------------------------------------------------------------------------------- /internal/metrics.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.go.tmpl -------------------------------------------------------------------------------- /internal/metrics.item.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.item.go.tmpl -------------------------------------------------------------------------------- /internal/metrics.item.go_test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.item.go_test.tmpl -------------------------------------------------------------------------------- /internal/metrics.item.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.item.tmpl -------------------------------------------------------------------------------- /internal/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics.yaml -------------------------------------------------------------------------------- /internal/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/metrics_test.go -------------------------------------------------------------------------------- /internal/platforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/platforms.yaml -------------------------------------------------------------------------------- /internal/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/readme.go -------------------------------------------------------------------------------- /internal/readme_cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/readme_cli.go -------------------------------------------------------------------------------- /internal/readme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/readme_test.go -------------------------------------------------------------------------------- /internal/schema_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/schema_builder_test.go -------------------------------------------------------------------------------- /internal/timezones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/timezones.go -------------------------------------------------------------------------------- /internal/timezones.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/timezones.go.tmpl -------------------------------------------------------------------------------- /internal/timezones_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/internal/timezones_test.go -------------------------------------------------------------------------------- /manifests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/.gitignore -------------------------------------------------------------------------------- /manifests/arango-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-all.yaml -------------------------------------------------------------------------------- /manifests/arango-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-apps.yaml -------------------------------------------------------------------------------- /manifests/arango-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-backup.yaml -------------------------------------------------------------------------------- /manifests/arango-crd-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-crd-all.yaml -------------------------------------------------------------------------------- /manifests/arango-crd-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-crd-basic.yaml -------------------------------------------------------------------------------- /manifests/arango-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-crd.yaml -------------------------------------------------------------------------------- /manifests/arango-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-deployment.yaml -------------------------------------------------------------------------------- /manifests/arango-ml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-ml.yaml -------------------------------------------------------------------------------- /manifests/arango-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/arango-storage.yaml -------------------------------------------------------------------------------- /manifests/enterprise-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-all.yaml -------------------------------------------------------------------------------- /manifests/enterprise-apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-apps.yaml -------------------------------------------------------------------------------- /manifests/enterprise-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-backup.yaml -------------------------------------------------------------------------------- /manifests/enterprise-crd-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-crd-all.yaml -------------------------------------------------------------------------------- /manifests/enterprise-crd-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-crd-basic.yaml -------------------------------------------------------------------------------- /manifests/enterprise-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-crd.yaml -------------------------------------------------------------------------------- /manifests/enterprise-ml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-ml.yaml -------------------------------------------------------------------------------- /manifests/enterprise-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/manifests/enterprise-storage.yaml -------------------------------------------------------------------------------- /pkg/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/api.go -------------------------------------------------------------------------------- /pkg/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/auth.go -------------------------------------------------------------------------------- /pkg/api/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/grpc.go -------------------------------------------------------------------------------- /pkg/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/http.go -------------------------------------------------------------------------------- /pkg/api/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/jwt.go -------------------------------------------------------------------------------- /pkg/api/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/logging.go -------------------------------------------------------------------------------- /pkg/api/server/operator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/server/operator.pb.go -------------------------------------------------------------------------------- /pkg/api/server/operator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/server/operator.proto -------------------------------------------------------------------------------- /pkg/api/server/operator_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/server/operator_grpc.pb.go -------------------------------------------------------------------------------- /pkg/api/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/api/tls.go -------------------------------------------------------------------------------- /pkg/apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/README.md -------------------------------------------------------------------------------- /pkg/apis/analytics/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/analytics/definitions.go -------------------------------------------------------------------------------- /pkg/apis/analytics/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/analytics/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/analytics/v1alpha1/gae.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/analytics/v1alpha1/gae.go -------------------------------------------------------------------------------- /pkg/apis/apps/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/definitions.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/v1/job.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/job_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/v1/job_spec.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/job_validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/v1/job_validate.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/apps/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/backup/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/definitions.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/backup.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/backup_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/backup_policy.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/backup_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/backup_spec.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/backup_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/backup_state.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/backup_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/backup_status.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/backup/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/backup/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/deployment/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/annotations.go -------------------------------------------------------------------------------- /pkg/apis/deployment/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/definitions.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/arguments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/arguments.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/backoff.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/bootstrap.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/const.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/duration.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/errors.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/hashes.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/list.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/percent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/percent.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/plan.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/plan_test.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/probes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/probes.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/pvc.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/sync_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/sync_spec.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/timeouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/timeouts.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/tls_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/tls_spec.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v1/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v1/version.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v2alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/deployment/v2alpha1/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/deployment/v2alpha1/pvc.go -------------------------------------------------------------------------------- /pkg/apis/ml/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/definitions.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/batchjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/batchjob.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/conditions.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/cronjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/cronjob.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/extension.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1alpha1/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1alpha1/storage.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1beta1/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1beta1/conditions.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1beta1/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1beta1/extension.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1beta1/register.go -------------------------------------------------------------------------------- /pkg/apis/ml/v1beta1/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/ml/v1beta1/storage.go -------------------------------------------------------------------------------- /pkg/apis/platform/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/platform/definitions.go -------------------------------------------------------------------------------- /pkg/apis/platform/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/platform/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/apis/replication/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/replication/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/shared/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/constants.go -------------------------------------------------------------------------------- /pkg/apis/shared/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/errors.go -------------------------------------------------------------------------------- /pkg/apis/shared/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/names.go -------------------------------------------------------------------------------- /pkg/apis/shared/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/names_test.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/any.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/any_test.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/data.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/data_test.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/hash.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/object.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/resource.go -------------------------------------------------------------------------------- /pkg/apis/shared/v1/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/v1/tls.go -------------------------------------------------------------------------------- /pkg/apis/shared/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/validate.go -------------------------------------------------------------------------------- /pkg/apis/shared/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/shared/validate_test.go -------------------------------------------------------------------------------- /pkg/apis/storage/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/storage/definitions.go -------------------------------------------------------------------------------- /pkg/apis/storage/v1alpha/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/apis/storage/v1alpha/doc.go -------------------------------------------------------------------------------- /pkg/crd/analytics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/analytics.go -------------------------------------------------------------------------------- /pkg/crd/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/apply.go -------------------------------------------------------------------------------- /pkg/crd/apply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/apply_test.go -------------------------------------------------------------------------------- /pkg/crd/arangobackup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangobackup.go -------------------------------------------------------------------------------- /pkg/crd/arangobackuppolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangobackuppolicies.go -------------------------------------------------------------------------------- /pkg/crd/arangodeployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangodeployments.go -------------------------------------------------------------------------------- /pkg/crd/arangojobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangojobs.go -------------------------------------------------------------------------------- /pkg/crd/arangolocalstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangolocalstorage.go -------------------------------------------------------------------------------- /pkg/crd/arangomembers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangomembers.go -------------------------------------------------------------------------------- /pkg/crd/arangoml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangoml.go -------------------------------------------------------------------------------- /pkg/crd/arangotasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/arangotasks.go -------------------------------------------------------------------------------- /pkg/crd/crds/apps-job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/apps-job.go -------------------------------------------------------------------------------- /pkg/crd/crds/apps-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/apps-job.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/backups-backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/backups-backup.go -------------------------------------------------------------------------------- /pkg/crd/crds/backups-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/backups-backup.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/crds.go -------------------------------------------------------------------------------- /pkg/crd/crds/crds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/crds_test.go -------------------------------------------------------------------------------- /pkg/crd/crds/database-member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/database-member.go -------------------------------------------------------------------------------- /pkg/crd/crds/database-task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/database-task.go -------------------------------------------------------------------------------- /pkg/crd/crds/database-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/database-task.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/ml-extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-extension.go -------------------------------------------------------------------------------- /pkg/crd/crds/ml-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-extension.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/ml-job-batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-job-batch.go -------------------------------------------------------------------------------- /pkg/crd/crds/ml-job-batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-job-batch.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/ml-job-cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-job-cron.go -------------------------------------------------------------------------------- /pkg/crd/crds/ml-job-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-job-cron.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/ml-storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-storage.go -------------------------------------------------------------------------------- /pkg/crd/crds/ml-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/ml-storage.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/networking-route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/networking-route.go -------------------------------------------------------------------------------- /pkg/crd/crds/platform-chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/platform-chart.go -------------------------------------------------------------------------------- /pkg/crd/crds/platform-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/platform-chart.yaml -------------------------------------------------------------------------------- /pkg/crd/crds/platform-service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/platform-service.go -------------------------------------------------------------------------------- /pkg/crd/crds/platform-storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/platform-storage.go -------------------------------------------------------------------------------- /pkg/crd/crds/scheduler-pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/scheduler-pod.go -------------------------------------------------------------------------------- /pkg/crd/crds/scheduler-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/crds/scheduler-pod.yaml -------------------------------------------------------------------------------- /pkg/crd/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/definitions.go -------------------------------------------------------------------------------- /pkg/crd/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/networking.go -------------------------------------------------------------------------------- /pkg/crd/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/platform.go -------------------------------------------------------------------------------- /pkg/crd/scheduling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/crd/scheduling.go -------------------------------------------------------------------------------- /pkg/debug_package/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/cli/cli.go -------------------------------------------------------------------------------- /pkg/debug_package/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/generator.go -------------------------------------------------------------------------------- /pkg/debug_package/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/out.go -------------------------------------------------------------------------------- /pkg/debug_package/shared/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/shared/exec.go -------------------------------------------------------------------------------- /pkg/debug_package/shared/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/shared/file.go -------------------------------------------------------------------------------- /pkg/debug_package/shared/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/shared/gen.go -------------------------------------------------------------------------------- /pkg/debug_package/shared/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/debug_package/shared/k8s.go -------------------------------------------------------------------------------- /pkg/deployment/access_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/access_package.go -------------------------------------------------------------------------------- /pkg/deployment/agency/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/cache.go -------------------------------------------------------------------------------- /pkg/deployment/agency/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/config.go -------------------------------------------------------------------------------- /pkg/deployment/agency/leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/leader.go -------------------------------------------------------------------------------- /pkg/deployment/agency/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/loader.go -------------------------------------------------------------------------------- /pkg/deployment/agency/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/logger.go -------------------------------------------------------------------------------- /pkg/deployment/agency/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/agency/state.go -------------------------------------------------------------------------------- /pkg/deployment/chaos/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/chaos/context.go -------------------------------------------------------------------------------- /pkg/deployment/chaos/monkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/chaos/monkey.go -------------------------------------------------------------------------------- /pkg/deployment/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/cleanup.go -------------------------------------------------------------------------------- /pkg/deployment/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/client.go -------------------------------------------------------------------------------- /pkg/deployment/client/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/compact.go -------------------------------------------------------------------------------- /pkg/deployment/client/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/id.go -------------------------------------------------------------------------------- /pkg/deployment/client/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/jobs.go -------------------------------------------------------------------------------- /pkg/deployment/client/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/jwt.go -------------------------------------------------------------------------------- /pkg/deployment/client/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/license.go -------------------------------------------------------------------------------- /pkg/deployment/client/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/logger.go -------------------------------------------------------------------------------- /pkg/deployment/client/sha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/sha.go -------------------------------------------------------------------------------- /pkg/deployment/client/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/status.go -------------------------------------------------------------------------------- /pkg/deployment/client/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/tls.go -------------------------------------------------------------------------------- /pkg/deployment/client/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/client/types.go -------------------------------------------------------------------------------- /pkg/deployment/context_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/context_impl.go -------------------------------------------------------------------------------- /pkg/deployment/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/deployment.go -------------------------------------------------------------------------------- /pkg/deployment/features/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/features/jwt.go -------------------------------------------------------------------------------- /pkg/deployment/features/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/features/local.go -------------------------------------------------------------------------------- /pkg/deployment/features/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/features/names.go -------------------------------------------------------------------------------- /pkg/deployment/features/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/features/tls.go -------------------------------------------------------------------------------- /pkg/deployment/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/images.go -------------------------------------------------------------------------------- /pkg/deployment/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/images_test.go -------------------------------------------------------------------------------- /pkg/deployment/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/logger.go -------------------------------------------------------------------------------- /pkg/deployment/member/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/member/image.go -------------------------------------------------------------------------------- /pkg/deployment/member/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/member/state.go -------------------------------------------------------------------------------- /pkg/deployment/members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/members.go -------------------------------------------------------------------------------- /pkg/deployment/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/metrics.go -------------------------------------------------------------------------------- /pkg/deployment/old_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/old_metrics.go -------------------------------------------------------------------------------- /pkg/deployment/patch/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/patch/item.go -------------------------------------------------------------------------------- /pkg/deployment/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/patch/patch.go -------------------------------------------------------------------------------- /pkg/deployment/pod/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/affinity.go -------------------------------------------------------------------------------- /pkg/deployment/pod/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/builder.go -------------------------------------------------------------------------------- /pkg/deployment/pod/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/encryption.go -------------------------------------------------------------------------------- /pkg/deployment/pod/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/jwt.go -------------------------------------------------------------------------------- /pkg/deployment/pod/probes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/probes.go -------------------------------------------------------------------------------- /pkg/deployment/pod/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/security.go -------------------------------------------------------------------------------- /pkg/deployment/pod/sni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/sni.go -------------------------------------------------------------------------------- /pkg/deployment/pod/timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/timezone.go -------------------------------------------------------------------------------- /pkg/deployment/pod/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/tls.go -------------------------------------------------------------------------------- /pkg/deployment/pod/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/topology.go -------------------------------------------------------------------------------- /pkg/deployment/pod/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/upgrade.go -------------------------------------------------------------------------------- /pkg/deployment/pod/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/utils.go -------------------------------------------------------------------------------- /pkg/deployment/pod/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/pod/volumes.go -------------------------------------------------------------------------------- /pkg/deployment/resources/pdbs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/resources/pdbs.go -------------------------------------------------------------------------------- /pkg/deployment/resources/pvcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/resources/pvcs.go -------------------------------------------------------------------------------- /pkg/deployment/rotation/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/rotation/check.go -------------------------------------------------------------------------------- /pkg/deployment/server_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/server_api.go -------------------------------------------------------------------------------- /pkg/deployment/topology/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/topology/const.go -------------------------------------------------------------------------------- /pkg/deployment/versions/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/deployment/versions/check.go -------------------------------------------------------------------------------- /pkg/exporter/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/exporter/exporter.go -------------------------------------------------------------------------------- /pkg/exporter/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/exporter/monitor.go -------------------------------------------------------------------------------- /pkg/exporter/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/exporter/monitor_test.go -------------------------------------------------------------------------------- /pkg/exporter/passthru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/exporter/passthru.go -------------------------------------------------------------------------------- /pkg/handlers/backup/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/errors.go -------------------------------------------------------------------------------- /pkg/handlers/backup/finalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/finalizer.go -------------------------------------------------------------------------------- /pkg/handlers/backup/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/flow_test.go -------------------------------------------------------------------------------- /pkg/handlers/backup/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/handler.go -------------------------------------------------------------------------------- /pkg/handlers/backup/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/lifecycle.go -------------------------------------------------------------------------------- /pkg/handlers/backup/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/register.go -------------------------------------------------------------------------------- /pkg/handlers/backup/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/state.go -------------------------------------------------------------------------------- /pkg/handlers/backup/state/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/state/map.go -------------------------------------------------------------------------------- /pkg/handlers/backup/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/status.go -------------------------------------------------------------------------------- /pkg/handlers/backup/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/backup/util.go -------------------------------------------------------------------------------- /pkg/handlers/job/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/job/handler.go -------------------------------------------------------------------------------- /pkg/handlers/job/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/job/handler_test.go -------------------------------------------------------------------------------- /pkg/handlers/job/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/job/lifecycle.go -------------------------------------------------------------------------------- /pkg/handlers/job/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/job/logger.go -------------------------------------------------------------------------------- /pkg/handlers/job/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/job/register.go -------------------------------------------------------------------------------- /pkg/handlers/policy/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/policy/handler.go -------------------------------------------------------------------------------- /pkg/handlers/policy/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/policy/lifecycle.go -------------------------------------------------------------------------------- /pkg/handlers/policy/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/policy/register.go -------------------------------------------------------------------------------- /pkg/handlers/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/utils/errors.go -------------------------------------------------------------------------------- /pkg/handlers/utils/ints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/utils/ints.go -------------------------------------------------------------------------------- /pkg/handlers/utils/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/utils/retry.go -------------------------------------------------------------------------------- /pkg/handlers/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/handlers/utils/strings.go -------------------------------------------------------------------------------- /pkg/integrations/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/auth.go -------------------------------------------------------------------------------- /pkg/integrations/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/auth_test.go -------------------------------------------------------------------------------- /pkg/integrations/config_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/config_v1.go -------------------------------------------------------------------------------- /pkg/integrations/events_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/events_v1.go -------------------------------------------------------------------------------- /pkg/integrations/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/extension.go -------------------------------------------------------------------------------- /pkg/integrations/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/flags.go -------------------------------------------------------------------------------- /pkg/integrations/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/integration.go -------------------------------------------------------------------------------- /pkg/integrations/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/logger.go -------------------------------------------------------------------------------- /pkg/integrations/meta_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/meta_v1.go -------------------------------------------------------------------------------- /pkg/integrations/pong_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/pong_test.go -------------------------------------------------------------------------------- /pkg/integrations/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/register.go -------------------------------------------------------------------------------- /pkg/integrations/scheduler_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/scheduler_v1.go -------------------------------------------------------------------------------- /pkg/integrations/scheduler_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/scheduler_v2.go -------------------------------------------------------------------------------- /pkg/integrations/shared/fill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/shared/fill.go -------------------------------------------------------------------------------- /pkg/integrations/shutdown_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/shutdown_v1.go -------------------------------------------------------------------------------- /pkg/integrations/sidecar/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/sidecar/core.go -------------------------------------------------------------------------------- /pkg/integrations/storage_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/storage_v1.go -------------------------------------------------------------------------------- /pkg/integrations/storage_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/storage_v2.go -------------------------------------------------------------------------------- /pkg/integrations/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/suite.go -------------------------------------------------------------------------------- /pkg/integrations/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/suite_test.go -------------------------------------------------------------------------------- /pkg/integrations/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/tls.go -------------------------------------------------------------------------------- /pkg/integrations/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/integrations/tls_test.go -------------------------------------------------------------------------------- /pkg/license_manager/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/license_manager/client.go -------------------------------------------------------------------------------- /pkg/license_manager/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/license_manager/registry.go -------------------------------------------------------------------------------- /pkg/license_manager/stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/license_manager/stage.go -------------------------------------------------------------------------------- /pkg/logging/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/cli.go -------------------------------------------------------------------------------- /pkg/logging/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/global.go -------------------------------------------------------------------------------- /pkg/logging/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/http.go -------------------------------------------------------------------------------- /pkg/logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/level.go -------------------------------------------------------------------------------- /pkg/logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/logger.go -------------------------------------------------------------------------------- /pkg/logging/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/sampler.go -------------------------------------------------------------------------------- /pkg/logging/sampler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/sampler_test.go -------------------------------------------------------------------------------- /pkg/logging/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/testing.go -------------------------------------------------------------------------------- /pkg/logging/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/utils.go -------------------------------------------------------------------------------- /pkg/logging/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/utils_test.go -------------------------------------------------------------------------------- /pkg/logging/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/logging/wrap.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/operator/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operator/crd.go -------------------------------------------------------------------------------- /pkg/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operator/operator.go -------------------------------------------------------------------------------- /pkg/operator/operator_leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operator/operator_leader.go -------------------------------------------------------------------------------- /pkg/operator/server_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operator/server_api.go -------------------------------------------------------------------------------- /pkg/operatorV2/errors_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/errors_stop.go -------------------------------------------------------------------------------- /pkg/operatorV2/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/event/event.go -------------------------------------------------------------------------------- /pkg/operatorV2/event/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/event/logger.go -------------------------------------------------------------------------------- /pkg/operatorV2/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/filter.go -------------------------------------------------------------------------------- /pkg/operatorV2/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/handle.go -------------------------------------------------------------------------------- /pkg/operatorV2/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/handler.go -------------------------------------------------------------------------------- /pkg/operatorV2/informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/informer.go -------------------------------------------------------------------------------- /pkg/operatorV2/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/lifecycle.go -------------------------------------------------------------------------------- /pkg/operatorV2/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/logger.go -------------------------------------------------------------------------------- /pkg/operatorV2/operation/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/operation/item.go -------------------------------------------------------------------------------- /pkg/operatorV2/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/operator.go -------------------------------------------------------------------------------- /pkg/operatorV2/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/operator_test.go -------------------------------------------------------------------------------- /pkg/operatorV2/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/prometheus.go -------------------------------------------------------------------------------- /pkg/operatorV2/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/update.go -------------------------------------------------------------------------------- /pkg/operatorV2/update_wraps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/operatorV2/update_wraps.go -------------------------------------------------------------------------------- /pkg/platform/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/consts.go -------------------------------------------------------------------------------- /pkg/platform/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/flags.go -------------------------------------------------------------------------------- /pkg/platform/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/helm.go -------------------------------------------------------------------------------- /pkg/platform/helm_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/helm_registry.go -------------------------------------------------------------------------------- /pkg/platform/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/init.go -------------------------------------------------------------------------------- /pkg/platform/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/installer.go -------------------------------------------------------------------------------- /pkg/platform/inventory/aql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/inventory/aql.go -------------------------------------------------------------------------------- /pkg/platform/inventory/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/inventory/consts.go -------------------------------------------------------------------------------- /pkg/platform/inventory/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/inventory/global.go -------------------------------------------------------------------------------- /pkg/platform/inventory/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/inventory/types.go -------------------------------------------------------------------------------- /pkg/platform/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/k8s.go -------------------------------------------------------------------------------- /pkg/platform/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/labels/labels.go -------------------------------------------------------------------------------- /pkg/platform/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/license.go -------------------------------------------------------------------------------- /pkg/platform/license_activate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/license_activate.go -------------------------------------------------------------------------------- /pkg/platform/license_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/license_generate.go -------------------------------------------------------------------------------- /pkg/platform/license_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/license_secret.go -------------------------------------------------------------------------------- /pkg/platform/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/logger.go -------------------------------------------------------------------------------- /pkg/platform/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/output.go -------------------------------------------------------------------------------- /pkg/platform/pack/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/cache.go -------------------------------------------------------------------------------- /pkg/platform/pack/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/cache_test.go -------------------------------------------------------------------------------- /pkg/platform/pack/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/export.go -------------------------------------------------------------------------------- /pkg/platform/pack/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/import.go -------------------------------------------------------------------------------- /pkg/platform/pack/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/logger.go -------------------------------------------------------------------------------- /pkg/platform/pack/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/proto.go -------------------------------------------------------------------------------- /pkg/platform/pack/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/registry.go -------------------------------------------------------------------------------- /pkg/platform/pack/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/pack/utils.go -------------------------------------------------------------------------------- /pkg/platform/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package.go -------------------------------------------------------------------------------- /pkg/platform/package_dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_dump.go -------------------------------------------------------------------------------- /pkg/platform/package_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_export.go -------------------------------------------------------------------------------- /pkg/platform/package_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_import.go -------------------------------------------------------------------------------- /pkg/platform/package_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_install.go -------------------------------------------------------------------------------- /pkg/platform/package_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_merge.go -------------------------------------------------------------------------------- /pkg/platform/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/package_test.go -------------------------------------------------------------------------------- /pkg/platform/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/platform/runner.go -------------------------------------------------------------------------------- /pkg/replication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/client.go -------------------------------------------------------------------------------- /pkg/replication/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/finalizers.go -------------------------------------------------------------------------------- /pkg/replication/inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/inventory.go -------------------------------------------------------------------------------- /pkg/replication/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/metrics.go -------------------------------------------------------------------------------- /pkg/replication/server_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/server_api.go -------------------------------------------------------------------------------- /pkg/replication/sync_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/replication/sync_client.go -------------------------------------------------------------------------------- /pkg/scheduler/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/scheduler/input.go -------------------------------------------------------------------------------- /pkg/scheduler/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/scheduler/profiles.go -------------------------------------------------------------------------------- /pkg/server/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/server/auth.go -------------------------------------------------------------------------------- /pkg/server/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/server/errors.go -------------------------------------------------------------------------------- /pkg/server/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/server/handlers.go -------------------------------------------------------------------------------- /pkg/server/handlers_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/server/handlers_storage.go -------------------------------------------------------------------------------- /pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/server/server.go -------------------------------------------------------------------------------- /pkg/storage/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/clients.go -------------------------------------------------------------------------------- /pkg/storage/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/consts.go -------------------------------------------------------------------------------- /pkg/storage/daemon_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/daemon_set.go -------------------------------------------------------------------------------- /pkg/storage/daemon_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/daemon_set_test.go -------------------------------------------------------------------------------- /pkg/storage/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/image.go -------------------------------------------------------------------------------- /pkg/storage/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/image_test.go -------------------------------------------------------------------------------- /pkg/storage/local_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/local_storage.go -------------------------------------------------------------------------------- /pkg/storage/provisioner/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/provisioner/api.go -------------------------------------------------------------------------------- /pkg/storage/pv_cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pv_cleanup.go -------------------------------------------------------------------------------- /pkg/storage/pv_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pv_creator.go -------------------------------------------------------------------------------- /pkg/storage/pv_creator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pv_creator_test.go -------------------------------------------------------------------------------- /pkg/storage/pv_informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pv_informer.go -------------------------------------------------------------------------------- /pkg/storage/pv_inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pv_inspector.go -------------------------------------------------------------------------------- /pkg/storage/pvc_informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pvc_informer.go -------------------------------------------------------------------------------- /pkg/storage/pvc_inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/pvc_inspector.go -------------------------------------------------------------------------------- /pkg/storage/resources/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/resources/nodes.go -------------------------------------------------------------------------------- /pkg/storage/resources/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/resources/pods.go -------------------------------------------------------------------------------- /pkg/storage/server_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/server_api.go -------------------------------------------------------------------------------- /pkg/storage/server_volume_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/server_volume_api.go -------------------------------------------------------------------------------- /pkg/storage/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/service.go -------------------------------------------------------------------------------- /pkg/storage/storage_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/storage_class.go -------------------------------------------------------------------------------- /pkg/storage/utils/taints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/utils/taints.go -------------------------------------------------------------------------------- /pkg/storage/utils/taints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/utils/taints_test.go -------------------------------------------------------------------------------- /pkg/storage/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/storage/utils_test.go -------------------------------------------------------------------------------- /pkg/upgrade/member_cid_append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/upgrade/member_cid_append.go -------------------------------------------------------------------------------- /pkg/upgrade/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/upgrade/upgrade.go -------------------------------------------------------------------------------- /pkg/upgrade/upgrade_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/upgrade/upgrade_struct.go -------------------------------------------------------------------------------- /pkg/upgrade/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/upgrade/upgrade_test.go -------------------------------------------------------------------------------- /pkg/util/arangod/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/client.go -------------------------------------------------------------------------------- /pkg/util/arangod/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/cluster.go -------------------------------------------------------------------------------- /pkg/util/arangod/dbserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/dbserver.go -------------------------------------------------------------------------------- /pkg/util/arangod/driver_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/driver_init.go -------------------------------------------------------------------------------- /pkg/util/arangod/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/error.go -------------------------------------------------------------------------------- /pkg/util/arangod/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/license.go -------------------------------------------------------------------------------- /pkg/util/arangod/next.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/next.go -------------------------------------------------------------------------------- /pkg/util/arangod/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/arangod/request.go -------------------------------------------------------------------------------- /pkg/util/assertion/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/assertion/assert.go -------------------------------------------------------------------------------- /pkg/util/assertion/assert_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/assertion/assert_log.go -------------------------------------------------------------------------------- /pkg/util/assertion/frames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/assertion/frames.go -------------------------------------------------------------------------------- /pkg/util/assertion/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/assertion/logger.go -------------------------------------------------------------------------------- /pkg/util/assertion/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/assertion/metrics.go -------------------------------------------------------------------------------- /pkg/util/aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/config.go -------------------------------------------------------------------------------- /pkg/util/aws/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/file.go -------------------------------------------------------------------------------- /pkg/util/aws/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/http.go -------------------------------------------------------------------------------- /pkg/util/aws/impersonate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/impersonate.go -------------------------------------------------------------------------------- /pkg/util/aws/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/provider.go -------------------------------------------------------------------------------- /pkg/util/aws/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/aws/tls.go -------------------------------------------------------------------------------- /pkg/util/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/cache.go -------------------------------------------------------------------------------- /pkg/util/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/util/cache/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/config.go -------------------------------------------------------------------------------- /pkg/util/cache/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/hash.go -------------------------------------------------------------------------------- /pkg/util/cache/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/object.go -------------------------------------------------------------------------------- /pkg/util/cache/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/object_test.go -------------------------------------------------------------------------------- /pkg/util/cache/remote_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cache/remote_cache.go -------------------------------------------------------------------------------- /pkg/util/cert/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cert/signer.go -------------------------------------------------------------------------------- /pkg/util/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/checksum.go -------------------------------------------------------------------------------- /pkg/util/checksum.md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/checksum.md5.go -------------------------------------------------------------------------------- /pkg/util/checksum.sha224.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/checksum.sha224.go -------------------------------------------------------------------------------- /pkg/util/checksum.sha256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/checksum.sha256.go -------------------------------------------------------------------------------- /pkg/util/cli/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/deployment.go -------------------------------------------------------------------------------- /pkg/util/cli/exit_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/exit_code.go -------------------------------------------------------------------------------- /pkg/util/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/flag.go -------------------------------------------------------------------------------- /pkg/util/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/flag_test.go -------------------------------------------------------------------------------- /pkg/util/cli/lm.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/lm.client.go -------------------------------------------------------------------------------- /pkg/util/cli/lm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/lm.go -------------------------------------------------------------------------------- /pkg/util/cli/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/logger.go -------------------------------------------------------------------------------- /pkg/util/cli/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/registry.go -------------------------------------------------------------------------------- /pkg/util/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/run.go -------------------------------------------------------------------------------- /pkg/util/cli/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/cli/usage.go -------------------------------------------------------------------------------- /pkg/util/closer/close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/closer/close.go -------------------------------------------------------------------------------- /pkg/util/closer/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/closer/multi.go -------------------------------------------------------------------------------- /pkg/util/collection/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/collection/map.go -------------------------------------------------------------------------------- /pkg/util/compare/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/compare.go -------------------------------------------------------------------------------- /pkg/util/compare/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/diff.go -------------------------------------------------------------------------------- /pkg/util/compare/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/gen.go -------------------------------------------------------------------------------- /pkg/util/compare/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/interfaces.go -------------------------------------------------------------------------------- /pkg/util/compare/k8s/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/k8s/filter.go -------------------------------------------------------------------------------- /pkg/util/compare/k8s/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/k8s/secret.go -------------------------------------------------------------------------------- /pkg/util/compare/k8s/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/k8s/service.go -------------------------------------------------------------------------------- /pkg/util/compare/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/mode.go -------------------------------------------------------------------------------- /pkg/util/compare/sub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/compare/sub.go -------------------------------------------------------------------------------- /pkg/util/constants/adb_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/adb_codes.go -------------------------------------------------------------------------------- /pkg/util/constants/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/connection.go -------------------------------------------------------------------------------- /pkg/util/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/constants.go -------------------------------------------------------------------------------- /pkg/util/constants/envoy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/envoy.go -------------------------------------------------------------------------------- /pkg/util/constants/envs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/envs.go -------------------------------------------------------------------------------- /pkg/util/constants/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/gateway.go -------------------------------------------------------------------------------- /pkg/util/constants/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/helm.go -------------------------------------------------------------------------------- /pkg/util/constants/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/namespace.go -------------------------------------------------------------------------------- /pkg/util/constants/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/phase.go -------------------------------------------------------------------------------- /pkg/util/constants/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/profiles.go -------------------------------------------------------------------------------- /pkg/util/constants/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/constants/versions.go -------------------------------------------------------------------------------- /pkg/util/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/context.go -------------------------------------------------------------------------------- /pkg/util/crd/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/crd/crd.go -------------------------------------------------------------------------------- /pkg/util/crypto/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/crypto/certificates.go -------------------------------------------------------------------------------- /pkg/util/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/dict.go -------------------------------------------------------------------------------- /pkg/util/dict_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/dict_test.go -------------------------------------------------------------------------------- /pkg/util/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/env.go -------------------------------------------------------------------------------- /pkg/util/errors/defined.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/defined.go -------------------------------------------------------------------------------- /pkg/util/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/errors.go -------------------------------------------------------------------------------- /pkg/util/errors/errors_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/errors_array.go -------------------------------------------------------------------------------- /pkg/util/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/errors_test.go -------------------------------------------------------------------------------- /pkg/util/errors/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/execute.go -------------------------------------------------------------------------------- /pkg/util/errors/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/grpc.go -------------------------------------------------------------------------------- /pkg/util/errors/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/grpc_test.go -------------------------------------------------------------------------------- /pkg/util/errors/panics/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/panics/error.go -------------------------------------------------------------------------------- /pkg/util/errors/panics/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/panics/logger.go -------------------------------------------------------------------------------- /pkg/util/errors/panics/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/panics/metric.go -------------------------------------------------------------------------------- /pkg/util/errors/panics/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/panics/stack.go -------------------------------------------------------------------------------- /pkg/util/errors/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/errors/section.go -------------------------------------------------------------------------------- /pkg/util/executor/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/executor/executor.go -------------------------------------------------------------------------------- /pkg/util/executor/threader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/executor/threader.go -------------------------------------------------------------------------------- /pkg/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/file.go -------------------------------------------------------------------------------- /pkg/util/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/filter.go -------------------------------------------------------------------------------- /pkg/util/fwatch/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/fwatch/watcher.go -------------------------------------------------------------------------------- /pkg/util/fwatch/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/fwatch/watcher_test.go -------------------------------------------------------------------------------- /pkg/util/gcs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/gcs/config.go -------------------------------------------------------------------------------- /pkg/util/gcs/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/gcs/provider.go -------------------------------------------------------------------------------- /pkg/util/globals/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/globals/global.go -------------------------------------------------------------------------------- /pkg/util/globals/globals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/globals/globals_test.go -------------------------------------------------------------------------------- /pkg/util/globals/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/globals/int.go -------------------------------------------------------------------------------- /pkg/util/globals/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/globals/timeout.go -------------------------------------------------------------------------------- /pkg/util/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/grpc/grpc.go -------------------------------------------------------------------------------- /pkg/util/grpc/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/grpc/http.go -------------------------------------------------------------------------------- /pkg/util/grpc/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/grpc/marshal.go -------------------------------------------------------------------------------- /pkg/util/grpc/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/grpc/object.go -------------------------------------------------------------------------------- /pkg/util/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/grpc/stream.go -------------------------------------------------------------------------------- /pkg/util/http/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/buffer.go -------------------------------------------------------------------------------- /pkg/util/http/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/buffer_test.go -------------------------------------------------------------------------------- /pkg/util/http/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/client.go -------------------------------------------------------------------------------- /pkg/util/http/client_mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/client_mod.go -------------------------------------------------------------------------------- /pkg/util/http/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/client_test.go -------------------------------------------------------------------------------- /pkg/util/http/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/content.go -------------------------------------------------------------------------------- /pkg/util/http/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/downloader.go -------------------------------------------------------------------------------- /pkg/util/http/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/encoding.go -------------------------------------------------------------------------------- /pkg/util/http/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/error.go -------------------------------------------------------------------------------- /pkg/util/http/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/headers.go -------------------------------------------------------------------------------- /pkg/util/http/headers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/headers_test.go -------------------------------------------------------------------------------- /pkg/util/http/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/logger.go -------------------------------------------------------------------------------- /pkg/util/http/no_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/no_content.go -------------------------------------------------------------------------------- /pkg/util/http/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/response.go -------------------------------------------------------------------------------- /pkg/util/http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/server.go -------------------------------------------------------------------------------- /pkg/util/http/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/http/writer.go -------------------------------------------------------------------------------- /pkg/util/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/image.go -------------------------------------------------------------------------------- /pkg/util/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/int.go -------------------------------------------------------------------------------- /pkg/util/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/interval.go -------------------------------------------------------------------------------- /pkg/util/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/io.go -------------------------------------------------------------------------------- /pkg/util/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/json.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/affinity.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/base/base.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/configmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/configmaps.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/deepcopy.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/dns.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/dns_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/events.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/finalizers.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/gvk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/gvk.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/chart.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/charts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/charts.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/client.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/logger.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/package.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/types.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/helm/values.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/images.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/images_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/info/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/info/pods.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/informer.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/informers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/informers.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/license.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/license_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/lifecycle.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/list/list.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/list/lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/list/lister.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/logger.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/names/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/names/id.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/names_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/object.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/object_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/owner.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/pair.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/pair_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/pods.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pods_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/pods_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/pvc.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/reconcile.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/secrets.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/services.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/storageclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/storageclass.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/test/doc.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/time.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/tls/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/tls/cert.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/tls/tls.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/tools/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/tools/owner.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/util.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/util_test.go -------------------------------------------------------------------------------- /pkg/util/k8sutil/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/k8sutil/volumes.go -------------------------------------------------------------------------------- /pkg/util/kclient/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kclient/fake.go -------------------------------------------------------------------------------- /pkg/util/kclient/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kclient/logger.go -------------------------------------------------------------------------------- /pkg/util/kclient/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kclient/mod.go -------------------------------------------------------------------------------- /pkg/util/kclient/ratelimiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kclient/ratelimiter.go -------------------------------------------------------------------------------- /pkg/util/kconfig/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kconfig/client.go -------------------------------------------------------------------------------- /pkg/util/kconfig/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/kconfig/rest.go -------------------------------------------------------------------------------- /pkg/util/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/labels.go -------------------------------------------------------------------------------- /pkg/util/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/list.go -------------------------------------------------------------------------------- /pkg/util/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/list_test.go -------------------------------------------------------------------------------- /pkg/util/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/loader.go -------------------------------------------------------------------------------- /pkg/util/metrics/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/collector.go -------------------------------------------------------------------------------- /pkg/util/metrics/description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/description.go -------------------------------------------------------------------------------- /pkg/util/metrics/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/duration.go -------------------------------------------------------------------------------- /pkg/util/metrics/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/handler.go -------------------------------------------------------------------------------- /pkg/util/metrics/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/handler_test.go -------------------------------------------------------------------------------- /pkg/util/metrics/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/metric.go -------------------------------------------------------------------------------- /pkg/util/metrics/metric_gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/metric_gauge.go -------------------------------------------------------------------------------- /pkg/util/metrics/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/producer.go -------------------------------------------------------------------------------- /pkg/util/metrics/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/push.go -------------------------------------------------------------------------------- /pkg/util/metrics/push_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/metrics/push_filter.go -------------------------------------------------------------------------------- /pkg/util/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/mod.go -------------------------------------------------------------------------------- /pkg/util/next.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/next.go -------------------------------------------------------------------------------- /pkg/util/parallel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/parallel.go -------------------------------------------------------------------------------- /pkg/util/pretty/marsh_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/pretty/marsh_table.go -------------------------------------------------------------------------------- /pkg/util/pretty/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/pretty/replace.go -------------------------------------------------------------------------------- /pkg/util/pretty/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/pretty/wrap.go -------------------------------------------------------------------------------- /pkg/util/probe/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/probe/grpc.go -------------------------------------------------------------------------------- /pkg/util/probe/liveness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/probe/liveness.go -------------------------------------------------------------------------------- /pkg/util/probe/liveness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/probe/liveness_test.go -------------------------------------------------------------------------------- /pkg/util/probe/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/probe/ready.go -------------------------------------------------------------------------------- /pkg/util/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/rand.go -------------------------------------------------------------------------------- /pkg/util/refs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/refs.go -------------------------------------------------------------------------------- /pkg/util/refs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/refs_test.go -------------------------------------------------------------------------------- /pkg/util/registerer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/registerer.go -------------------------------------------------------------------------------- /pkg/util/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/retry/retry.go -------------------------------------------------------------------------------- /pkg/util/retry/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/retry/timeout.go -------------------------------------------------------------------------------- /pkg/util/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/shutdown/shutdown.go -------------------------------------------------------------------------------- /pkg/util/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/signal.go -------------------------------------------------------------------------------- /pkg/util/strings/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/strings/strings.go -------------------------------------------------------------------------------- /pkg/util/strings/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/strings/strings_test.go -------------------------------------------------------------------------------- /pkg/util/svc/background.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/background.go -------------------------------------------------------------------------------- /pkg/util/svc/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/configuration.go -------------------------------------------------------------------------------- /pkg/util/svc/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/error.go -------------------------------------------------------------------------------- /pkg/util/svc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/handler.go -------------------------------------------------------------------------------- /pkg/util/svc/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/health.go -------------------------------------------------------------------------------- /pkg/util/svc/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/run.go -------------------------------------------------------------------------------- /pkg/util/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/service.go -------------------------------------------------------------------------------- /pkg/util/svc/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/service_test.go -------------------------------------------------------------------------------- /pkg/util/svc/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/shutdown.go -------------------------------------------------------------------------------- /pkg/util/svc/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/svc/starter.go -------------------------------------------------------------------------------- /pkg/util/sync/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/sync/map.go -------------------------------------------------------------------------------- /pkg/util/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tags.go -------------------------------------------------------------------------------- /pkg/util/tests/ap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/ap.go -------------------------------------------------------------------------------- /pkg/util/tests/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/aws.go -------------------------------------------------------------------------------- /pkg/util/tests/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/cast.go -------------------------------------------------------------------------------- /pkg/util/tests/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/cli.go -------------------------------------------------------------------------------- /pkg/util/tests/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/equal.go -------------------------------------------------------------------------------- /pkg/util/tests/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/features.go -------------------------------------------------------------------------------- /pkg/util/tests/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/gcs.go -------------------------------------------------------------------------------- /pkg/util/tests/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/generic.go -------------------------------------------------------------------------------- /pkg/util/tests/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/http.go -------------------------------------------------------------------------------- /pkg/util/tests/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/inspector.go -------------------------------------------------------------------------------- /pkg/util/tests/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/kubernetes.go -------------------------------------------------------------------------------- /pkg/util/tests/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/logging.go -------------------------------------------------------------------------------- /pkg/util/tests/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/logging_test.go -------------------------------------------------------------------------------- /pkg/util/tests/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/network.go -------------------------------------------------------------------------------- /pkg/util/tests/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/operator.go -------------------------------------------------------------------------------- /pkg/util/tests/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/path.go -------------------------------------------------------------------------------- /pkg/util/tests/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/port.go -------------------------------------------------------------------------------- /pkg/util/tests/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/resources.go -------------------------------------------------------------------------------- /pkg/util/tests/suite/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/suite/chart.go -------------------------------------------------------------------------------- /pkg/util/tests/suite/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/suite/generate.go -------------------------------------------------------------------------------- /pkg/util/tests/tgrpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/tgrpc/grpc.go -------------------------------------------------------------------------------- /pkg/util/tests/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tests/time.go -------------------------------------------------------------------------------- /pkg/util/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/timeout.go -------------------------------------------------------------------------------- /pkg/util/timer/after.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/timer/after.go -------------------------------------------------------------------------------- /pkg/util/timer/after_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/timer/after_test.go -------------------------------------------------------------------------------- /pkg/util/timer/delayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/timer/delayer.go -------------------------------------------------------------------------------- /pkg/util/timer/delayer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/timer/delayer_test.go -------------------------------------------------------------------------------- /pkg/util/times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/times.go -------------------------------------------------------------------------------- /pkg/util/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/tls.go -------------------------------------------------------------------------------- /pkg/util/token/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/claims.go -------------------------------------------------------------------------------- /pkg/util/token/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/consts.go -------------------------------------------------------------------------------- /pkg/util/token/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/errors.go -------------------------------------------------------------------------------- /pkg/util/token/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/interface.go -------------------------------------------------------------------------------- /pkg/util/token/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/method.go -------------------------------------------------------------------------------- /pkg/util/token/mods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/mods.go -------------------------------------------------------------------------------- /pkg/util/token/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/parse.go -------------------------------------------------------------------------------- /pkg/util/token/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/secret.go -------------------------------------------------------------------------------- /pkg/util/token/secret_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/secret_empty.go -------------------------------------------------------------------------------- /pkg/util/token/secret_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/secret_set.go -------------------------------------------------------------------------------- /pkg/util/token/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/secrets.go -------------------------------------------------------------------------------- /pkg/util/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/token.go -------------------------------------------------------------------------------- /pkg/util/token/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/token/token_test.go -------------------------------------------------------------------------------- /pkg/util/trigger/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/trigger/trigger.go -------------------------------------------------------------------------------- /pkg/util/validation/dns_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/validation/dns_name.go -------------------------------------------------------------------------------- /pkg/util/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/version.go -------------------------------------------------------------------------------- /pkg/util/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/util/version_test.go -------------------------------------------------------------------------------- /pkg/version/version.community.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/version/version.community.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/webhook/admission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/admission.go -------------------------------------------------------------------------------- /pkg/webhook/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/handler.go -------------------------------------------------------------------------------- /pkg/webhook/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/logger.go -------------------------------------------------------------------------------- /pkg/webhook/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/responses.go -------------------------------------------------------------------------------- /pkg/webhook/suite_pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/suite_pod_test.go -------------------------------------------------------------------------------- /pkg/webhook/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/pkg/webhook/suite_test.go -------------------------------------------------------------------------------- /scripts/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/cache.sh -------------------------------------------------------------------------------- /scripts/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/codegen.sh -------------------------------------------------------------------------------- /scripts/patch_chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/patch_chart.sh -------------------------------------------------------------------------------- /scripts/patch_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/patch_docs.sh -------------------------------------------------------------------------------- /scripts/patch_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/patch_examples.sh -------------------------------------------------------------------------------- /scripts/patch_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/scripts/patch_readme.sh -------------------------------------------------------------------------------- /tools/codegen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/tools/codegen/Dockerfile -------------------------------------------------------------------------------- /tools/codegen/license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/tools/codegen/license-header.txt -------------------------------------------------------------------------------- /tools/dategen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/tools/dategen/main.go -------------------------------------------------------------------------------- /tools/license/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/kube-arangodb/HEAD/tools/license/license.go --------------------------------------------------------------------------------