Skip to content

Commit

Permalink
chore: update gitsubmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
yashmehrotra committed Sep 11, 2024
1 parent 4e8fec8 commit 3ee2a30
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/canary-checker
Submodule canary-checker updated 81 files
+0 −5 .github/dependabot.yml
+1 −1 .github/workflows/lint.yml
+0 −4 .golangci.yml
+10 −5 Makefile
+20 −5 api/context/context.go
+10 −0 api/v1/checks.go
+1 −0 api/v1/common.go
+5 −1 api/v1/component_types.go
+4 −1 api/v1/system_types.go
+1 −1 build/full/Dockerfile
+1 −1 build/minimal/Dockerfile
+3 −0 canary-checker.properties
+1 −1 chart/Chart.yaml
+37 −0 chart/Makefile
+108 −0 chart/README.md
+17 −0 chart/README.md.tpl
+111 −0 chart/ci/full-values.yaml
+9 −0 chart/deref.ts
+0 −12 chart/templates/clusterrolebinding.yaml
+33 −3 chart/templates/deployment.yaml
+15 −0 chart/templates/rbac.yaml
+1 −0 chart/values.schema.deref.json
+554 −0 chart/values.schema.json
+348 −69 chart/values.yaml
+8 −6 checks/aws_config.go
+6 −6 checks/aws_config_rule.go
+1 −1 checks/catalog.go
+9 −6 checks/cloudwatch.go
+2 −2 checks/exec.go
+6 −5 checks/folder.go
+11 −15 checks/folder_s3.go
+3 −18 checks/folder_sftp.go
+12 −16 checks/folder_smb.go
+51 −17 checks/http.go
+2 −1 checks/jmeter.go
+5 −24 checks/kubernetes.go
+12 −34 checks/kubernetes_resource.go
+20 −3 checks/runchecks.go
+7 −59 checks/s3.go
+1 −1 checks/sql.go
+2 −1 checks/tcp.go
+1 −1 cmd/docs.go
+10 −8 cmd/offline.go
+19 −23 cmd/operator.go
+19 −45 cmd/root.go
+14 −5 cmd/run.go
+4 −7 cmd/serve.go
+6 −4 cmd/topology.go
+0 −1 config/canary-dev.yaml
+32 −6 config/deploy/crd.yaml
+32 −6 config/deploy/manifests.yaml
+28 −10 config/schemas/canary.schema.json
+34 −10 config/schemas/component.schema.json
+3 −0 config/schemas/health_awsconfig.schema.json
+3 −0 config/schemas/health_awsconfigrule.schema.json
+3 −0 config/schemas/health_cloudwatch.schema.json
+3 −0 config/schemas/health_exec.schema.json
+13 −10 config/schemas/health_folder.schema.json
+3 −0 config/schemas/health_s3.schema.json
+37 −10 config/schemas/topology.schema.json
+2 −3 fixtures/datasources/s3_bucket_pass.yaml
+3 −0 fixtures/k8s/kubernetes_resource_pod_exit_code_pass.yaml
+80 −54 go.mod
+151 −104 go.sum
+0 −225 hack/generate-schemas/go.mod
+0 −2,135 hack/generate-schemas/go.sum
+1 −7 main.go
+25 −0 pkg/api.go
+9 −2 pkg/db/canary.go
+0 −157 pkg/db/init.go
+0 −36 pkg/db/postgrest.go
+0 −253 pkg/kube.go
+9 −0 pkg/results.go
+19 −4 pkg/runner/runner.go
+98 −0 pkg/runner/runner_test.go
+5 −1 pkg/system_api.go
+1 −1 pkg/topology/component_check.go
+1 −1 pkg/topology/component_config.go
+1 −1 pkg/topology/component_relationship.go
+1 −13 pkg/topology/run.go
+4 −6 test/run_test.go
2 changes: 1 addition & 1 deletion modules/config-db
Submodule config-db updated 72 files
+3 −14 .github/dependabot.yml
+2 −0 .github/workflows/lint.yml
+24 −0 .github/workflows/test.yml
+12 −3 .gitignore
+37 −12 Makefile
+46 −19 api/cache.go
+27 −6 api/context.go
+2 −0 api/global.go
+3 −2 api/v1/aws.go
+17 −14 api/v1/common.go
+4 −0 api/v1/interface.go
+60 −0 api/v1/scrapeconfig_types.go
+42 −2 api/v1/types.go
+3 −3 api/v1/zz_generated.deepcopy.go
+12 −2 build/Dockerfile
+9 −2 chart/crds/configs.flanksource.com_scrapeconfigs.yaml
+2 −2 cmd/offline.go
+12 −28 cmd/operator.go
+13 −51 cmd/root.go
+86 −15 cmd/run.go
+29 −72 cmd/server.go
+8 −11 config/schemas/config_aws.schema.json
+17 −14 config/schemas/scrape_config.schema.json
+18 −18 db/changes.go
+2 −2 db/config.go
+1 −1 db/config_scraper.go
+121 −0 db/diff.go
+100 −11 db/diff_test.go
+0 −141 db/init.go
+7 −2 db/models/config_change.go
+11 −0 db/models/config_item.go
+0 −47 db/postgrest.go
+1 −1 db/testdata/person-new.json
+15 −15 db/testdata/person.diff
+7 −1 db/testdata/simple-new.json
+7 −2 db/testdata/simple-old.json
+11 −4 db/testdata/simple.diff
+232 −51 db/update.go
+0 −20 db/utils.go
+22 −0 external/diffgen/Cargo.lock
+12 −0 external/diffgen/Cargo.toml
+6 −0 external/diffgen/libdiffgen.h
+41 −0 external/diffgen/src/lib.rs
+16 −0 fixtures/data/echo-playbook.yaml
+12 −0 fixtures/file-crd-sync.yaml
+85 −53 go.mod
+269 −94 go.sum
+2 −0 hack/generate-schemas/.gitignore
+0 −224 hack/generate-schemas/go.mod
+0 −2,140 hack/generate-schemas/go.sum
+7 −2 hack/generate-schemas/main.go
+37 −0 rustdiffgen.go
+76 −31 scrapers/aws/aws.go
+0 −120 scrapers/aws/aws_session.go
+16 −14 scrapers/aws/cost.go
+1 −1 scrapers/changes/extraction.go
+61 −7 scrapers/cron.go
+9 −41 scrapers/kubernetes/events_watch.go
+1 −1 scrapers/kubernetes/exclusions.go
+14 −7 scrapers/kubernetes/informers.go
+7 −10 scrapers/kubernetes/kubernetes.go
+4 −10 scrapers/kubernetes/kubernetes_file.go
+2 −2 scrapers/processors/json.go
+5 −3 scrapers/run.go
+1 −1 scrapers/runscrapers.go
+49 −14 scrapers/runscrapers_test.go
+1 −1 scrapers/slack/slack.go
+1 −0 testdata/.gitignore
+0 −58 utils/kube/exec.go
+0 −242 utils/kube/kube.go
+0 −35 utils/kube/kube_test.go
+0 −58 utils/memory.go
2 changes: 1 addition & 1 deletion modules/duty
Submodule duty updated 143 files
2 changes: 1 addition & 1 deletion modules/mission-control
Submodule mission-control updated 97 files
+1 −1 .github/workflows/build.yml
+1 −1 .github/workflows/codeql.yml
+2 −1 .github/workflows/lint.yml
+5 −5 .github/workflows/release.yml
+1 −1 .github/workflows/scorecard.yml
+14 −1 .github/workflows/test.yml
+4 −4 Dockerfile
+13 −3 Makefile
+2 −0 api/event.go
+0 −2 api/global.go
+2 −2 api/incident.go
+7 −0 api/v1/notification_types.go
+43 −6 api/v1/playbook_actions.go
+1 −1 api/v1/playbook_types.go
+7 −1 api/v1/zz_generated.deepcopy.go
+3 −2 artifacts/jobs.go
+8 −0 auth/admin_user.go
+4 −2 auth/kratos.go
+18 −2 auth/kratos_client.go
+19 −7 auth/middleware.go
+141 −0 cmd/catalog.go
+142 −43 cmd/playbook.go
+1 −0 cmd/root.go
+15 −8 cmd/server.go
+0 −40 cmd/shutdown.go
+7 −2 cmd/sync.go
+11 −0 config/crds/mission-control.flanksource.com_notifications.yaml
+94 −3 config/crds/mission-control.flanksource.com_playbooks.yaml
+1 −1 config/schemas/incident-rules.schema.json
+9 −0 config/schemas/notification.schema.json
+13 −2 config/schemas/playbook-spec.schema.json
+13 −2 config/schemas/playbook.schema.json
+1 −3 connection/controllers.go
+7 −7 db/components.go
+3 −3 db/config.go
+0 −21 db/init.go
+6 −6 db/middleware.go
+5 −3 db/middleware_test.go
+11 −9 db/notifications.go
+110 −0 echo/people.go
+19 −5 echo/serve.go
+11 −0 fixtures/notifications/kube-cronjob-failing.yaml
+11 −0 fixtures/notifications/kube-deployment-unhealthy.yaml
+21 −0 fixtures/notifications/kube-pod-crashlooping.yaml
+30 −0 fixtures/playbooks/conditions-fail.yaml
+23 −9 fixtures/playbooks/delayed-exec.yaml
+0 −1 fixtures/playbooks/http.yaml
+1 −2 fixtures/playbooks/sql.yaml
+2 −2 fixtures/rules/default.yaml
+63 −48 go.mod
+214 −93 go.sum
+2 −0 hack/generate-schemas/.gitignore
+0 −221 hack/generate-schemas/go.mod
+0 −2,144 hack/generate-schemas/go.sum
+1 −1 hack/generate-schemas/main.go
+54 −7 notification/events.go
+178 −88 notification/notification_test.go
+90 −52 notification/send.go
+20 −44 notification/shoutrrr.go
+38 −0 notification/slack.go
+159 −0 notification/template.go
+28 −0 notification/templates/check.failed
+28 −0 notification/templates/check.passed
+26 −0 notification/templates/component.health
+26 −0 notification/templates/config.db.update
+26 −0 notification/templates/config.health
+1 −0 pkg/clients/aws/aws.go
+29 −5 pkg/clients/git/connectors/connectors.go
+28 −15 pkg/clients/git/connectors/git_access_token.go
+3 −4 pkg/clients/git/connectors/git_ssh.go
+12 −12 pkg/clients/git/git.go
+8 −11 playbook/actions/exec.go
+69 −22 playbook/actions/gitops.go
+2 −2 playbook/actions/gitops_test.go
+2 −1 playbook/actions/notification.go
+6 −7 playbook/controllers.go
+7 −6 playbook/events.go
+2 −2 playbook/events_test.go
+9 −7 playbook/params.go
+7 −6 playbook/playbook.go
+5 −5 playbook/playbook_test.go
+12 −1 playbook/run_consumer.go
+5 −6 playbook/runner/agent.go
+63 −21 playbook/runner/cel.go
+34 −24 playbook/runner/exec.go
+45 −39 playbook/runner/runner.go
+2 −4 playbook/runner/template.go
+5 −4 push/topology.go
+5 −0 rbac/init.go
+1 −1 rbac/objects.go
+1 −1 rbac/policies.yaml
+1 −0 rbac/policy.go
+14 −14 snapshot/dump.go
+10 −9 snapshot/snapshot.go
+1 −1 teams/teams.go
+57 −0 tests/fixtures_schema_validate_test.go
+2 −1 upstream/controllers.go

0 comments on commit 3ee2a30

Please sign in to comment.