如何在 OpenShift 中查找用户的创建时间?
How to find the creation-time of a User in OpenShift?
任何人都可以给我建议如何在 OpenShift 上找出用户创建时间的详细信息?
我尝试了这些命令,但只得到了一般信息。需要了解更多细节。
$ oc describe test_user
NAME: test_user
Created: 3 weeks ago
Labels: <none>
Annotations: <none>
Identities: htpasswd:test_user
creationTimestamp
可以在User API Documentation
中找到
$ oc get user <user> -o yaml
apiVersion: user.openshift.io/v1
fullName: "<user>"
kind: User
metadata:
creationTimestamp: "2019-02-13T19:40:54Z"
任何人都可以给我建议如何在 OpenShift 上找出用户创建时间的详细信息? 我尝试了这些命令,但只得到了一般信息。需要了解更多细节。
$ oc describe test_user
NAME: test_user
Created: 3 weeks ago
Labels: <none>
Annotations: <none>
Identities: htpasswd:test_user
creationTimestamp
可以在User API Documentation
$ oc get user <user> -o yaml
apiVersion: user.openshift.io/v1
fullName: "<user>"
kind: User
metadata:
creationTimestamp: "2019-02-13T19:40:54Z"