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
Kubernetes statefulset replication
I am using kubernetes statefulset for my mongodb and influxdb.
In summary, StatefulSets provide the following advantages when compared to Deployment objects: Ordered numbers for each Pod. The first ...
Rakesh
Votes: 0
Answers: 0
Migrate Kubernetes storage from vSphere to NFS with StatefulSets
I'm trying to move all my persistent volumes from vSphere to NFS, I managed to do it for many applications that use Deployment kind. All I have to do is:
Mount the NFS volume to a different path (/tm...
abdelhalimresu
Votes: 0
Answers: 0