Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add tags to help debugging #97

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions pkg/selector/aws/selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ type Instance struct {
SecretName *string
EbsVolume *string
DeviceName *string
// Tags is only used for debug information
// It is saved to the selector and logged in the id column
Tags map[string]string
}

func (instance *Instance) Id() string {
Expand Down Expand Up @@ -96,6 +99,7 @@ func (impl *SelectImpl) Select(ctx context.Context, awsSelector *v1alpha1.AWSSel
SecretName: awsSelector.SecretName,
EbsVolume: awsSelector.EbsVolume,
DeviceName: awsSelector.DeviceName,
Tags: readTags(r.Instances[0].Tags),
})
}
mode := awsSelector.Mode
Expand All @@ -109,6 +113,16 @@ func (impl *SelectImpl) Select(ctx context.Context, awsSelector *v1alpha1.AWSSel
return filteredInstances, nil
}

func readTags(sourceTags []ec2types.Tag) map[string]string {
tags := map[string]string{}
for _, tag := range sourceTags {
if tag.Key != nil && tag.Value != nil {
tags[*tag.Key] = *tag.Value
}
}
return tags
}

type Params struct {
fx.In

Expand Down
Loading