25 มีนาคม 2565

PoolTogether related websites

PoolTogether is the no loss lottery dapp. It is a good dapp to save money and have a chance to get free money if you are lucky enough.

List of related websites of PoolTogether

  • Main web: Link
  • Twitter: Link
  • Pooltogether stat (winners, players): Link
  • Reddit: Link
  • PoolTogether newsletter: Link

24 มีนาคม 2565

View disk(PD) for kubernetes PVC and PV

We can see the related disk(pd) of PVC and PV by these following steps

1. Get the PV name from PVC

apiVersion: v1

kind: PersistentVolumeClaim

spec:

  accessModes:

    - ReadWriteOnce

  resources:

    requests:

      storage: 10Gi

  volumeName: pv1

  storageClassName: standard

  volumeMode: Filesystem




2. Get PD name from PV

apiVersion: v1

kind: PersistentVolume

metadata:

  name: pv1

 

spec:

  capacity:

    storage: 10Gi

  gcePersistentDisk:

    pdName: gke-pd1

    fsType: ext4

  accessModes:

    - ReadWriteOnce

 



3. From step 2, the disk name (PD) is "gke-pd1", if we use GKE on GCP, we can see this disk from GCP console




09 มีนาคม 2565

View CPU & Memory Usage on Google Kubernetes Engine (GKE)

View CPU & Memory Usage on Google Kubernetes Engine (GKE)

1. Using Google Cloud Monitoring






2. Using kubectl command

You can use "kubectl top nodes" command to get current cpu and memory usage

บทความยอดนิยม (ล่าสุด)

บทความยอดนิยม (All Time)