├── .codecov └── codecov.yml ├── .dockerignore ├── .github ├── dependabot.yml ├── semantic.yml └── workflows │ ├── codeql-analysis.yml │ ├── dev-release.yml │ └── release.yml ├── .gitignore ├── .releaserc.js ├── LICENSE ├── README.md ├── SECURITY.md ├── changelog.config.js ├── cmd ├── chore │ ├── boom-debug │ │ └── main.go │ ├── dev │ │ ├── executables │ │ │ └── main.go │ │ └── orbctl │ │ │ └── main.go │ ├── e2e │ │ ├── .gitignore │ │ ├── README.md │ │ ├── run │ │ │ ├── bootstrap.go │ │ │ ├── command.go │ │ │ ├── condition.go │ │ │ ├── desire.go │ │ │ ├── destroy.go │ │ │ ├── downscale.go │ │ │ ├── ensured.go │ │ │ ├── github.go │ │ │ ├── graphite.go │ │ │ ├── kubectl.go │ │ │ ├── logging.go │ │ │ ├── main.go │ │ │ ├── node.go │ │ │ ├── orbctl.go │ │ │ ├── patch.go │ │ │ ├── progress.go │ │ │ ├── reboot.go │ │ │ ├── replace.go │ │ │ ├── run.go │ │ │ └── upgrade.go │ │ └── trigger │ │ │ └── main.go │ ├── gen-charts │ │ └── main.go │ ├── gen-executables │ │ ├── derived.gen.go │ │ └── main.go │ └── helpers.go ├── gen-crds │ └── main.go ├── health │ └── main.go ├── networking-debug │ └── main.go ├── nodeagent │ ├── .gitignore │ └── main.go ├── orbctl │ ├── api.go │ ├── cmds │ │ ├── deploy.go │ │ └── takeoff.go │ ├── configure.go │ ├── edit.go │ ├── exec.go │ ├── file.go │ ├── list.go │ ├── machines.go │ ├── main.go │ ├── node.go │ ├── patch.go │ ├── print.go │ ├── readsecret.go │ ├── reboot.go │ ├── replace.go │ ├── repo.go │ ├── root.go │ ├── start.go │ ├── takeoff.go │ ├── teardown.go │ └── writesecret.go └── takeoff-debug │ └── main.go ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── ORBOS │ │ └── orbctl │ │ └── orbctl.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── dashboards ├── ambassador │ ├── json │ │ ├── ambassador-envoy-global.json │ │ ├── ambassador-envoy-ingress.json │ │ └── ambassador-envoy-service.json │ └── kustomization.yaml ├── argocd │ ├── json │ │ └── argocd.json │ └── kustomization.yaml ├── boom │ ├── json │ │ └── boom.json │ └── kustomization.yaml ├── health │ ├── json │ │ ├── cluster-health.json │ │ ├── instance-health.json │ │ └── probes-health.json │ └── kustomization.yaml ├── kubelet │ ├── json │ │ └── kubelet.json │ └── kustomization.yaml ├── loggingoperator │ ├── json │ │ └── logging-dashboard-rev3.json │ └── kustomization.yaml ├── persistentvolumesusage │ ├── json │ │ └── persistentvolumesusage.json │ └── kustomization.yaml ├── prometheusnodeexporter │ ├── json │ │ ├── node-cluster-rsrc-use.json │ │ └── node-rsrc-use.json │ └── kustomization.yaml └── zitadel │ ├── json │ ├── health-details.json │ ├── health.json │ ├── replicas.json │ ├── runtime.json │ ├── sql.json │ ├── storage.json │ └── zitadel.json │ └── kustomization.yaml ├── docs ├── boom │ ├── boom.md │ ├── internal.md │ ├── labels.md │ ├── sso-examples.md │ └── yml │ │ ├── latest │ │ ├── Metadata │ │ │ └── Metadata.md │ │ ├── Toolset.md │ │ └── ToolsetSpec │ │ │ ├── APIGateway │ │ │ ├── APIGateway.md │ │ │ ├── AmbassadorService │ │ │ │ ├── AmbassadorService.md │ │ │ │ └── Port │ │ │ │ │ └── Port.md │ │ │ ├── Caching │ │ │ │ ├── Caching.md │ │ │ │ └── k8s │ │ │ │ │ └── Resources │ │ │ │ │ └── Resources.md │ │ │ ├── k8s │ │ │ │ ├── Affinity │ │ │ │ │ ├── Affinity.md │ │ │ │ │ ├── NodeAffinity │ │ │ │ │ │ ├── NodeAffinity.md │ │ │ │ │ │ ├── NodeSelector │ │ │ │ │ │ │ ├── NodeSelector.md │ │ │ │ │ │ │ └── NodeSelectorTerm │ │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ └── PreferredSchedulingTerm │ │ │ │ │ │ │ ├── NodeSelectorTerm │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ │ └── PreferredSchedulingTerm.md │ │ │ │ │ ├── PodAffinity │ │ │ │ │ │ ├── PodAffinity.md │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ │ └── PodAntiAffinity │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ ├── PodAntiAffinity.md │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── Apply │ │ │ └── Apply.md │ │ │ ├── Boom │ │ │ ├── Boom.md │ │ │ └── k8s │ │ │ │ ├── Resources │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ └── Tolerations.md │ │ │ ├── KubeMetricsExporter │ │ │ ├── KubeMetricsExporter.md │ │ │ └── k8s │ │ │ │ ├── Affinity │ │ │ │ ├── Affinity.md │ │ │ │ ├── NodeAffinity │ │ │ │ │ ├── NodeAffinity.md │ │ │ │ │ ├── NodeSelector │ │ │ │ │ │ ├── NodeSelector.md │ │ │ │ │ │ └── NodeSelectorTerm │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ └── PreferredSchedulingTerm │ │ │ │ │ │ ├── NodeSelectorTerm │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ └── PreferredSchedulingTerm.md │ │ │ │ ├── PodAffinity │ │ │ │ │ ├── PodAffinity.md │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ └── PodAntiAffinity │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ └── v1 │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ ├── PodAntiAffinity.md │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ └── v1 │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ ├── Resources │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ └── Tolerations.md │ │ │ ├── LogCollection │ │ │ ├── Component │ │ │ │ ├── Component.md │ │ │ │ └── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ ├── Fluentd │ │ │ │ ├── Fluentd.md │ │ │ │ ├── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ │ └── Tolerations.md │ │ │ │ └── storage │ │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ └── LogCollection.md │ │ │ ├── LogsPersisting │ │ │ ├── Logs │ │ │ │ └── Logs.md │ │ │ ├── LogsPersisting.md │ │ │ ├── k8s │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ └── storage │ │ │ │ └── Spec │ │ │ │ └── Spec.md │ │ │ ├── MetricCollection │ │ │ ├── MetricCollection.md │ │ │ └── k8s │ │ │ │ ├── Resources │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ └── Tolerations.md │ │ │ ├── MetricsPersisting │ │ │ ├── Metrics │ │ │ │ └── Metrics.md │ │ │ ├── MetricsPersisting.md │ │ │ ├── RemoteWrite │ │ │ │ ├── BasicAuth │ │ │ │ │ ├── BasicAuth.md │ │ │ │ │ └── SecretKeySelector │ │ │ │ │ │ └── SecretKeySelector.md │ │ │ │ ├── RelabelConfig │ │ │ │ │ └── RelabelConfig.md │ │ │ │ └── RemoteWrite.md │ │ │ ├── k8s │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ └── storage │ │ │ │ └── Spec │ │ │ │ └── Spec.md │ │ │ ├── MetricsServer │ │ │ └── MetricsServer.md │ │ │ ├── NodeMetricsExporter │ │ │ ├── NodeMetricsExporter.md │ │ │ └── k8s │ │ │ │ └── Resources │ │ │ │ └── Resources.md │ │ │ ├── SystemdMetricsExporter │ │ │ ├── SystemdMetricsExporter.md │ │ │ └── k8s │ │ │ │ └── Resources │ │ │ │ └── Resources.md │ │ │ ├── ToolsetSpec.md │ │ │ ├── monitoring │ │ │ └── Monitoring │ │ │ │ ├── Datasource │ │ │ │ └── Datasource.md │ │ │ │ ├── Monitoring.md │ │ │ │ ├── Provider │ │ │ │ └── Provider.md │ │ │ │ ├── admin │ │ │ │ └── Admin │ │ │ │ │ ├── Admin.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── auth │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ ├── Generic │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ ├── Github │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ ├── Gitlab │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Google │ │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── k8s │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ │ ├── network │ │ │ │ └── Network │ │ │ │ │ └── Network.md │ │ │ │ └── storage │ │ │ │ └── Spec │ │ │ │ └── Spec.md │ │ │ └── reconciling │ │ │ └── Reconciling │ │ │ ├── AdditionalParameters │ │ │ └── AdditionalParameters.md │ │ │ ├── CommonComponent │ │ │ ├── CommonComponent.md │ │ │ └── k8s │ │ │ │ └── Resources │ │ │ │ └── Resources.md │ │ │ ├── CustomImage │ │ │ ├── CustomImage.md │ │ │ └── GopassStore │ │ │ │ ├── GopassStore.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── Rbac │ │ │ └── Rbac.md │ │ │ ├── Reconciling.md │ │ │ ├── auth │ │ │ └── Auth │ │ │ │ ├── Auth.md │ │ │ │ ├── github │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ ├── Org │ │ │ │ │ │ └── Org.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ ├── gitlab │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ ├── google │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ └── oidc │ │ │ │ └── OIDC │ │ │ │ ├── Claim │ │ │ │ └── Claim.md │ │ │ │ ├── OIDC.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── k8s │ │ │ └── Tolerations │ │ │ │ └── Tolerations.md │ │ │ ├── network │ │ │ └── Network │ │ │ │ └── Network.md │ │ │ └── repository │ │ │ └── Repository │ │ │ ├── Repository.md │ │ │ └── secret │ │ │ ├── Existing │ │ │ └── Existing.md │ │ │ └── Secret │ │ │ └── Secret.md │ │ ├── v1beta1 │ │ ├── Metadata │ │ │ └── Metadata.md │ │ ├── Toolset.md │ │ └── ToolsetSpec │ │ │ ├── Ambassador │ │ │ ├── Ambassador.md │ │ │ ├── AmbassadorService │ │ │ │ ├── AmbassadorService.md │ │ │ │ └── Port │ │ │ │ │ └── Port.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── Apply │ │ │ └── Apply.md │ │ │ ├── KubeStateMetrics │ │ │ ├── KubeStateMetrics.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── LoggingOperator │ │ │ ├── LoggingOperator.md │ │ │ ├── storage │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── Loki │ │ │ ├── Logs │ │ │ │ └── Logs.md │ │ │ ├── Loki.md │ │ │ ├── storage │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── MetricsServer │ │ │ └── MetricsServer.md │ │ │ ├── Prometheus │ │ │ ├── Metrics │ │ │ │ └── Metrics.md │ │ │ ├── Prometheus.md │ │ │ ├── RemoteWrite │ │ │ │ ├── BasicAuth │ │ │ │ │ ├── BasicAuth.md │ │ │ │ │ └── SecretKeySelector │ │ │ │ │ │ └── SecretKeySelector.md │ │ │ │ ├── RelabelConfig │ │ │ │ │ └── RelabelConfig.md │ │ │ │ └── RemoteWrite.md │ │ │ ├── storage │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── PrometheusNodeExporter │ │ │ └── PrometheusNodeExporter.md │ │ │ ├── PrometheusOperator │ │ │ ├── PrometheusOperator.md │ │ │ └── toleration │ │ │ │ └── Toleration │ │ │ │ └── Toleration.md │ │ │ ├── PrometheusSystemdExporter │ │ │ └── PrometheusSystemdExporter.md │ │ │ ├── ToolsetSpec.md │ │ │ ├── argocd │ │ │ └── Argocd │ │ │ │ ├── Argocd.md │ │ │ │ ├── CustomImage │ │ │ │ ├── CustomImage.md │ │ │ │ └── GopassStore │ │ │ │ │ ├── GopassStore.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── Rbac │ │ │ │ └── Rbac.md │ │ │ │ ├── auth │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ ├── github │ │ │ │ │ └── Connector │ │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Config.md │ │ │ │ │ │ ├── Org │ │ │ │ │ │ │ └── Org.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ │ └── Secret │ │ │ │ │ │ │ └── Secret.md │ │ │ │ │ │ └── Connector.md │ │ │ │ │ ├── gitlab │ │ │ │ │ └── Connector │ │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Config.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ │ └── Secret │ │ │ │ │ │ │ └── Secret.md │ │ │ │ │ │ └── Connector.md │ │ │ │ │ ├── google │ │ │ │ │ └── Connector │ │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Config.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ │ └── Secret │ │ │ │ │ │ │ └── Secret.md │ │ │ │ │ │ └── Connector.md │ │ │ │ │ └── oidc │ │ │ │ │ └── OIDC │ │ │ │ │ ├── Claim │ │ │ │ │ └── Claim.md │ │ │ │ │ ├── OIDC.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── network │ │ │ │ └── Network │ │ │ │ │ └── Network.md │ │ │ │ └── repository │ │ │ │ └── Repository │ │ │ │ ├── Repository.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ └── grafana │ │ │ └── Grafana │ │ │ ├── Datasource │ │ │ └── Datasource.md │ │ │ ├── Grafana.md │ │ │ ├── Provider │ │ │ └── Provider.md │ │ │ ├── admin │ │ │ └── Admin │ │ │ │ ├── Admin.md │ │ │ │ └── secret │ │ │ │ ├── ExistingIDSecret │ │ │ │ └── ExistingIDSecret.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── auth │ │ │ └── Auth │ │ │ │ ├── Auth.md │ │ │ │ ├── Generic │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── Github │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── Gitlab │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ └── Google │ │ │ │ └── Auth │ │ │ │ ├── Auth.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── network │ │ │ └── Network │ │ │ │ └── Network.md │ │ │ └── storage │ │ │ └── Spec │ │ │ └── Spec.md │ │ └── v1beta2 │ │ ├── Toolset.md │ │ ├── ToolsetSpec │ │ ├── LogCollection │ │ │ ├── LogCollection.md │ │ │ ├── k8s │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ └── storage │ │ │ │ └── Spec │ │ │ │ └── Spec.md │ │ ├── ToolsetSpec.md │ │ ├── latest │ │ │ ├── APIGateway │ │ │ │ ├── APIGateway.md │ │ │ │ ├── AmbassadorService │ │ │ │ │ ├── AmbassadorService.md │ │ │ │ │ └── Port │ │ │ │ │ │ └── Port.md │ │ │ │ ├── Caching │ │ │ │ │ ├── Caching.md │ │ │ │ │ └── k8s │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Resources.md │ │ │ │ ├── k8s │ │ │ │ │ ├── Affinity │ │ │ │ │ │ ├── Affinity.md │ │ │ │ │ │ ├── NodeAffinity │ │ │ │ │ │ │ ├── NodeAffinity.md │ │ │ │ │ │ │ ├── NodeSelector │ │ │ │ │ │ │ │ ├── NodeSelector.md │ │ │ │ │ │ │ │ └── NodeSelectorTerm │ │ │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ │ └── PreferredSchedulingTerm │ │ │ │ │ │ │ │ ├── NodeSelectorTerm │ │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ │ │ └── PreferredSchedulingTerm.md │ │ │ │ │ │ ├── PodAffinity │ │ │ │ │ │ │ ├── PodAffinity.md │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ │ │ └── PodAntiAffinity │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ ├── PodAntiAffinity.md │ │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ │ └── Tolerations.md │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ ├── Apply │ │ │ │ └── Apply.md │ │ │ ├── Boom │ │ │ │ ├── Boom.md │ │ │ │ └── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ ├── KubeMetricsExporter │ │ │ │ ├── KubeMetricsExporter.md │ │ │ │ └── k8s │ │ │ │ │ ├── Affinity │ │ │ │ │ ├── Affinity.md │ │ │ │ │ ├── NodeAffinity │ │ │ │ │ │ ├── NodeAffinity.md │ │ │ │ │ │ ├── NodeSelector │ │ │ │ │ │ │ ├── NodeSelector.md │ │ │ │ │ │ │ └── NodeSelectorTerm │ │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ └── PreferredSchedulingTerm │ │ │ │ │ │ │ ├── NodeSelectorTerm │ │ │ │ │ │ │ ├── NodeSelectorRequirement │ │ │ │ │ │ │ │ └── NodeSelectorRequirement.md │ │ │ │ │ │ │ └── NodeSelectorTerm.md │ │ │ │ │ │ │ └── PreferredSchedulingTerm.md │ │ │ │ │ ├── PodAffinity │ │ │ │ │ │ ├── PodAffinity.md │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ │ └── PodAntiAffinity │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ ├── PodAntiAffinity.md │ │ │ │ │ │ └── WeightedPodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm │ │ │ │ │ │ ├── PodAffinityTerm.md │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── LabelSelector │ │ │ │ │ │ │ ├── LabelSelector.md │ │ │ │ │ │ │ └── LabelSelectorRequirement │ │ │ │ │ │ │ └── LabelSelectorRequirement.md │ │ │ │ │ │ └── WeightedPodAffinityTerm.md │ │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ ├── LogsPersisting │ │ │ │ ├── Logs │ │ │ │ │ └── Logs.md │ │ │ │ ├── LogsPersisting.md │ │ │ │ ├── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ │ └── Tolerations.md │ │ │ │ └── storage │ │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ ├── MetricCollection │ │ │ │ ├── MetricCollection.md │ │ │ │ └── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ ├── MetricsPersisting │ │ │ │ ├── Metrics │ │ │ │ │ └── Metrics.md │ │ │ │ ├── MetricsPersisting.md │ │ │ │ ├── RemoteWrite │ │ │ │ │ ├── BasicAuth │ │ │ │ │ │ ├── BasicAuth.md │ │ │ │ │ │ └── SecretKeySelector │ │ │ │ │ │ │ └── SecretKeySelector.md │ │ │ │ │ ├── RelabelConfig │ │ │ │ │ │ └── RelabelConfig.md │ │ │ │ │ └── RemoteWrite.md │ │ │ │ ├── k8s │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Resources.md │ │ │ │ │ └── Tolerations │ │ │ │ │ │ └── Tolerations.md │ │ │ │ └── storage │ │ │ │ │ └── Spec │ │ │ │ │ └── Spec.md │ │ │ ├── MetricsServer │ │ │ │ └── MetricsServer.md │ │ │ ├── NodeMetricsExporter │ │ │ │ ├── NodeMetricsExporter.md │ │ │ │ └── k8s │ │ │ │ │ └── Resources │ │ │ │ │ └── Resources.md │ │ │ └── SystemdMetricsExporter │ │ │ │ ├── SystemdMetricsExporter.md │ │ │ │ └── k8s │ │ │ │ └── Resources │ │ │ │ └── Resources.md │ │ ├── monitoring │ │ │ └── Monitoring │ │ │ │ ├── Datasource │ │ │ │ └── Datasource.md │ │ │ │ ├── Monitoring.md │ │ │ │ ├── Provider │ │ │ │ └── Provider.md │ │ │ │ ├── admin │ │ │ │ └── Admin │ │ │ │ │ ├── Admin.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── auth │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ ├── Generic │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ ├── Github │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ ├── Gitlab │ │ │ │ │ └── Auth │ │ │ │ │ │ ├── Auth.md │ │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Google │ │ │ │ │ └── Auth │ │ │ │ │ ├── Auth.md │ │ │ │ │ └── secret │ │ │ │ │ ├── Existing │ │ │ │ │ └── Existing.md │ │ │ │ │ └── Secret │ │ │ │ │ └── Secret.md │ │ │ │ ├── k8s │ │ │ │ ├── Resources │ │ │ │ │ └── Resources.md │ │ │ │ └── Tolerations │ │ │ │ │ └── Tolerations.md │ │ │ │ ├── network │ │ │ │ └── Network │ │ │ │ │ └── Network.md │ │ │ │ └── storage │ │ │ │ └── Spec │ │ │ │ └── Spec.md │ │ └── reconciling │ │ │ └── Reconciling │ │ │ ├── AdditionalParameters │ │ │ └── AdditionalParameters.md │ │ │ ├── CommonComponent │ │ │ ├── CommonComponent.md │ │ │ └── k8s │ │ │ │ └── Resources │ │ │ │ └── Resources.md │ │ │ ├── CustomImage │ │ │ ├── CustomImage.md │ │ │ └── GopassStore │ │ │ │ ├── GopassStore.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── Rbac │ │ │ └── Rbac.md │ │ │ ├── Reconciling.md │ │ │ ├── auth │ │ │ └── Auth │ │ │ │ ├── Auth.md │ │ │ │ ├── github │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ ├── Org │ │ │ │ │ │ └── Org.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ ├── gitlab │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ ├── google │ │ │ │ └── Connector │ │ │ │ │ ├── Config │ │ │ │ │ ├── Config.md │ │ │ │ │ └── secret │ │ │ │ │ │ ├── Existing │ │ │ │ │ │ └── Existing.md │ │ │ │ │ │ └── Secret │ │ │ │ │ │ └── Secret.md │ │ │ │ │ └── Connector.md │ │ │ │ └── oidc │ │ │ │ └── OIDC │ │ │ │ ├── Claim │ │ │ │ └── Claim.md │ │ │ │ ├── OIDC.md │ │ │ │ └── secret │ │ │ │ ├── Existing │ │ │ │ └── Existing.md │ │ │ │ └── Secret │ │ │ │ └── Secret.md │ │ │ ├── k8s │ │ │ └── Tolerations │ │ │ │ └── Tolerations.md │ │ │ ├── network │ │ │ └── Network │ │ │ │ └── Network.md │ │ │ └── repository │ │ │ └── Repository │ │ │ ├── Repository.md │ │ │ └── secret │ │ │ ├── Existing │ │ │ └── Existing.md │ │ │ └── Secret │ │ │ └── Secret.md │ │ └── latest │ │ └── Metadata │ │ └── Metadata.md ├── explained.md ├── img │ ├── orbos-explained-flowchart.svg │ └── orbos-logo-oneline-lightdesign@2x.png └── orbiter │ ├── clusters.md │ ├── contribute.md │ ├── develop.md │ ├── gce.md │ ├── kind.md │ ├── orbiter.md │ ├── os-requirements.md │ ├── providers.md │ ├── sequencediagram.org.svg │ ├── sequencediagram.org.txt │ ├── static.md │ ├── terminology.md │ └── updates.md ├── examples ├── boom │ └── boom.yml └── orbiter │ ├── gce │ └── orbiter.yml │ └── static │ ├── kvm │ ├── kickstart.cfg │ └── machine.sh │ ├── orbiter.yml │ └── virtualbox │ ├── downloadImage.sh │ ├── exampleClusterPostSteps.sh │ ├── exampleClusterStart.sh │ ├── ks.cfg │ ├── machine.sh │ └── poststeps.sh ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── internal ├── api │ ├── boom │ │ ├── api.go │ │ ├── v1 │ │ │ ├── boom.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── boom.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta2 │ │ │ ├── boom.go │ │ │ └── zz_generated.deepcopy.go │ └── networking │ │ ├── api.go │ │ └── v1 │ │ ├── networking.go │ │ └── zz_generated.deepcopy.go ├── ctrlcrd │ ├── boom │ │ └── boom.go │ ├── controller.go │ └── networking │ │ └── networking.go ├── ctrlgitops │ ├── boom.go │ ├── common.go │ ├── networking.go │ └── orbiter.go ├── executables │ ├── .gitignore │ ├── build.go │ ├── builder_test.go │ ├── derived.gen.go │ ├── download.go │ ├── runtime.go │ └── targz.go ├── helpers │ ├── check.go │ ├── errors.go │ ├── errors_test.go │ ├── fanout.go │ ├── path.go │ ├── randstring.go │ ├── randstring_test.go │ ├── retry.go │ └── string_keyed_map.go ├── operator │ ├── boom │ │ ├── api │ │ │ ├── api.go │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── latest │ │ │ │ ├── apigateway.go │ │ │ │ ├── apply.go │ │ │ │ ├── funcs.go │ │ │ │ ├── kubemetricsexporter.go │ │ │ │ ├── logcollection.go │ │ │ │ ├── logspersisting.go │ │ │ │ ├── metriccollection.go │ │ │ │ ├── metrics-server.go │ │ │ │ ├── metricspersisting.go │ │ │ │ ├── monitoring │ │ │ │ │ ├── admin │ │ │ │ │ │ └── admin.go │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── Generic │ │ │ │ │ │ │ └── generic.go │ │ │ │ │ │ ├── Github │ │ │ │ │ │ │ └── github.go │ │ │ │ │ │ ├── Gitlab │ │ │ │ │ │ │ └── gitlab.go │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ └── google.go │ │ │ │ │ │ └── auth.go │ │ │ │ │ └── monitoring.go │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ ├── nodemetricsexporter.go │ │ │ │ ├── reconciling │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ └── github.go │ │ │ │ │ │ ├── gitlab │ │ │ │ │ │ │ └── gitlab.go │ │ │ │ │ │ ├── google │ │ │ │ │ │ │ └── google.go │ │ │ │ │ │ └── oidc │ │ │ │ │ │ │ └── oidc.go │ │ │ │ │ ├── reconciling.go │ │ │ │ │ └── repository │ │ │ │ │ │ └── repository.go │ │ │ │ ├── storage │ │ │ │ │ └── storage.go │ │ │ │ ├── systemdmetricsexporter.go │ │ │ │ └── toolset_types.go │ │ │ ├── migrate │ │ │ │ ├── argocd │ │ │ │ │ └── v1beta1tov1beta2.go │ │ │ │ ├── grafana │ │ │ │ │ └── v1beta1tov1beta2.go │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ ├── storage │ │ │ │ │ └── storage.go │ │ │ │ ├── v1beta1tov1beta2.go │ │ │ │ └── v1beta2tov1.go │ │ │ ├── v1beta1 │ │ │ │ ├── ambassador.go │ │ │ │ ├── apply.go │ │ │ │ ├── argocd │ │ │ │ │ ├── argocd.go │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ └── github.go │ │ │ │ │ │ ├── gitlab │ │ │ │ │ │ │ └── gitlab.go │ │ │ │ │ │ ├── google │ │ │ │ │ │ │ └── google.go │ │ │ │ │ │ └── oidc │ │ │ │ │ │ │ └── oidc.go │ │ │ │ │ └── repository │ │ │ │ │ │ └── repository.go │ │ │ │ ├── funcs.go │ │ │ │ ├── grafana │ │ │ │ │ ├── admin │ │ │ │ │ │ └── admin.go │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── Generic │ │ │ │ │ │ │ └── generic.go │ │ │ │ │ │ ├── Github │ │ │ │ │ │ │ └── github.go │ │ │ │ │ │ ├── Gitlab │ │ │ │ │ │ │ └── gitlab.go │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ └── google.go │ │ │ │ │ │ └── auth.go │ │ │ │ │ └── grafana.go │ │ │ │ ├── kube-state-metrics.go │ │ │ │ ├── logging-operator.go │ │ │ │ ├── loki.go │ │ │ │ ├── metrics-server.go │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ ├── prometheus-node-exporter.go │ │ │ │ ├── prometheus-operator.go │ │ │ │ ├── prometheus-systemd-exporter.go │ │ │ │ ├── prometheus.go │ │ │ │ ├── storage │ │ │ │ │ └── storage.go │ │ │ │ ├── toleration │ │ │ │ │ └── toleration.go │ │ │ │ └── toolset_types.go │ │ │ └── v1beta2 │ │ │ │ ├── funcs.go │ │ │ │ ├── logcollection.go │ │ │ │ └── toolset_types.go │ │ ├── app │ │ │ └── app.go │ │ ├── application │ │ │ ├── application.go │ │ │ ├── applications │ │ │ │ ├── apigateway │ │ │ │ │ ├── ambassador.go │ │ │ │ │ ├── crds │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ └── mapping.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── apiserver │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── boom │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── labels.go │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── database │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── labels.go │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── kubemetricsexporter │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── application.go │ │ │ │ │ ├── kubestatemetrics.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── logcollection │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ ├── logging.go │ │ │ │ │ │ └── output.go │ │ │ │ │ ├── loggingoperator.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── logspersisting │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── loki.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── metriccollection │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ │ └── prometheusoperator.go │ │ │ │ ├── metricspersisting │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ └── scrapeconfig.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ ├── rules.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ │ ├── prometheus.go │ │ │ │ │ └── servicemonitor │ │ │ │ │ │ ├── app.go │ │ │ │ │ │ └── values.go │ │ │ │ ├── metricsserver │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ └── metricsserver.go │ │ │ │ ├── monitoring │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── generic_oauth.go │ │ │ │ │ │ ├── github.go │ │ │ │ │ │ ├── gitlab.go │ │ │ │ │ │ └── google.go │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ └── dashboards.go │ │ │ │ │ ├── grafana.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── application.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ └── network │ │ │ │ │ │ └── network.go │ │ │ │ ├── networking │ │ │ │ │ ├── flow.go │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── nodemetricsexporter │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ │ └── prometheusnodeexporter.go │ │ │ │ ├── orbiter │ │ │ │ │ ├── flow.go │ │ │ │ │ └── servicemonitor.go │ │ │ │ ├── reconciling │ │ │ │ │ ├── argocd.go │ │ │ │ │ ├── config │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── github.go │ │ │ │ │ │ │ ├── gitlab.go │ │ │ │ │ │ │ ├── google.go │ │ │ │ │ │ │ └── oidc.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── credential │ │ │ │ │ │ │ └── credential.go │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ └── plugin.go │ │ │ │ │ │ └── repository │ │ │ │ │ │ │ └── repository.go │ │ │ │ │ ├── customimage │ │ │ │ │ │ └── customimage.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── helm │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── values.go │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ │ └── network │ │ │ │ │ │ └── network.go │ │ │ │ ├── systemdmetricsexporter │ │ │ │ │ ├── info │ │ │ │ │ │ └── info.go │ │ │ │ │ ├── logs │ │ │ │ │ │ └── logs.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── servicemonitor.go │ │ │ │ │ ├── prometheussystemdexporter.go │ │ │ │ │ ├── yaml.go │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ └── types.go │ │ │ │ └── zitadel │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── labels.go │ │ │ │ │ └── servicemonitor.go │ │ │ ├── generate.go │ │ │ ├── mock │ │ │ │ ├── application.mock.go │ │ │ │ └── applications.go │ │ │ └── resources │ │ │ │ ├── common.go │ │ │ │ ├── secret.go │ │ │ │ └── service.go │ │ ├── bundle │ │ │ ├── apply.go │ │ │ ├── bundle.go │ │ │ ├── bundle_test.go │ │ │ ├── bundles │ │ │ │ └── bundles.go │ │ │ ├── config │ │ │ │ └── config.go │ │ │ └── delete.go │ │ ├── cmd │ │ │ └── reconcile.go │ │ ├── crd │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── crd.go │ │ │ └── crd_test.go │ │ ├── current │ │ │ └── current.go │ │ ├── desired │ │ │ └── desired.go │ │ ├── gitcrd │ │ │ ├── config │ │ │ │ └── config.go │ │ │ └── gitcrd.go │ │ ├── labels │ │ │ └── labels.go │ │ ├── metrics │ │ │ ├── currentstate.go │ │ │ ├── format.go │ │ │ ├── git.go │ │ │ ├── metrics.go │ │ │ └── reconciling.go │ │ ├── name │ │ │ └── name.go │ │ ├── takeoff.go │ │ └── templator │ │ │ ├── helm │ │ │ ├── chart │ │ │ │ ├── chart.go │ │ │ │ └── fetch │ │ │ │ │ ├── fetch.go │ │ │ │ │ └── index.go │ │ │ ├── helm.go │ │ │ ├── helmcommand │ │ │ │ ├── fetch.go │ │ │ │ ├── helm.go │ │ │ │ └── template.go │ │ │ ├── mutate.go │ │ │ ├── mutatevalues.go │ │ │ ├── presteps.go │ │ │ ├── results.go │ │ │ └── template.go │ │ │ ├── helper │ │ │ └── templator.go │ │ │ ├── templator.go │ │ │ └── yaml │ │ │ ├── template.go │ │ │ └── yaml.go │ ├── common │ │ ├── derived.gen.go │ │ ├── firewall.go │ │ ├── networking.go │ │ ├── nodeagent-model.go │ │ ├── software.go │ │ └── yaml.go │ ├── core │ │ └── adapt.go │ ├── networking │ │ ├── kinds │ │ │ ├── networking │ │ │ │ ├── core │ │ │ │ │ └── current.go │ │ │ │ ├── legacycf │ │ │ │ │ ├── adapt.go │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.go │ │ │ │ │ │ ├── dnsrecords.go │ │ │ │ │ │ ├── filters.go │ │ │ │ │ │ ├── firewallrules.go │ │ │ │ │ │ └── originca.go │ │ │ │ │ ├── cloudflare │ │ │ │ │ │ ├── certificate │ │ │ │ │ │ │ └── certificate.go │ │ │ │ │ │ ├── cloudflare.go │ │ │ │ │ │ ├── dnsrecord.go │ │ │ │ │ │ ├── expression │ │ │ │ │ │ │ └── expression.go │ │ │ │ │ │ ├── expressions.go │ │ │ │ │ │ ├── filters.go │ │ │ │ │ │ ├── firewallrules.go │ │ │ │ │ │ └── originca.go │ │ │ │ │ ├── config │ │ │ │ │ │ ├── external.go │ │ │ │ │ │ └── internal.go │ │ │ │ │ ├── desired.go │ │ │ │ │ ├── legacyadapter.go │ │ │ │ │ └── secrets.go │ │ │ │ └── networking.go │ │ │ └── orb │ │ │ │ ├── adapt.go │ │ │ │ ├── desired.go │ │ │ │ ├── labels.go │ │ │ │ ├── reconcile.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── takeoff.go │ ├── nodeagent │ │ ├── dep │ │ │ ├── conv │ │ │ │ └── converter.go │ │ │ ├── cri │ │ │ │ ├── dep.go │ │ │ │ └── ensure.go │ │ │ ├── health │ │ │ │ ├── dep.go │ │ │ │ └── dep_test.go │ │ │ ├── hostname │ │ │ │ └── dep.go │ │ │ ├── iteratefile.go │ │ │ ├── iteratefile_test.go │ │ │ ├── k8s │ │ │ │ ├── common.go │ │ │ │ ├── kubeadm │ │ │ │ │ └── dep.go │ │ │ │ ├── kubectl │ │ │ │ │ └── dep.go │ │ │ │ └── kubelet │ │ │ │ │ └── dep.go │ │ │ ├── keepalived │ │ │ │ └── dep.go │ │ │ ├── kernel │ │ │ │ └── dep.go │ │ │ ├── middleware │ │ │ │ ├── dep.go │ │ │ │ └── logging.go │ │ │ ├── nginx │ │ │ │ ├── dep.go │ │ │ │ └── dep_test.go │ │ │ ├── package-manager-addrepo.go │ │ │ ├── package-manager-init.go │ │ │ ├── package-manager-install.go │ │ │ ├── package-manager-installed.go │ │ │ ├── package-manager-remove.go │ │ │ ├── package-manager.go │ │ │ ├── packages_string.go │ │ │ ├── selinux │ │ │ │ └── selinux.go │ │ │ ├── sshd │ │ │ │ └── dep.go │ │ │ ├── swap │ │ │ │ ├── dep.go │ │ │ │ └── dep_test.go │ │ │ ├── sysctl │ │ │ │ └── dep.go │ │ │ ├── system.go │ │ │ └── systemd.go │ │ ├── derived.gen.go │ │ ├── ensure.go │ │ ├── firewall │ │ │ ├── centos │ │ │ │ ├── centOS.go │ │ │ │ ├── current.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── masquerade.go │ │ │ │ ├── ports.go │ │ │ │ ├── sources.go │ │ │ │ └── target.go │ │ │ ├── firewall.go │ │ │ └── noop.go │ │ ├── iterator.go │ │ ├── networking │ │ │ ├── centos │ │ │ │ └── centOS.go │ │ │ ├── networking.go │ │ │ └── noop.go │ │ └── rebooter │ │ │ ├── func.go │ │ │ ├── mock │ │ │ ├── exit │ │ │ │ └── reboot.go │ │ │ └── noop │ │ │ │ └── reboot.go │ │ │ └── node │ │ │ └── reboot.go │ └── orbiter │ │ ├── .gitignore │ │ ├── adapt.go │ │ ├── config.go │ │ ├── destroy.go │ │ ├── kinds │ │ ├── clusters │ │ │ ├── clusters.go │ │ │ ├── core │ │ │ │ └── infra │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ └── provider.go │ │ │ └── kubernetes │ │ │ │ ├── adapt.go │ │ │ │ ├── connect.go │ │ │ │ ├── current.go │ │ │ │ ├── desired.go │ │ │ │ ├── destroy.go │ │ │ │ ├── downscale.go │ │ │ │ ├── ensure.go │ │ │ │ ├── firewall.go │ │ │ │ ├── initialize.go │ │ │ │ ├── initialize_test.go │ │ │ │ ├── join.go │ │ │ │ ├── machines.go │ │ │ │ ├── networks │ │ │ │ ├── calico.yaml │ │ │ │ └── cilium.yaml │ │ │ │ ├── nodes.go │ │ │ │ ├── plugins.go │ │ │ │ ├── pool.go │ │ │ │ ├── query.go │ │ │ │ ├── secrets.go │ │ │ │ ├── software.go │ │ │ │ ├── upgrade.go │ │ │ │ └── upscale.go │ │ ├── loadbalancers │ │ │ ├── dynamic │ │ │ │ ├── adapt.go │ │ │ │ ├── current.go │ │ │ │ ├── derived.gen.go │ │ │ │ ├── desired.go │ │ │ │ ├── desired_test.go │ │ │ │ ├── desired_v0.go │ │ │ │ ├── desired_v1.go │ │ │ │ └── wrap │ │ │ │ │ ├── machinelb.go │ │ │ │ │ └── machinesservicelb.go │ │ │ └── loadbalancers.go │ │ ├── orb │ │ │ ├── adapt.go │ │ │ ├── current.go │ │ │ ├── desired.go │ │ │ └── machines.go │ │ └── providers │ │ │ ├── core │ │ │ ├── firewall.go │ │ │ ├── list.go │ │ │ ├── nodeagent.go │ │ │ └── pool.go │ │ │ ├── cs │ │ │ ├── adapt.go │ │ │ ├── cloudinit.go │ │ │ ├── context.go │ │ │ ├── current.go │ │ │ ├── desired.go │ │ │ ├── destroy.go │ │ │ ├── ensure.go │ │ │ ├── floatingips.go │ │ │ ├── ingress.go │ │ │ ├── machine.go │ │ │ ├── machinesservice.go │ │ │ ├── machinesservice_test.go │ │ │ ├── pool.go │ │ │ ├── secrets.go │ │ │ └── servers.go │ │ │ ├── ec2 │ │ │ └── adapter │ │ │ │ └── api │ │ │ │ └── test.go │ │ │ ├── gce │ │ │ ├── adapt.go │ │ │ ├── addresses.go │ │ │ ├── cloudnat.go │ │ │ ├── computesservice.go │ │ │ ├── computesservice_test.go │ │ │ ├── context.go │ │ │ ├── current.go │ │ │ ├── desired.go │ │ │ ├── destroy.go │ │ │ ├── ensure.go │ │ │ ├── firewall.go │ │ │ ├── forwardingrules.go │ │ │ ├── gceapi.go │ │ │ ├── gcemachine.go │ │ │ ├── gcloud.go │ │ │ ├── healthchecks.go │ │ │ ├── identityawareproxy.go │ │ │ ├── kubernetes_gce.yaml │ │ │ ├── machine.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── pool.go │ │ │ ├── secrets.go │ │ │ └── targetpools.go │ │ │ ├── providers.go │ │ │ ├── ssh │ │ │ └── machine.go │ │ │ └── static │ │ │ ├── adapt.go │ │ │ ├── computesservice.go │ │ │ ├── current.go │ │ │ ├── desired.go │ │ │ ├── desired_test.go │ │ │ ├── destroy.go │ │ │ ├── ensure.go │ │ │ ├── hostname.go │ │ │ ├── machine.go │ │ │ ├── pool.go │ │ │ └── secrets.go │ │ ├── takeoff.go │ │ └── types.go ├── push │ └── push.go ├── secret │ └── operators │ │ └── operators.go ├── ssh │ └── ssh.go ├── stores │ └── github │ │ └── github.go └── utils │ ├── clientgo │ ├── clientgo.go │ ├── resource.go │ └── secret.go │ ├── helper │ ├── command.go │ ├── command_test.go │ ├── files.go │ ├── git.go │ ├── map.go │ ├── path.go │ ├── path_test.go │ ├── pointers.go │ ├── yaml.go │ └── yaml_test.go │ ├── kubectl │ ├── apply.go │ ├── delete.go │ ├── kubectl.go │ ├── label.go │ └── version.go │ ├── kustomize │ └── kustomize.go │ ├── random │ └── random.go │ └── yaml │ ├── testfiles │ └── struct.yaml │ ├── yaml.go │ └── yaml_test.go ├── mntr ├── aggregate.go ├── ingestion.go ├── monitor.go ├── normalize.go ├── sprint.go └── usecases.go ├── package.json ├── pkg ├── cfg │ └── configure.go ├── git │ └── client.go ├── helper │ ├── nilinterface.go │ ├── nilinterface_test.go │ └── rand.go ├── kubernetes │ ├── artifacts.go │ ├── boom.go │ ├── cli │ │ └── client.go │ ├── client.go │ ├── crds.go │ ├── drainreason_string.go │ ├── generate.go │ ├── k8s │ │ ├── affinity.go │ │ ├── resources.go │ │ ├── toleration.go │ │ └── yaml.go │ ├── mock │ │ └── client.mock.go │ ├── networking.go │ ├── orbiter.go │ └── resources │ │ ├── adaptertesting │ │ ├── expect.go │ │ └── run.go │ │ ├── ambassador │ │ ├── host │ │ │ ├── adapt.go │ │ │ └── adapt_test.go │ │ ├── mapping │ │ │ ├── adapt.go │ │ │ └── adapt_test.go │ │ └── module │ │ │ └── adapt.go │ │ ├── clusterrole │ │ └── adapt.go │ │ ├── clusterrolebinding │ │ └── adapt.go │ │ ├── configmap │ │ └── adapt.go │ │ ├── cronjob │ │ └── adapt.go │ │ ├── deployment │ │ └── adapt.go │ │ ├── funcs.go │ │ ├── ingress │ │ └── adapt.go │ │ ├── job │ │ └── adapt.go │ │ ├── namespace │ │ └── adapt.go │ │ ├── pdb │ │ └── adapt.go │ │ ├── role │ │ └── adapt.go │ │ ├── rolebinding │ │ └── adapt.go │ │ ├── secret │ │ └── adapt.go │ │ ├── service │ │ └── service.go │ │ ├── serviceaccount │ │ └── serviceaccount.go │ │ └── statefulset │ │ └── adapt.go ├── labels │ ├── api.go │ ├── api_test.go │ ├── common_test.go │ ├── component.go │ ├── component_test.go │ ├── labels.go │ ├── mocklabels │ │ ├── mock.go │ │ └── mock_test.go │ ├── name.go │ ├── name_test.go │ ├── operator.go │ ├── operator_test.go │ ├── selectable.go │ ├── selectable_test.go │ ├── selector.go │ └── selector_test.go ├── orb │ └── orb.go ├── secret │ ├── read │ │ └── secret.go │ ├── rwsecret.go │ └── secret.go ├── tree │ ├── tree.go │ └── tree_test.go └── treelabels │ └── api.go ├── scripts ├── add_orbiter_user.sh ├── boom-debug.sh ├── boom-init.sh ├── boom.sh ├── build-debug-bins.sh ├── cs_get_pprof_profile_from_na.sh ├── debug-na.sh ├── debug-remote-na.sh ├── develop-na.sh ├── e2e-debug.sh ├── e2e.sh ├── gce_get_pprof_profile_from_na.sh ├── generate.sh ├── generateCrd.sh ├── grafana-cloud-logs.yml.sh ├── grafana-cloud-metrics.yml.sh ├── networking-debug.sh ├── orbctl-debug.sh ├── orbctl.sh ├── releases-dev.sh ├── remove_root_access.sh ├── stop-na.sh └── switch_to_orbiter_user.sh ├── skaffold.yaml └── skaffold ├── boom-deployment.yml ├── boom-service.yml ├── build.sh ├── orbiter-deployment.yml ├── orbiter-service.yml └── secrets.yaml.sh /.codecov/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.codecov/codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dev-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.github/workflows/dev-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/.releaserc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelog.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "disableEmoji": true 3 | }; 4 | -------------------------------------------------------------------------------- /cmd/chore/boom-debug/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/boom-debug/main.go -------------------------------------------------------------------------------- /cmd/chore/dev/executables/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/dev/executables/main.go -------------------------------------------------------------------------------- /cmd/chore/dev/orbctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/dev/orbctl/main.go -------------------------------------------------------------------------------- /cmd/chore/e2e/.gitignore: -------------------------------------------------------------------------------- 1 | ./artifacts 2 | -------------------------------------------------------------------------------- /cmd/chore/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/README.md -------------------------------------------------------------------------------- /cmd/chore/e2e/run/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/bootstrap.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/command.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/condition.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/desire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/desire.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/destroy.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/downscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/downscale.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/ensured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/ensured.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/github.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/graphite.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/kubectl.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/logging.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/main.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/node.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/orbctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/orbctl.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/patch.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/progress.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/reboot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/reboot.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/replace.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/run.go -------------------------------------------------------------------------------- /cmd/chore/e2e/run/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/run/upgrade.go -------------------------------------------------------------------------------- /cmd/chore/e2e/trigger/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/e2e/trigger/main.go -------------------------------------------------------------------------------- /cmd/chore/gen-charts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/gen-charts/main.go -------------------------------------------------------------------------------- /cmd/chore/gen-executables/derived.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/gen-executables/derived.gen.go -------------------------------------------------------------------------------- /cmd/chore/gen-executables/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/gen-executables/main.go -------------------------------------------------------------------------------- /cmd/chore/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/chore/helpers.go -------------------------------------------------------------------------------- /cmd/gen-crds/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/gen-crds/main.go -------------------------------------------------------------------------------- /cmd/health/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/health/main.go -------------------------------------------------------------------------------- /cmd/networking-debug/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/networking-debug/main.go -------------------------------------------------------------------------------- /cmd/nodeagent/.gitignore: -------------------------------------------------------------------------------- 1 | pproc.go -------------------------------------------------------------------------------- /cmd/nodeagent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/nodeagent/main.go -------------------------------------------------------------------------------- /cmd/orbctl/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/api.go -------------------------------------------------------------------------------- /cmd/orbctl/cmds/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/cmds/deploy.go -------------------------------------------------------------------------------- /cmd/orbctl/cmds/takeoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/cmds/takeoff.go -------------------------------------------------------------------------------- /cmd/orbctl/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/configure.go -------------------------------------------------------------------------------- /cmd/orbctl/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/edit.go -------------------------------------------------------------------------------- /cmd/orbctl/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/exec.go -------------------------------------------------------------------------------- /cmd/orbctl/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/file.go -------------------------------------------------------------------------------- /cmd/orbctl/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/list.go -------------------------------------------------------------------------------- /cmd/orbctl/machines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/machines.go -------------------------------------------------------------------------------- /cmd/orbctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/main.go -------------------------------------------------------------------------------- /cmd/orbctl/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/node.go -------------------------------------------------------------------------------- /cmd/orbctl/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/patch.go -------------------------------------------------------------------------------- /cmd/orbctl/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/print.go -------------------------------------------------------------------------------- /cmd/orbctl/readsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/readsecret.go -------------------------------------------------------------------------------- /cmd/orbctl/reboot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/reboot.go -------------------------------------------------------------------------------- /cmd/orbctl/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/replace.go -------------------------------------------------------------------------------- /cmd/orbctl/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/repo.go -------------------------------------------------------------------------------- /cmd/orbctl/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/root.go -------------------------------------------------------------------------------- /cmd/orbctl/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/start.go -------------------------------------------------------------------------------- /cmd/orbctl/takeoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/takeoff.go -------------------------------------------------------------------------------- /cmd/orbctl/teardown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/teardown.go -------------------------------------------------------------------------------- /cmd/orbctl/writesecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/orbctl/writesecret.go -------------------------------------------------------------------------------- /cmd/takeoff-debug/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cmd/takeoff-debug/main.go -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/ORBOS/orbctl/orbctl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress/integration/ORBOS/orbctl/orbctl.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /dashboards/ambassador/json/ambassador-envoy-global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/ambassador/json/ambassador-envoy-global.json -------------------------------------------------------------------------------- /dashboards/ambassador/json/ambassador-envoy-ingress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/ambassador/json/ambassador-envoy-ingress.json -------------------------------------------------------------------------------- /dashboards/ambassador/json/ambassador-envoy-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/ambassador/json/ambassador-envoy-service.json -------------------------------------------------------------------------------- /dashboards/ambassador/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/ambassador/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/argocd/json/argocd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/argocd/json/argocd.json -------------------------------------------------------------------------------- /dashboards/argocd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/argocd/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/boom/json/boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/boom/json/boom.json -------------------------------------------------------------------------------- /dashboards/boom/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/boom/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/health/json/cluster-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/health/json/cluster-health.json -------------------------------------------------------------------------------- /dashboards/health/json/instance-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/health/json/instance-health.json -------------------------------------------------------------------------------- /dashboards/health/json/probes-health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/health/json/probes-health.json -------------------------------------------------------------------------------- /dashboards/health/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/health/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/kubelet/json/kubelet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/kubelet/json/kubelet.json -------------------------------------------------------------------------------- /dashboards/kubelet/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/kubelet/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/loggingoperator/json/logging-dashboard-rev3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/loggingoperator/json/logging-dashboard-rev3.json -------------------------------------------------------------------------------- /dashboards/loggingoperator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/loggingoperator/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/persistentvolumesusage/json/persistentvolumesusage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/persistentvolumesusage/json/persistentvolumesusage.json -------------------------------------------------------------------------------- /dashboards/persistentvolumesusage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/persistentvolumesusage/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/prometheusnodeexporter/json/node-cluster-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/prometheusnodeexporter/json/node-cluster-rsrc-use.json -------------------------------------------------------------------------------- /dashboards/prometheusnodeexporter/json/node-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/prometheusnodeexporter/json/node-rsrc-use.json -------------------------------------------------------------------------------- /dashboards/prometheusnodeexporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/prometheusnodeexporter/kustomization.yaml -------------------------------------------------------------------------------- /dashboards/zitadel/json/health-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/health-details.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/health.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/replicas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/replicas.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/runtime.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/sql.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/storage.json -------------------------------------------------------------------------------- /dashboards/zitadel/json/zitadel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/json/zitadel.json -------------------------------------------------------------------------------- /dashboards/zitadel/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/dashboards/zitadel/kustomization.yaml -------------------------------------------------------------------------------- /docs/boom/boom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/boom.md -------------------------------------------------------------------------------- /docs/boom/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/internal.md -------------------------------------------------------------------------------- /docs/boom/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/labels.md -------------------------------------------------------------------------------- /docs/boom/sso-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/sso-examples.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/Metadata/Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/Metadata/Metadata.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/Toolset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/Toolset.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/APIGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/APIGateway.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/AmbassadorService/Port/Port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/AmbassadorService/Port/Port.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/Caching/Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/Caching/Caching.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/Caching/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/Caching/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Affinity/Affinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Affinity/Affinity.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/secret/Existing/Existing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/secret/Existing/Existing.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/APIGateway/secret/Secret/Secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/APIGateway/secret/Secret/Secret.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/Apply/Apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/Apply/Apply.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/Boom/Boom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/Boom/Boom.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/Boom/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/Boom/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/Boom/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/Boom/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/KubeMetricsExporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/KubeMetricsExporter.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/k8s/Affinity/Affinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/k8s/Affinity/Affinity.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/KubeMetricsExporter/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogCollection/Component/Component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogCollection/Component/Component.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/Fluentd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/Fluentd.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogCollection/Fluentd/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogCollection/LogCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogCollection/LogCollection.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogsPersisting/Logs/Logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogsPersisting/Logs/Logs.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogsPersisting/LogsPersisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogsPersisting/LogsPersisting.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogsPersisting/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogsPersisting/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogsPersisting/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogsPersisting/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/LogsPersisting/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/LogsPersisting/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricCollection/MetricCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricCollection/MetricCollection.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricCollection/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricCollection/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricCollection/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricCollection/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/Metrics/Metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/Metrics/Metrics.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/MetricsPersisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/MetricsPersisting.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/RemoteWrite/RemoteWrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/RemoteWrite/RemoteWrite.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsPersisting/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/MetricsServer/MetricsServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/MetricsServer/MetricsServer.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/NodeMetricsExporter/NodeMetricsExporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/NodeMetricsExporter/NodeMetricsExporter.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/NodeMetricsExporter/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/NodeMetricsExporter/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/SystemdMetricsExporter/SystemdMetricsExporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/SystemdMetricsExporter/SystemdMetricsExporter.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/ToolsetSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/ToolsetSpec.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Datasource/Datasource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Datasource/Datasource.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Monitoring.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Provider/Provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/Provider/Provider.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/admin/Admin/Admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/admin/Admin/Admin.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/network/Network/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/network/Network/Network.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/monitoring/Monitoring/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/Rbac/Rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/Rbac/Rbac.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/Reconciling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/Reconciling.md -------------------------------------------------------------------------------- /docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/latest/ToolsetSpec/reconciling/Reconciling/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/Metadata/Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/Metadata/Metadata.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/Toolset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/Toolset.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Ambassador/Ambassador.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Ambassador/Ambassador.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Ambassador/AmbassadorService/Port/Port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Ambassador/AmbassadorService/Port/Port.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Apply/Apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Apply/Apply.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/KubeStateMetrics/KubeStateMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/KubeStateMetrics/KubeStateMetrics.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/LoggingOperator/LoggingOperator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/LoggingOperator/LoggingOperator.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/LoggingOperator/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/LoggingOperator/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Loki/Logs/Logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Loki/Logs/Logs.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Loki/Loki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Loki/Loki.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Loki/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Loki/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Loki/toleration/Toleration/Toleration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Loki/toleration/Toleration/Toleration.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/MetricsServer/MetricsServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/MetricsServer/MetricsServer.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/Metrics/Metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/Metrics/Metrics.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/Prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/Prometheus.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/RemoteWrite/RemoteWrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/RemoteWrite/RemoteWrite.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/Prometheus/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/PrometheusOperator/PrometheusOperator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/PrometheusOperator/PrometheusOperator.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/ToolsetSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/ToolsetSpec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/Argocd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/Argocd.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/CustomImage/CustomImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/CustomImage/CustomImage.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/Rbac/Rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/Rbac/Rbac.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/auth/Auth/oidc/OIDC/OIDC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/auth/Auth/oidc/OIDC/OIDC.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/network/Network/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/argocd/Argocd/network/Network/Network.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Datasource/Datasource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Datasource/Datasource.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Grafana.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Provider/Provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/Provider/Provider.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/admin/Admin/Admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/admin/Admin/Admin.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/network/Network/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/network/Network/Network.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta1/ToolsetSpec/grafana/Grafana/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/Toolset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/Toolset.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/LogCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/LogCollection.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/LogCollection/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/ToolsetSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/ToolsetSpec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/APIGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/APIGateway.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/Caching/Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/Caching/Caching.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/k8s/Affinity/Affinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/k8s/Affinity/Affinity.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/secret/Secret/Secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/APIGateway/secret/Secret/Secret.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/Apply/Apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/Apply/Apply.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/Boom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/Boom.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/k8s/Resources/Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/k8s/Resources/Resources.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/k8s/Tolerations/Tolerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/Boom/k8s/Tolerations/Tolerations.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/Logs/Logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/Logs/Logs.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/LogsPersisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/LogsPersisting.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/LogsPersisting/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricCollection/MetricCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricCollection/MetricCollection.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricsPersisting/Metrics/Metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricsPersisting/Metrics/Metrics.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricsServer/MetricsServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/latest/MetricsServer/MetricsServer.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/Monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/Monitoring.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/Provider/Provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/Provider/Provider.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/admin/Admin/Admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/admin/Admin/Admin.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/storage/Spec/Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/monitoring/Monitoring/storage/Spec/Spec.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/Rbac/Rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/Rbac/Rbac.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/Reconciling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/Reconciling.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/auth/Auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/ToolsetSpec/reconciling/Reconciling/auth/Auth/Auth.md -------------------------------------------------------------------------------- /docs/boom/yml/v1beta2/latest/Metadata/Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/boom/yml/v1beta2/latest/Metadata/Metadata.md -------------------------------------------------------------------------------- /docs/explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/explained.md -------------------------------------------------------------------------------- /docs/img/orbos-explained-flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/img/orbos-explained-flowchart.svg -------------------------------------------------------------------------------- /docs/img/orbos-logo-oneline-lightdesign@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/img/orbos-logo-oneline-lightdesign@2x.png -------------------------------------------------------------------------------- /docs/orbiter/clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/clusters.md -------------------------------------------------------------------------------- /docs/orbiter/contribute.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/orbiter/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/develop.md -------------------------------------------------------------------------------- /docs/orbiter/gce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/gce.md -------------------------------------------------------------------------------- /docs/orbiter/kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/kind.md -------------------------------------------------------------------------------- /docs/orbiter/orbiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/orbiter.md -------------------------------------------------------------------------------- /docs/orbiter/os-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/os-requirements.md -------------------------------------------------------------------------------- /docs/orbiter/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/providers.md -------------------------------------------------------------------------------- /docs/orbiter/sequencediagram.org.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/sequencediagram.org.svg -------------------------------------------------------------------------------- /docs/orbiter/sequencediagram.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/sequencediagram.org.txt -------------------------------------------------------------------------------- /docs/orbiter/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/static.md -------------------------------------------------------------------------------- /docs/orbiter/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/terminology.md -------------------------------------------------------------------------------- /docs/orbiter/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/docs/orbiter/updates.md -------------------------------------------------------------------------------- /examples/boom/boom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/boom/boom.yml -------------------------------------------------------------------------------- /examples/orbiter/gce/orbiter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/gce/orbiter.yml -------------------------------------------------------------------------------- /examples/orbiter/static/kvm/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/kvm/kickstart.cfg -------------------------------------------------------------------------------- /examples/orbiter/static/kvm/machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/kvm/machine.sh -------------------------------------------------------------------------------- /examples/orbiter/static/orbiter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/orbiter.yml -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/downloadImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/downloadImage.sh -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/exampleClusterPostSteps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/exampleClusterPostSteps.sh -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/exampleClusterStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/exampleClusterStart.sh -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/ks.cfg -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/machine.sh -------------------------------------------------------------------------------- /examples/orbiter/static/virtualbox/poststeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/examples/orbiter/static/virtualbox/poststeps.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /internal/api/boom/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/api.go -------------------------------------------------------------------------------- /internal/api/boom/v1/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1/boom.go -------------------------------------------------------------------------------- /internal/api/boom/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /internal/api/boom/v1beta1/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1beta1/boom.go -------------------------------------------------------------------------------- /internal/api/boom/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /internal/api/boom/v1beta2/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1beta2/boom.go -------------------------------------------------------------------------------- /internal/api/boom/v1beta2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/boom/v1beta2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /internal/api/networking/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/networking/api.go -------------------------------------------------------------------------------- /internal/api/networking/v1/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/networking/v1/networking.go -------------------------------------------------------------------------------- /internal/api/networking/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/api/networking/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /internal/ctrlcrd/boom/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlcrd/boom/boom.go -------------------------------------------------------------------------------- /internal/ctrlcrd/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlcrd/controller.go -------------------------------------------------------------------------------- /internal/ctrlcrd/networking/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlcrd/networking/networking.go -------------------------------------------------------------------------------- /internal/ctrlgitops/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlgitops/boom.go -------------------------------------------------------------------------------- /internal/ctrlgitops/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlgitops/common.go -------------------------------------------------------------------------------- /internal/ctrlgitops/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlgitops/networking.go -------------------------------------------------------------------------------- /internal/ctrlgitops/orbiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ctrlgitops/orbiter.go -------------------------------------------------------------------------------- /internal/executables/.gitignore: -------------------------------------------------------------------------------- 1 | prebuilt* 2 | -------------------------------------------------------------------------------- /internal/executables/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/build.go -------------------------------------------------------------------------------- /internal/executables/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/builder_test.go -------------------------------------------------------------------------------- /internal/executables/derived.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/derived.gen.go -------------------------------------------------------------------------------- /internal/executables/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/download.go -------------------------------------------------------------------------------- /internal/executables/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/runtime.go -------------------------------------------------------------------------------- /internal/executables/targz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/executables/targz.go -------------------------------------------------------------------------------- /internal/helpers/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/check.go -------------------------------------------------------------------------------- /internal/helpers/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/errors.go -------------------------------------------------------------------------------- /internal/helpers/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/errors_test.go -------------------------------------------------------------------------------- /internal/helpers/fanout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/fanout.go -------------------------------------------------------------------------------- /internal/helpers/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/path.go -------------------------------------------------------------------------------- /internal/helpers/randstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/randstring.go -------------------------------------------------------------------------------- /internal/helpers/randstring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/randstring_test.go -------------------------------------------------------------------------------- /internal/helpers/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/retry.go -------------------------------------------------------------------------------- /internal/helpers/string_keyed_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/helpers/string_keyed_map.go -------------------------------------------------------------------------------- /internal/operator/boom/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/api.go -------------------------------------------------------------------------------- /internal/operator/boom/api/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/common/common.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/apigateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/apigateway.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/apply.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/funcs.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/kubemetricsexporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/kubemetricsexporter.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/logcollection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/logcollection.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/logspersisting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/logspersisting.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/metriccollection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/metriccollection.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/metrics-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/metrics-server.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/metricspersisting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/metricspersisting.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/admin/admin.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/auth/Generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/auth/Generic/generic.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/auth/Github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/auth/Github/github.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/auth/Gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/auth/Gitlab/gitlab.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/auth/Google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/auth/Google/google.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/auth/auth.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/monitoring/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/monitoring/monitoring.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/network/network.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/nodemetricsexporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/nodemetricsexporter.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/auth/auth.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/auth/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/auth/github/github.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/auth/gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/auth/gitlab/gitlab.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/auth/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/auth/google/google.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/auth/oidc/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/auth/oidc/oidc.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/reconciling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/reconciling.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/reconciling/repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/reconciling/repository/repository.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/storage/storage.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/systemdmetricsexporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/systemdmetricsexporter.go -------------------------------------------------------------------------------- /internal/operator/boom/api/latest/toolset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/latest/toolset_types.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/argocd/v1beta1tov1beta2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/argocd/v1beta1tov1beta2.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/grafana/v1beta1tov1beta2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/grafana/v1beta1tov1beta2.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/network/network.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/storage/storage.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/v1beta1tov1beta2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/v1beta1tov1beta2.go -------------------------------------------------------------------------------- /internal/operator/boom/api/migrate/v1beta2tov1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/migrate/v1beta2tov1.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/ambassador.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/ambassador.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/apply.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/argocd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/argocd.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/auth/auth.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/auth/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/auth/github/github.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/auth/gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/auth/gitlab/gitlab.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/auth/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/auth/google/google.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/auth/oidc/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/auth/oidc/oidc.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/argocd/repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/argocd/repository/repository.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/funcs.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/admin/admin.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/auth/Generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/auth/Generic/generic.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/auth/Github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/auth/Github/github.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/auth/Gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/auth/Gitlab/gitlab.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/auth/Google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/auth/Google/google.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/auth/auth.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/grafana/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/grafana/grafana.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/kube-state-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/kube-state-metrics.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/logging-operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/logging-operator.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/loki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/loki.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/metrics-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/metrics-server.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/network/network.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/prometheus-node-exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/prometheus-node-exporter.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/prometheus-operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/prometheus-operator.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/prometheus-systemd-exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/prometheus-systemd-exporter.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/prometheus.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/storage/storage.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/toleration/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/toleration/toleration.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta1/toolset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta1/toolset_types.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta2/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta2/funcs.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta2/logcollection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta2/logcollection.go -------------------------------------------------------------------------------- /internal/operator/boom/api/v1beta2/toolset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/api/v1beta2/toolset_types.go -------------------------------------------------------------------------------- /internal/operator/boom/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/app/app.go -------------------------------------------------------------------------------- /internal/operator/boom/application/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/application.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/ambassador.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/ambassador.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/crds/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/crds/host.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/crds/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/crds/mapping.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apigateway/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apigateway/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/apiserver/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/apiserver/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/boom/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/boom/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/boom/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/boom/labels.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/boom/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/boom/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/database/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/database/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/database/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/database/labels.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/database/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/database/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/kubemetricsexporter/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/kubemetricsexporter/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/logging/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/logging/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logcollection/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logcollection/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/logspersisting/loki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/logspersisting/loki.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metriccollection/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metriccollection/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metriccollection/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metriccollection/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metriccollection/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metriccollection/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metriccollection/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metriccollection/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricspersisting/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricspersisting/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricspersisting/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricspersisting/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricspersisting/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricspersisting/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricspersisting/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricspersisting/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/metricsserver/metricsserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/metricsserver/metricsserver.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/auth/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/auth/github.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/auth/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/auth/gitlab.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/auth/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/auth/google.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/config/config.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/grafana.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/info/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/info/application.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/monitoring/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/monitoring/network/network.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/networking/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/networking/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/networking/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/networking/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/nodemetricsexporter/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/nodemetricsexporter/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/orbiter/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/orbiter/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/orbiter/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/orbiter/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/argocd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/argocd.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/config/config.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/helm/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/helm/default.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/helm/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/helm/values.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/info/info.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/logs/logs.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/reconciling/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/reconciling/network/network.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/systemdmetricsexporter/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/systemdmetricsexporter/yaml.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/zitadel/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/zitadel/flow.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/zitadel/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/zitadel/labels.go -------------------------------------------------------------------------------- /internal/operator/boom/application/applications/zitadel/servicemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/applications/zitadel/servicemonitor.go -------------------------------------------------------------------------------- /internal/operator/boom/application/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/generate.go -------------------------------------------------------------------------------- /internal/operator/boom/application/mock/application.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/mock/application.mock.go -------------------------------------------------------------------------------- /internal/operator/boom/application/mock/applications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/mock/applications.go -------------------------------------------------------------------------------- /internal/operator/boom/application/resources/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/resources/common.go -------------------------------------------------------------------------------- /internal/operator/boom/application/resources/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/resources/secret.go -------------------------------------------------------------------------------- /internal/operator/boom/application/resources/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/application/resources/service.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/apply.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/bundle.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/bundle_test.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/bundles/bundles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/bundles/bundles.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/config/config.go -------------------------------------------------------------------------------- /internal/operator/boom/bundle/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/bundle/delete.go -------------------------------------------------------------------------------- /internal/operator/boom/cmd/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/cmd/reconcile.go -------------------------------------------------------------------------------- /internal/operator/boom/crd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/crd/config/config.go -------------------------------------------------------------------------------- /internal/operator/boom/crd/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/crd/crd.go -------------------------------------------------------------------------------- /internal/operator/boom/crd/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/crd/crd_test.go -------------------------------------------------------------------------------- /internal/operator/boom/current/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/current/current.go -------------------------------------------------------------------------------- /internal/operator/boom/desired/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/desired/desired.go -------------------------------------------------------------------------------- /internal/operator/boom/gitcrd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/gitcrd/config/config.go -------------------------------------------------------------------------------- /internal/operator/boom/gitcrd/gitcrd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/gitcrd/gitcrd.go -------------------------------------------------------------------------------- /internal/operator/boom/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/labels/labels.go -------------------------------------------------------------------------------- /internal/operator/boom/metrics/currentstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/metrics/currentstate.go -------------------------------------------------------------------------------- /internal/operator/boom/metrics/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/metrics/format.go -------------------------------------------------------------------------------- /internal/operator/boom/metrics/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/metrics/git.go -------------------------------------------------------------------------------- /internal/operator/boom/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/metrics/metrics.go -------------------------------------------------------------------------------- /internal/operator/boom/metrics/reconciling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/metrics/reconciling.go -------------------------------------------------------------------------------- /internal/operator/boom/name/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/name/name.go -------------------------------------------------------------------------------- /internal/operator/boom/takeoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/takeoff.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/chart/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/chart/chart.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/chart/fetch/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/chart/fetch/fetch.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/chart/fetch/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/chart/fetch/index.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/helmcommand/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/helmcommand/fetch.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/helmcommand/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/helmcommand/helm.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/helmcommand/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/helmcommand/template.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/mutate.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/mutatevalues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/mutatevalues.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/presteps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/presteps.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/results.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helm/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helm/template.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/helper/templator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/helper/templator.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/templator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/templator.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/yaml/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/yaml/template.go -------------------------------------------------------------------------------- /internal/operator/boom/templator/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/boom/templator/yaml/yaml.go -------------------------------------------------------------------------------- /internal/operator/common/derived.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/derived.gen.go -------------------------------------------------------------------------------- /internal/operator/common/firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/firewall.go -------------------------------------------------------------------------------- /internal/operator/common/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/networking.go -------------------------------------------------------------------------------- /internal/operator/common/nodeagent-model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/nodeagent-model.go -------------------------------------------------------------------------------- /internal/operator/common/software.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/software.go -------------------------------------------------------------------------------- /internal/operator/common/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/common/yaml.go -------------------------------------------------------------------------------- /internal/operator/core/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/core/adapt.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/core/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/core/current.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/adapt.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/app/app.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/app/dnsrecords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/app/dnsrecords.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/app/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/app/filters.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/app/firewallrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/app/firewallrules.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/app/originca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/app/originca.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/cloudflare/dnsrecord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/cloudflare/dnsrecord.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/cloudflare/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/cloudflare/filters.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/cloudflare/originca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/cloudflare/originca.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/config/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/config/external.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/config/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/config/internal.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/desired.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/legacyadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/legacyadapter.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/legacycf/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/legacycf/secrets.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/networking/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/networking/networking.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/orb/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/orb/adapt.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/orb/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/orb/desired.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/orb/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/orb/labels.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/orb/reconcile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/orb/reconcile.go -------------------------------------------------------------------------------- /internal/operator/networking/kinds/orb/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/kinds/orb/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /internal/operator/networking/takeoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/networking/takeoff.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/conv/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/conv/converter.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/cri/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/cri/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/cri/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/cri/ensure.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/health/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/health/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/health/dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/health/dep_test.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/hostname/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/hostname/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/iteratefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/iteratefile.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/iteratefile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/iteratefile_test.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/k8s/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/k8s/common.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/k8s/kubeadm/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/k8s/kubeadm/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/k8s/kubectl/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/k8s/kubectl/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/k8s/kubelet/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/k8s/kubelet/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/keepalived/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/keepalived/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/kernel/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/kernel/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/middleware/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/middleware/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/middleware/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/middleware/logging.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/nginx/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/nginx/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/nginx/dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/nginx/dep_test.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager-addrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager-addrepo.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager-init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager-init.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager-install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager-install.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager-installed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager-installed.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager-remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager-remove.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/package-manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/package-manager.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/packages_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/packages_string.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/selinux/selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/selinux/selinux.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/sshd/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/sshd/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/swap/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/swap/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/swap/dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/swap/dep_test.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/sysctl/dep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/sysctl/dep.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/system.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/dep/systemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/dep/systemd.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/derived.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/derived.gen.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/ensure.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/centOS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/centOS.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/current.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/interfaces.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/masquerade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/masquerade.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/ports.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/sources.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/centos/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/centos/target.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/firewall.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/firewall/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/firewall/noop.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/iterator.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/networking/centos/centOS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/networking/centos/centOS.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/networking/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/networking/networking.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/networking/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/networking/noop.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/rebooter/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/rebooter/func.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/rebooter/mock/exit/reboot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/rebooter/mock/exit/reboot.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/rebooter/mock/noop/reboot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/rebooter/mock/noop/reboot.go -------------------------------------------------------------------------------- /internal/operator/nodeagent/rebooter/node/reboot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/nodeagent/rebooter/node/reboot.go -------------------------------------------------------------------------------- /internal/operator/orbiter/.gitignore: -------------------------------------------------------------------------------- 1 | pproc.go -------------------------------------------------------------------------------- /internal/operator/orbiter/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/config.go -------------------------------------------------------------------------------- /internal/operator/orbiter/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/destroy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/clusters.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/core/infra/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/core/infra/cluster.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/core/infra/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/core/infra/helpers.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/core/infra/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/core/infra/provider.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/connect.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/destroy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/downscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/downscale.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/ensure.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/firewall.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/initialize.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/initialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/initialize_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/join.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/machines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/machines.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/networks/calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/networks/calico.yaml -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/networks/cilium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/networks/cilium.yaml -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/nodes.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/plugins.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/pool.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/query.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/secrets.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/software.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/software.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/upgrade.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/clusters/kubernetes/upscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/clusters/kubernetes/upscale.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/derived.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/derived.gen.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_v0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_v0.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/desired_v1.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/dynamic/wrap/machinelb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/dynamic/wrap/machinelb.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/loadbalancers/loadbalancers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/loadbalancers/loadbalancers.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/orb/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/orb/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/orb/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/orb/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/orb/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/orb/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/orb/machines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/orb/machines.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/core/firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/core/firewall.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/core/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/core/list.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/core/nodeagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/core/nodeagent.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/core/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/core/pool.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/cloudinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/cloudinit.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/context.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/destroy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/ensure.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/floatingips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/floatingips.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/ingress.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/machine.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/machinesservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/machinesservice.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/machinesservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/machinesservice_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/pool.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/secrets.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/cs/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/cs/servers.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/ec2/adapter/api/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/ec2/adapter/api/test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/addresses.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/cloudnat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/cloudnat.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/computesservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/computesservice.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/computesservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/computesservice_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/context.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/destroy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/ensure.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/firewall.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/forwardingrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/forwardingrules.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/gceapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/gceapi.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/gcemachine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/gcemachine.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/gcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/gcloud.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/healthchecks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/healthchecks.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/identityawareproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/identityawareproxy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/kubernetes_gce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/kubernetes_gce.yaml -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/machine.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/normalize.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/normalize_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/pool.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/secrets.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/gce/targetpools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/gce/targetpools.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/providers.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/ssh/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/ssh/machine.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/adapt.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/computesservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/computesservice.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/current.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/desired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/desired.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/desired_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/desired_test.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/destroy.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/ensure.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/hostname.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/machine.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/pool.go -------------------------------------------------------------------------------- /internal/operator/orbiter/kinds/providers/static/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/kinds/providers/static/secrets.go -------------------------------------------------------------------------------- /internal/operator/orbiter/takeoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/takeoff.go -------------------------------------------------------------------------------- /internal/operator/orbiter/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/operator/orbiter/types.go -------------------------------------------------------------------------------- /internal/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/push/push.go -------------------------------------------------------------------------------- /internal/secret/operators/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/secret/operators/operators.go -------------------------------------------------------------------------------- /internal/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/ssh/ssh.go -------------------------------------------------------------------------------- /internal/stores/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/stores/github/github.go -------------------------------------------------------------------------------- /internal/utils/clientgo/clientgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/clientgo/clientgo.go -------------------------------------------------------------------------------- /internal/utils/clientgo/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/clientgo/resource.go -------------------------------------------------------------------------------- /internal/utils/clientgo/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/clientgo/secret.go -------------------------------------------------------------------------------- /internal/utils/helper/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/command.go -------------------------------------------------------------------------------- /internal/utils/helper/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/command_test.go -------------------------------------------------------------------------------- /internal/utils/helper/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/files.go -------------------------------------------------------------------------------- /internal/utils/helper/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/git.go -------------------------------------------------------------------------------- /internal/utils/helper/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/map.go -------------------------------------------------------------------------------- /internal/utils/helper/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/path.go -------------------------------------------------------------------------------- /internal/utils/helper/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/path_test.go -------------------------------------------------------------------------------- /internal/utils/helper/pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/pointers.go -------------------------------------------------------------------------------- /internal/utils/helper/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/yaml.go -------------------------------------------------------------------------------- /internal/utils/helper/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/helper/yaml_test.go -------------------------------------------------------------------------------- /internal/utils/kubectl/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kubectl/apply.go -------------------------------------------------------------------------------- /internal/utils/kubectl/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kubectl/delete.go -------------------------------------------------------------------------------- /internal/utils/kubectl/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kubectl/kubectl.go -------------------------------------------------------------------------------- /internal/utils/kubectl/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kubectl/label.go -------------------------------------------------------------------------------- /internal/utils/kubectl/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kubectl/version.go -------------------------------------------------------------------------------- /internal/utils/kustomize/kustomize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/kustomize/kustomize.go -------------------------------------------------------------------------------- /internal/utils/random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/random/random.go -------------------------------------------------------------------------------- /internal/utils/yaml/testfiles/struct.yaml: -------------------------------------------------------------------------------- 1 | test: test -------------------------------------------------------------------------------- /internal/utils/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/yaml/yaml.go -------------------------------------------------------------------------------- /internal/utils/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/internal/utils/yaml/yaml_test.go -------------------------------------------------------------------------------- /mntr/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/aggregate.go -------------------------------------------------------------------------------- /mntr/ingestion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/ingestion.go -------------------------------------------------------------------------------- /mntr/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/monitor.go -------------------------------------------------------------------------------- /mntr/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/normalize.go -------------------------------------------------------------------------------- /mntr/sprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/sprint.go -------------------------------------------------------------------------------- /mntr/usecases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/mntr/usecases.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/package.json -------------------------------------------------------------------------------- /pkg/cfg/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/cfg/configure.go -------------------------------------------------------------------------------- /pkg/git/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/git/client.go -------------------------------------------------------------------------------- /pkg/helper/nilinterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/helper/nilinterface.go -------------------------------------------------------------------------------- /pkg/helper/nilinterface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/helper/nilinterface_test.go -------------------------------------------------------------------------------- /pkg/helper/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/helper/rand.go -------------------------------------------------------------------------------- /pkg/kubernetes/artifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/artifacts.go -------------------------------------------------------------------------------- /pkg/kubernetes/boom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/boom.go -------------------------------------------------------------------------------- /pkg/kubernetes/cli/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/cli/client.go -------------------------------------------------------------------------------- /pkg/kubernetes/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/client.go -------------------------------------------------------------------------------- /pkg/kubernetes/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/crds.go -------------------------------------------------------------------------------- /pkg/kubernetes/drainreason_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/drainreason_string.go -------------------------------------------------------------------------------- /pkg/kubernetes/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/generate.go -------------------------------------------------------------------------------- /pkg/kubernetes/k8s/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/k8s/affinity.go -------------------------------------------------------------------------------- /pkg/kubernetes/k8s/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/k8s/resources.go -------------------------------------------------------------------------------- /pkg/kubernetes/k8s/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/k8s/toleration.go -------------------------------------------------------------------------------- /pkg/kubernetes/k8s/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/k8s/yaml.go -------------------------------------------------------------------------------- /pkg/kubernetes/mock/client.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/mock/client.mock.go -------------------------------------------------------------------------------- /pkg/kubernetes/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/networking.go -------------------------------------------------------------------------------- /pkg/kubernetes/orbiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/orbiter.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/adaptertesting/expect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/adaptertesting/expect.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/adaptertesting/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/adaptertesting/run.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ambassador/host/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ambassador/host/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ambassador/host/adapt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ambassador/host/adapt_test.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ambassador/mapping/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ambassador/mapping/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ambassador/mapping/adapt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ambassador/mapping/adapt_test.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ambassador/module/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ambassador/module/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/clusterrole/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/clusterrole/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/clusterrolebinding/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/clusterrolebinding/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/configmap/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/configmap/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/cronjob/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/cronjob/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/deployment/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/deployment/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/funcs.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/ingress/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/ingress/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/job/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/job/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/namespace/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/namespace/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/pdb/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/pdb/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/role/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/role/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/rolebinding/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/rolebinding/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/secret/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/secret/adapt.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/service/service.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/serviceaccount/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/serviceaccount/serviceaccount.go -------------------------------------------------------------------------------- /pkg/kubernetes/resources/statefulset/adapt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/kubernetes/resources/statefulset/adapt.go -------------------------------------------------------------------------------- /pkg/labels/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/api.go -------------------------------------------------------------------------------- /pkg/labels/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/api_test.go -------------------------------------------------------------------------------- /pkg/labels/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/common_test.go -------------------------------------------------------------------------------- /pkg/labels/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/component.go -------------------------------------------------------------------------------- /pkg/labels/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/component_test.go -------------------------------------------------------------------------------- /pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/labels.go -------------------------------------------------------------------------------- /pkg/labels/mocklabels/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/mocklabels/mock.go -------------------------------------------------------------------------------- /pkg/labels/mocklabels/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/mocklabels/mock_test.go -------------------------------------------------------------------------------- /pkg/labels/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/name.go -------------------------------------------------------------------------------- /pkg/labels/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/name_test.go -------------------------------------------------------------------------------- /pkg/labels/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/operator.go -------------------------------------------------------------------------------- /pkg/labels/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/operator_test.go -------------------------------------------------------------------------------- /pkg/labels/selectable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/selectable.go -------------------------------------------------------------------------------- /pkg/labels/selectable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/selectable_test.go -------------------------------------------------------------------------------- /pkg/labels/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/selector.go -------------------------------------------------------------------------------- /pkg/labels/selector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/labels/selector_test.go -------------------------------------------------------------------------------- /pkg/orb/orb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/orb/orb.go -------------------------------------------------------------------------------- /pkg/secret/read/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/secret/read/secret.go -------------------------------------------------------------------------------- /pkg/secret/rwsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/secret/rwsecret.go -------------------------------------------------------------------------------- /pkg/secret/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/secret/secret.go -------------------------------------------------------------------------------- /pkg/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/tree/tree.go -------------------------------------------------------------------------------- /pkg/tree/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/tree/tree_test.go -------------------------------------------------------------------------------- /pkg/treelabels/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/pkg/treelabels/api.go -------------------------------------------------------------------------------- /scripts/add_orbiter_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/add_orbiter_user.sh -------------------------------------------------------------------------------- /scripts/boom-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/boom-debug.sh -------------------------------------------------------------------------------- /scripts/boom-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/boom-init.sh -------------------------------------------------------------------------------- /scripts/boom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | go run ./cmd/boom-debug "$@" 6 | -------------------------------------------------------------------------------- /scripts/build-debug-bins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/build-debug-bins.sh -------------------------------------------------------------------------------- /scripts/cs_get_pprof_profile_from_na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/cs_get_pprof_profile_from_na.sh -------------------------------------------------------------------------------- /scripts/debug-na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/debug-na.sh -------------------------------------------------------------------------------- /scripts/debug-remote-na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/debug-remote-na.sh -------------------------------------------------------------------------------- /scripts/develop-na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/develop-na.sh -------------------------------------------------------------------------------- /scripts/e2e-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/e2e-debug.sh -------------------------------------------------------------------------------- /scripts/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/e2e.sh -------------------------------------------------------------------------------- /scripts/gce_get_pprof_profile_from_na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/gce_get_pprof_profile_from_na.sh -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/generate.sh -------------------------------------------------------------------------------- /scripts/generateCrd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/generateCrd.sh -------------------------------------------------------------------------------- /scripts/grafana-cloud-logs.yml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/grafana-cloud-logs.yml.sh -------------------------------------------------------------------------------- /scripts/grafana-cloud-metrics.yml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/grafana-cloud-metrics.yml.sh -------------------------------------------------------------------------------- /scripts/networking-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/networking-debug.sh -------------------------------------------------------------------------------- /scripts/orbctl-debug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec go run cmd/chore/dev/orbctl/main.go --debug "$@" 4 | 5 | -------------------------------------------------------------------------------- /scripts/orbctl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec go run cmd/chore/dev/orbctl/main.go "$@" 4 | -------------------------------------------------------------------------------- /scripts/releases-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/releases-dev.sh -------------------------------------------------------------------------------- /scripts/remove_root_access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/remove_root_access.sh -------------------------------------------------------------------------------- /scripts/stop-na.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/stop-na.sh -------------------------------------------------------------------------------- /scripts/switch_to_orbiter_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/scripts/switch_to_orbiter_user.sh -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /skaffold/boom-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/boom-deployment.yml -------------------------------------------------------------------------------- /skaffold/boom-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/boom-service.yml -------------------------------------------------------------------------------- /skaffold/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/build.sh -------------------------------------------------------------------------------- /skaffold/orbiter-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/orbiter-deployment.yml -------------------------------------------------------------------------------- /skaffold/orbiter-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/orbiter-service.yml -------------------------------------------------------------------------------- /skaffold/secrets.yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caos/orbos/HEAD/skaffold/secrets.yaml.sh --------------------------------------------------------------------------------