所以,如果我们使用
kubectl get pods -n namespace.
我们可以轻松查看特定命名空间中的所有pod。
我的问题是我如何查看与特定服务关联的特定命名空间中的Pod。
答案 0 :(得分:1)
您可以使用与在Service
例如
kubectl get pods --selector=app=cassandra
对应于此示例Service
apiVersion: v1
kind: Service
metadata:
name: cassandra-service
spec:
selector:
app: cassandra
# more lines