Hugo + Github Action + Vultr
建站小记
neo4j
1. Basic SHOW DATABASES SHOW DATABASE system SHOW DEFAULT DATABASE :SERVER change-password CREATE (Dhawan:player{name: "Shikar Dhawan", YOB: 1985, POB: "Delhi"}) CREATE (Ind:Country {name: "India"}) CREATE (Dhawan)-[r:BATSMAN_OF]->(Ind) RETURN Dhawan, Ind MATCH (n) DETACH DELETE n MATCH (n) RETURN n
CKA Learning path 22
Certified Kubernetes Administrator (CKA) Practice Exam: Part 1 Introduction This lab provides practice scenarios to help prepare you for the Certified Kubernetes Administrator (CKA) exam. You will be presented with tasks to complete as well as server(s) and/or an existing Kubernetes cluster to complete them in. You will need to use your knowledge of Kubernetes to successfully complete the provided tasks, much like you would on the real CKA exam. Good luck!...
CKA Learning path 21
Troubleshooting a Broken Kubernetes Cluster Introduction Every Kubernetes administrator will likely need to deal with a broken cluster at some point, whether a single node or the entire cluster is down. In this lab, you will be able to practice your troubleshooting skills. You will be presented with a broken Kubernetes cluster and asked to use your investigative skills to identify the problem and fix it. Solution Log in to the control plane node server using the credentials provided:...
CKA Learning path 20
Using PersistentVolumes in Kubernetes Introduction PersistentVolumes provide a way to treat storage as a dynamic resource in Kubernetes. This lab will allow you to demonstrate your knowledge of PersistentVolumes. You will mount some persistent storage to a container using a PersistentVolume and a PersistentVolumeClaim. Solution Log in to the server using the credentials provided: ssh cloud_user@<PUBLIC_IP_ADDRESS> Create a PersistentVolume That Allows Claim Expansion Create a custom Storage Class by using ```vi localdisk....