Skip to content

Commit

Permalink
Merge pull request #48612 from derekwaynecarr/aws-tags
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Warn if aws has no cluster id provided

**What this PR does / why we need it**:
we info log a message when no cluster id is provided that should be a warning given its impact.

fixes #49568

**Release note**:
```release-note
NONE
```
  • Loading branch information
Kubernetes Submit Queue committed Jul 26, 2017
2 parents 5eaeab4 + b6fabe5 commit 0940a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloudprovider/providers/aws/tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (t *awsTagging) init(legacyClusterID string, clusterID string) error {
if clusterID != "" {
glog.Infof("AWS cloud filtering on ClusterID: %v", clusterID)
} else {
glog.Infof("AWS cloud - no clusterID filtering")
glog.Warning("AWS cloud - no clusterID filtering applied for shared resources; do not run multiple clusters in this AZ.")
}

return nil
Expand Down

0 comments on commit 0940a25

Please sign in to comment.