Skip to content

Commit

Permalink
Merge branch 'master' into smallinsky/emit_usage_event_forward_error
Browse files Browse the repository at this point in the history
  • Loading branch information
smallinsky authored Nov 19, 2024
2 parents af5c6f5 + 9f5b360 commit bdda8ca
Show file tree
Hide file tree
Showing 111 changed files with 3,214 additions and 1,180 deletions.
106 changes: 68 additions & 38 deletions api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions api/proto/teleport/discoveryconfig/v1/discoveryconfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ enum DiscoveryConfigState {
message IntegrationDiscoveredSummary {
// AWSEC2 contains the summary for the AWS EC2 discovered instances.
ResourcesDiscoveredSummary aws_ec2 = 1;

// AWSRDS contains the summary for the AWS RDS discovered databases.
ResourcesDiscoveredSummary aws_rds = 2;

// AWSEKS contains the summary for the AWS EKS discovered clusters.
ResourcesDiscoveredSummary aws_eks = 3;
}

// ResourcesDiscoveredSummary represents the AWS resources that were discovered.
Expand Down
5 changes: 3 additions & 2 deletions assets/loadtest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,14 @@ deploy-tc:
.PHONY: join-tc
join-tc:
kubectl get pod -n tc -o name --no-headers \
| xargs -P 20 -n 1 -I {} kubectl -n tc exec {} -- tctl create -f /etc/teleport/tc.yaml
| xargs -P 10 -n 1 -I {} kubectl -n tc exec {} -- tctl create -f /etc/teleport/tc.yaml

# deletes trusted clusters
.PHONY: delete-tc
delete-tc:
helm delete -n tc trusted-cluster
tctl get rc | grep ' name:' | cut -d ':' -f2- | xargs -P 20 -n 1 -I {} tctl rm rc/{}
kubectl --namespace teleport exec deploy/teleport-auth \
-- /busybox/sh -c "tctl get rc | grep ' name:' | cut -d ':' -f2- | xargs -P 20 -n 1 -I {} tctl rm rc/{}"

# creates a bot used by the soak tests to authenticate with the cluster
.PHONY: create-soaktest-bot
Expand Down
Loading

0 comments on commit bdda8ca

Please sign in to comment.