Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

kubernetes - How to tag resources created under a certain k8s cluster

How to tag resources created under a certain k8s cluster, we have multiple teams which create cluster and the corresponding pods, in order to understand the costing corresponding to it we would like to tag the resources so that we know how much a team is spending. We use standard yaml files for k8s deployment in GKE. How should we go about doing this, to understanding the billing associated with usage

question from:https://stackoverflow.com/questions/65846015/how-to-tag-resources-created-under-a-certain-k8s-cluster

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

resources created under a certain k8s cluster

Resources under the cluster, e.g. nodes are created outside the cluster, using e.g. Terraform or other tools - these tools typically has features to add tags for tracking costs.

We use standard yaml files for k8s deployment in GKE.

This is resources created within the cluster, those are not typically tracked by the cloud provider, since you only pay for the underlying infrastructure e.g. nodes and network traffic.

So to track this in a more granular way, you typically has to install an add-on like e.g. kubecost, so that you can see e.g. how big part of your costs is consumed by "team A".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...