Skip to content

Commit

Permalink
Merge pull request #58 from turbot/release/v0.6
Browse files Browse the repository at this point in the history
Release/v0.6
  • Loading branch information
misraved authored Feb 15, 2024
2 parents a47a67c + 2f3efff commit 17a7a10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 22 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.6 [2024-02-15]

_Bug fixes_

- Removed duplicate node `service_account`. ([#56](https://github.com/turbot/steampipe-mod-kubernetes-insights/pull/56))

## v0.5 [2023-11-03]

_Breaking changes_
Expand Down
22 changes: 0 additions & 22 deletions dashboards/role/role_nodes.sp
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,6 @@ node "role" {
param "role_uids" {}
}

node "service_account" {
category = category.service_account

sql = <<-EOQ
select
uid as id,
title as title,
jsonb_build_object(
'UID', uid,
'Automount Service Account Token', automount_service_account_token,
'Creation Timestamp', creation_timestamp,
'Context Name', context_name
) as properties
from
kubernetes_service_account
where
uid = any($1);
EOQ

param "service_account_uids" {}
}

node "role_rule_resource_name" {
category = category.role_rule_resource_name

Expand Down

0 comments on commit 17a7a10

Please sign in to comment.