python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to get the latest change time of StatefulSet in k8s
I know, for example, that you can get the lastUpdateTime of a Deployment with kubectl:
kubectl get deploy <deployment-name> -o jsonpath={.status.conditions[1].lastUpdateTime}
Or via client-go:
...
Kaio H. Cunha
Votes: 0
Answers: 1
What type of edits will change a ReplicaSet and StatefulSet AGE?
What type of edits will change a ReplicaSet and StatefulSet AGE(CreationTimeStamp)?
I'm asking this because I noticed that
If I change a Deployment image, a new ReplicaSet will be created.
The old Re...
Kaio H. Cunha
Votes: 0
Answers: 1
Access a property in the body of a kubernetes resource using a field path
I want to get the values of the fields declared in the downwardAPI section of a Pod.
apiVersion: v1
kind: Pod
metadata:
name: sample
namespace: default
spec:
containers:
- image: rpa
image...
Sayak Mukhopadhyay
Votes: 0
Answers: 1
What is the least privilege required for getting serviceaccounts including cluster-admin bound accounts?
I have a k8s cluster in minikube, configured a service account admin-user with the cluster-admin role, and am configuring the ServiceAccount below to use in my own application. Everything is applied i...
atye
Votes: 0
Answers: 1