├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── dev_builds.yml │ ├── pull_requests.yml │ └── release_builds.yml ├── .gitignore ├── .markdownlint.jsonc ├── .markdownlint └── style.rb ├── .vscode └── snippets.code-snippets ├── .yamllint.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── ci ├── _build_functions.sh └── push-helm-chart.sh ├── docs ├── dev.md └── release.md ├── helm ├── tailing-sidecar-operator │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── conf │ │ └── operator.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _operator-webhook-with-cert-manager.tpl │ │ ├── _operator-webhook.tpl │ │ ├── checks.txt │ │ ├── configmap.yaml │ │ ├── resources.yaml │ │ ├── scc.yaml │ │ └── sidecar-configmap.yaml │ └── values.yaml └── tests │ ├── values.withCertManager.yaml │ ├── values.withFluentBitCustomConfiguration.yaml │ ├── values.withOtelcolCustomConfiguration.yaml │ └── values.yaml ├── images └── sumo_logic_logo.png ├── kind.yaml ├── kuttl-test-helm-certmanager.yaml ├── kuttl-test-helm-fluentbit-custom-configuration.yaml ├── kuttl-test-helm-otelcol-custom-configuration.yaml ├── kuttl-test-helm.yaml ├── kuttl-test.yaml ├── operator ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Dockerfile.ubi ├── Makefile ├── PROJECT ├── README.md ├── api │ └── v1 │ │ ├── groupversion_info.go │ │ ├── tailingsidecar_types.go │ │ └── zz_generated.deepcopy.go ├── config.go ├── config │ ├── certmanager │ │ ├── certificate.yaml │ │ ├── kustomization.yaml │ │ └── kustomizeconfig.yaml │ ├── crd │ │ ├── bases │ │ │ └── tailing-sidecar.sumologic.com_tailingsidecarconfigs.yaml │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ └── patches │ │ │ ├── cainjection_in_tailingsidecars.yaml │ │ │ └── webhook_in_tailingsidecars.yaml │ ├── default │ │ ├── cluster_roles_binding_patches.yaml │ │ ├── kustomization.yaml │ │ ├── manager_auth_proxy_patch.yaml │ │ ├── manager_patch.yaml │ │ ├── manager_webhook_patch.yaml │ │ ├── role_binding_patch.yaml │ │ ├── webhook_admission_ca_injection_patch.yaml │ │ ├── webhook_patch.yaml │ │ └── webhook_validating_ca_injection_patch.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── prometheus │ │ ├── kustomization.yaml │ │ └── monitor.yaml │ ├── rbac │ │ ├── auth_proxy_client_clusterrole.yaml │ │ ├── auth_proxy_role.yaml │ │ ├── auth_proxy_role_binding.yaml │ │ ├── auth_proxy_service.yaml │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── service_account.yaml │ │ ├── tailingsidecar_editor_role.yaml │ │ └── tailingsidecar_viewer_role.yaml │ ├── samples │ │ ├── kustomization.yaml │ │ ├── tailing-sidecar-update_v1_tailingsidecar.yaml │ │ ├── tailing-sidecar_v1_tailingsidecar.yaml │ │ └── tailing-sidecar_v1_tailingsidecar_match_expressions.yaml │ ├── scorecard │ │ ├── bases │ │ │ └── config.yaml │ │ ├── kustomization.yaml │ │ └── patches │ │ │ ├── basic.config.yaml │ │ │ └── olm.config.yaml │ └── webhook │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ ├── manifests.yaml │ │ └── service.yaml ├── config_test.go ├── controllers │ ├── suite_test.go │ └── tailingsidecar_controller.go ├── docs │ └── configuration.md ├── examples │ ├── cr_with_resources.yaml │ ├── daemonset_with_annotations.yaml │ ├── deployment_with_annotations.yaml │ ├── deployment_with_annotations_update.yaml │ ├── pod_with_annotations.yaml │ ├── pod_with_annotations_update.yaml │ ├── pod_with_tailing_sidecar_config.yaml │ ├── pod_with_tailing_sidecar_config_resources.yaml │ ├── pod_with_tailing_sidecar_config_update.yaml │ ├── pod_without_annotations.yaml │ └── statefulset_with_annotations.yaml ├── go.mod ├── go.sum ├── hack │ └── boilerplate.go.txt ├── handler │ ├── annotations.go │ ├── annotations_test.go │ ├── config.go │ ├── config_test.go │ ├── handler.go │ ├── handler_test.go │ └── testdata │ │ ├── patch_remove_tailing_sidecar.json │ │ ├── patch_update_1_tailing_sidecar.json │ │ ├── patch_update_volume.json │ │ ├── patch_with_2_tailing_sidecars.json │ │ ├── patch_with_2_tailing_sidecars_different_namespace.json │ │ ├── patch_with_2_tailing_sidecars_with_configuration.json │ │ ├── patch_with_3_named_not_named_tailing_sidecars.json │ │ ├── patch_with_3_named_tailing_sidecars.json │ │ ├── patch_with_3_tailing_sidecars.json │ │ └── patch_with_3_tailing_sidecars_raw_and_predefined.json ├── main.go └── tests │ ├── functions.sh │ ├── test-resources.sh │ ├── test-update.sh │ └── test.sh ├── sidecar ├── fluentbit │ ├── Dockerfile │ ├── Dockerfile.ubi │ ├── Makefile │ ├── README.md │ ├── conf │ │ ├── fluent-bit.conf │ │ └── plugins.conf │ ├── docker-bake.hcl │ ├── examples │ │ ├── example1.log │ │ ├── example2.log │ │ └── pod_with_tailing_sidecars.yaml │ ├── out_gstdout │ │ ├── Makefile │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ └── out_gstdout.go │ └── tests │ │ └── test.sh └── otelcol │ ├── .gitignore │ ├── .goreleaser.yaml │ ├── .otelcol-builder.yaml │ ├── Dockerfile │ ├── Makefile │ └── config.yaml ├── tests ├── modified │ ├── operator │ │ ├── daemonset-with-annotations │ │ │ ├── 00-assert.yaml │ │ │ └── 00-install.yaml │ │ ├── deployment-with-annotations │ │ │ ├── 00-assert.yaml │ │ │ ├── 00-install.yaml │ │ │ ├── 01-assert.yaml │ │ │ └── 01-update.yaml │ │ ├── pod-with-annotations │ │ │ ├── 00-assert.yaml │ │ │ ├── 00-install.yaml │ │ │ ├── 01-assert.yaml │ │ │ └── 01-update.yaml │ │ ├── pod-with-cr │ │ │ ├── 00-assert.yaml │ │ │ ├── 00-install.yaml │ │ │ ├── 01-assert.yaml │ │ │ └── 01-update.yaml │ │ ├── pod-without-annotations │ │ │ ├── 00-assert.yaml │ │ │ └── 00-install.yaml │ │ └── statefulset-with-annotations │ │ │ ├── 00-assert.yaml │ │ │ └── 00-install.yaml │ └── sidecar ├── operator │ ├── daemonset-with-annotations │ │ ├── 00-assert.yaml │ │ └── 00-install.yaml │ ├── deployment-with-annotations │ │ ├── 00-assert.yaml │ │ ├── 00-install.yaml │ │ ├── 01-assert.yaml │ │ └── 01-update.yaml │ ├── pod-with-annotations │ │ ├── 00-assert.yaml │ │ ├── 00-install.yaml │ │ ├── 01-assert.yaml │ │ └── 01-update.yaml │ ├── pod-with-cr │ │ ├── 00-assert.yaml │ │ ├── 00-install.yaml │ │ ├── 01-assert.yaml │ │ └── 01-update.yaml │ ├── pod-without-annotations │ │ ├── 00-assert.yaml │ │ └── 00-install.yaml │ └── statefulset-with-annotations │ │ ├── 00-assert.yaml │ │ └── 00-install.yaml └── sidecar │ └── pod-with-sidecar │ ├── 00-assert.yaml │ └── 00-install.yaml └── vagrant ├── provision.sh └── values.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dev_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.github/workflows/dev_builds.yml -------------------------------------------------------------------------------- /.github/workflows/pull_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.github/workflows/pull_requests.yml -------------------------------------------------------------------------------- /.github/workflows/release_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.github/workflows/release_builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /.markdownlint/style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.markdownlint/style.rb -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ci/_build_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/ci/_build_functions.sh -------------------------------------------------------------------------------- /ci/push-helm-chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/ci/push-helm-chart.sh -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/docs/dev.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/docs/release.md -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/.helmignore -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/Chart.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/README.md -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/conf/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/conf/operator.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Happy tailing! 2 | -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/_operator-webhook-with-cert-manager.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/_operator-webhook-with-cert-manager.tpl -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/_operator-webhook.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/_operator-webhook.tpl -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/checks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/checks.txt -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/resources.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/scc.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/templates/sidecar-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/templates/sidecar-configmap.yaml -------------------------------------------------------------------------------- /helm/tailing-sidecar-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tailing-sidecar-operator/values.yaml -------------------------------------------------------------------------------- /helm/tests/values.withCertManager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tests/values.withCertManager.yaml -------------------------------------------------------------------------------- /helm/tests/values.withFluentBitCustomConfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tests/values.withFluentBitCustomConfiguration.yaml -------------------------------------------------------------------------------- /helm/tests/values.withOtelcolCustomConfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tests/values.withOtelcolCustomConfiguration.yaml -------------------------------------------------------------------------------- /helm/tests/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/helm/tests/values.yaml -------------------------------------------------------------------------------- /images/sumo_logic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/images/sumo_logic_logo.png -------------------------------------------------------------------------------- /kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kind.yaml -------------------------------------------------------------------------------- /kuttl-test-helm-certmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kuttl-test-helm-certmanager.yaml -------------------------------------------------------------------------------- /kuttl-test-helm-fluentbit-custom-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kuttl-test-helm-fluentbit-custom-configuration.yaml -------------------------------------------------------------------------------- /kuttl-test-helm-otelcol-custom-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kuttl-test-helm-otelcol-custom-configuration.yaml -------------------------------------------------------------------------------- /kuttl-test-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kuttl-test-helm.yaml -------------------------------------------------------------------------------- /kuttl-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/kuttl-test.yaml -------------------------------------------------------------------------------- /operator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/.dockerignore -------------------------------------------------------------------------------- /operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/.gitignore -------------------------------------------------------------------------------- /operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/Dockerfile -------------------------------------------------------------------------------- /operator/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/Dockerfile.ubi -------------------------------------------------------------------------------- /operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/Makefile -------------------------------------------------------------------------------- /operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/PROJECT -------------------------------------------------------------------------------- /operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/README.md -------------------------------------------------------------------------------- /operator/api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /operator/api/v1/tailingsidecar_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/api/v1/tailingsidecar_types.go -------------------------------------------------------------------------------- /operator/api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /operator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config.go -------------------------------------------------------------------------------- /operator/config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /operator/config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/tailing-sidecar.sumologic.com_tailingsidecarconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/crd/bases/tailing-sidecar.sumologic.com_tailingsidecarconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_tailingsidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/crd/patches/cainjection_in_tailingsidecars.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_tailingsidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/crd/patches/webhook_in_tailingsidecars.yaml -------------------------------------------------------------------------------- /operator/config/default/cluster_roles_binding_patches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/cluster_roles_binding_patches.yaml -------------------------------------------------------------------------------- /operator/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/manager_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/role_binding_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/role_binding_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/webhook_admission_ca_injection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/webhook_admission_ca_injection_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/webhook_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/webhook_validating_ca_injection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/default/webhook_validating_ca_injection_patch.yaml -------------------------------------------------------------------------------- /operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /operator/config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /operator/config/rbac/tailingsidecar_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/tailingsidecar_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/tailingsidecar_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/rbac/tailingsidecar_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/samples/tailing-sidecar-update_v1_tailingsidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/samples/tailing-sidecar-update_v1_tailingsidecar.yaml -------------------------------------------------------------------------------- /operator/config/samples/tailing-sidecar_v1_tailingsidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/samples/tailing-sidecar_v1_tailingsidecar.yaml -------------------------------------------------------------------------------- /operator/config/samples/tailing-sidecar_v1_tailingsidecar_match_expressions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/samples/tailing-sidecar_v1_tailingsidecar_match_expressions.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /operator/config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /operator/config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /operator/config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config/webhook/service.yaml -------------------------------------------------------------------------------- /operator/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/config_test.go -------------------------------------------------------------------------------- /operator/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/controllers/suite_test.go -------------------------------------------------------------------------------- /operator/controllers/tailingsidecar_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/controllers/tailingsidecar_controller.go -------------------------------------------------------------------------------- /operator/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/docs/configuration.md -------------------------------------------------------------------------------- /operator/examples/cr_with_resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/cr_with_resources.yaml -------------------------------------------------------------------------------- /operator/examples/daemonset_with_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/daemonset_with_annotations.yaml -------------------------------------------------------------------------------- /operator/examples/deployment_with_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/deployment_with_annotations.yaml -------------------------------------------------------------------------------- /operator/examples/deployment_with_annotations_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/deployment_with_annotations_update.yaml -------------------------------------------------------------------------------- /operator/examples/pod_with_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_with_annotations.yaml -------------------------------------------------------------------------------- /operator/examples/pod_with_annotations_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_with_annotations_update.yaml -------------------------------------------------------------------------------- /operator/examples/pod_with_tailing_sidecar_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_with_tailing_sidecar_config.yaml -------------------------------------------------------------------------------- /operator/examples/pod_with_tailing_sidecar_config_resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_with_tailing_sidecar_config_resources.yaml -------------------------------------------------------------------------------- /operator/examples/pod_with_tailing_sidecar_config_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_with_tailing_sidecar_config_update.yaml -------------------------------------------------------------------------------- /operator/examples/pod_without_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/pod_without_annotations.yaml -------------------------------------------------------------------------------- /operator/examples/statefulset_with_annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/examples/statefulset_with_annotations.yaml -------------------------------------------------------------------------------- /operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/go.mod -------------------------------------------------------------------------------- /operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/go.sum -------------------------------------------------------------------------------- /operator/hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /operator/handler/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/annotations.go -------------------------------------------------------------------------------- /operator/handler/annotations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/annotations_test.go -------------------------------------------------------------------------------- /operator/handler/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/config.go -------------------------------------------------------------------------------- /operator/handler/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/config_test.go -------------------------------------------------------------------------------- /operator/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/handler.go -------------------------------------------------------------------------------- /operator/handler/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/handler_test.go -------------------------------------------------------------------------------- /operator/handler/testdata/patch_remove_tailing_sidecar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_remove_tailing_sidecar.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_update_1_tailing_sidecar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_update_1_tailing_sidecar.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_update_volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_update_volume.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_2_tailing_sidecars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_2_tailing_sidecars.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_2_tailing_sidecars_different_namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_2_tailing_sidecars_different_namespace.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_2_tailing_sidecars_with_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_2_tailing_sidecars_with_configuration.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_3_named_not_named_tailing_sidecars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_3_named_not_named_tailing_sidecars.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_3_named_tailing_sidecars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_3_named_tailing_sidecars.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_3_tailing_sidecars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_3_tailing_sidecars.json -------------------------------------------------------------------------------- /operator/handler/testdata/patch_with_3_tailing_sidecars_raw_and_predefined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/handler/testdata/patch_with_3_tailing_sidecars_raw_and_predefined.json -------------------------------------------------------------------------------- /operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/main.go -------------------------------------------------------------------------------- /operator/tests/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/tests/functions.sh -------------------------------------------------------------------------------- /operator/tests/test-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/tests/test-resources.sh -------------------------------------------------------------------------------- /operator/tests/test-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/tests/test-update.sh -------------------------------------------------------------------------------- /operator/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/operator/tests/test.sh -------------------------------------------------------------------------------- /sidecar/fluentbit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/Dockerfile -------------------------------------------------------------------------------- /sidecar/fluentbit/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/Dockerfile.ubi -------------------------------------------------------------------------------- /sidecar/fluentbit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/Makefile -------------------------------------------------------------------------------- /sidecar/fluentbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/README.md -------------------------------------------------------------------------------- /sidecar/fluentbit/conf/fluent-bit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/conf/fluent-bit.conf -------------------------------------------------------------------------------- /sidecar/fluentbit/conf/plugins.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/conf/plugins.conf -------------------------------------------------------------------------------- /sidecar/fluentbit/docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/docker-bake.hcl -------------------------------------------------------------------------------- /sidecar/fluentbit/examples/example1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/examples/example1.log -------------------------------------------------------------------------------- /sidecar/fluentbit/examples/example2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/examples/example2.log -------------------------------------------------------------------------------- /sidecar/fluentbit/examples/pod_with_tailing_sidecars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/examples/pod_with_tailing_sidecars.yaml -------------------------------------------------------------------------------- /sidecar/fluentbit/out_gstdout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/out_gstdout/Makefile -------------------------------------------------------------------------------- /sidecar/fluentbit/out_gstdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/out_gstdout/README.md -------------------------------------------------------------------------------- /sidecar/fluentbit/out_gstdout/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/out_gstdout/go.mod -------------------------------------------------------------------------------- /sidecar/fluentbit/out_gstdout/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/out_gstdout/go.sum -------------------------------------------------------------------------------- /sidecar/fluentbit/out_gstdout/out_gstdout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/out_gstdout/out_gstdout.go -------------------------------------------------------------------------------- /sidecar/fluentbit/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/fluentbit/tests/test.sh -------------------------------------------------------------------------------- /sidecar/otelcol/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | cmd/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /sidecar/otelcol/.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/otelcol/.goreleaser.yaml -------------------------------------------------------------------------------- /sidecar/otelcol/.otelcol-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/otelcol/.otelcol-builder.yaml -------------------------------------------------------------------------------- /sidecar/otelcol/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/otelcol/Dockerfile -------------------------------------------------------------------------------- /sidecar/otelcol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/otelcol/Makefile -------------------------------------------------------------------------------- /sidecar/otelcol/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/sidecar/otelcol/config.yaml -------------------------------------------------------------------------------- /tests/modified/operator/daemonset-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/daemonset-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/daemonset-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/daemonset-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/operator/deployment-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/deployment-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/deployment-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/deployment-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/operator/deployment-with-annotations/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/deployment-with-annotations/01-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/deployment-with-annotations/01-update.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/deployment-with-annotations/01-update.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/pod-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/pod-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-annotations/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/pod-with-annotations/01-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-annotations/01-update.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/pod-with-annotations/01-update.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-cr/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/pod-with-cr/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-cr/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/pod-with-cr/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-cr/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/pod-with-cr/01-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-with-cr/01-update.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/pod-with-cr/01-update.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-without-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/pod-without-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/pod-without-annotations/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/pod-without-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/operator/statefulset-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/modified/operator/statefulset-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/modified/operator/statefulset-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- 1 | ../../../operator/statefulset-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/modified/sidecar: -------------------------------------------------------------------------------- 1 | ../sidecar -------------------------------------------------------------------------------- /tests/operator/daemonset-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/daemonset-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/daemonset-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/daemonset-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/operator/deployment-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/deployment-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/deployment-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/deployment-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/operator/deployment-with-annotations/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/deployment-with-annotations/01-assert.yaml -------------------------------------------------------------------------------- /tests/operator/deployment-with-annotations/01-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/deployment-with-annotations/01-update.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-annotations/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-annotations/01-assert.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-annotations/01-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-annotations/01-update.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-cr/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-cr/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-cr/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-cr/00-install.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-cr/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-cr/01-assert.yaml -------------------------------------------------------------------------------- /tests/operator/pod-with-cr/01-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-with-cr/01-update.yaml -------------------------------------------------------------------------------- /tests/operator/pod-without-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-without-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/pod-without-annotations/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/pod-without-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/operator/statefulset-with-annotations/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/statefulset-with-annotations/00-assert.yaml -------------------------------------------------------------------------------- /tests/operator/statefulset-with-annotations/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/operator/statefulset-with-annotations/00-install.yaml -------------------------------------------------------------------------------- /tests/sidecar/pod-with-sidecar/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/sidecar/pod-with-sidecar/00-assert.yaml -------------------------------------------------------------------------------- /tests/sidecar/pod-with-sidecar/00-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/tests/sidecar/pod-with-sidecar/00-install.yaml -------------------------------------------------------------------------------- /vagrant/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/vagrant/provision.sh -------------------------------------------------------------------------------- /vagrant/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SumoLogic/tailing-sidecar/HEAD/vagrant/values.yaml --------------------------------------------------------------------------------