├── .github └── workflows │ └── testing.yml ├── .gitignore ├── LICENSE ├── README.md ├── cka-training ├── 0.tips.md ├── 1.installing.md ├── 10.monitoring.md ├── 11.logging.md ├── 2.pod.md ├── 3.storage.md ├── 4.workload.md ├── 5.networking.md ├── 6.service-and-ingress.md ├── 7.security.md ├── 8.troubleshooting.md ├── 9.helm.md ├── README.md └── pea-pods.jpeg ├── crd └── argo-rollouts │ ├── README.md │ └── resources.yaml ├── dapr ├── 0.installing │ ├── README.md │ └── redis.yaml └── 1.hello-kubernetes │ ├── README.md │ ├── deploy.yaml │ ├── node │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── package-lock.json │ └── package.json │ └── python │ ├── .gitignore │ ├── Dockerfile │ └── app.py ├── deploying-basic-statefulset-app ├── README.md └── nginx-statefulset-and-service.yaml ├── deploying-hello-world-web-application-with-go ├── README.md ├── hello-web-deployment-and-service.yaml ├── ingress.yaml └── kustomization.yaml ├── deploying-kbp-journal-app ├── README.md ├── fileserver │ ├── deployment.yaml │ └── service.yaml ├── frontend │ ├── configmap.yaml │ ├── deployment.yaml │ └── service.yaml ├── ingress.yaml ├── kustomization.yaml └── redis │ ├── configmap.yaml │ ├── secret.yaml │ ├── service.yaml │ └── statefulset.yaml ├── deploying-laravel-7-with-mysql-and-redis ├── README.md ├── configmap.yaml ├── ingress.yaml ├── laravel-deployment-and-service.yaml ├── mysql-deployment-and-service.yaml └── redis-deployment-and-service.yaml ├── deploying-laravel-application ├── README.md ├── ingress.yaml ├── kustomization.yaml └── laravel-deployment-and-service.yaml ├── deploying-nodejs-note-application-with-mongodb ├── README.md ├── frontend-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml └── mongo-deployment-and-service.yaml ├── deploying-php-guestbook-application-with-mongodb ├── README.md ├── frontend-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml └── mongodb-deployment-and-service.yaml ├── deploying-php-guestbook-application-with-redis ├── README.md ├── frontend-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml ├── redis-follower-deployment-and-service.yaml └── redis-leader-deployment-and-service.yaml ├── deploying-replicated-mysql-statefulset-app ├── README.md └── mysql.yaml ├── deploying-simple-apple-and-banana-ingress ├── README.md ├── apple-deployment-and-service.yaml ├── banana-deployment-and-service.yaml ├── ingress.yaml └── kustomization.yaml ├── deploying-simple-echo-app-using-blue-green-deployment ├── README.md ├── echo-v1-deployment.yaml ├── echo-v2-deployment.yaml ├── ingress.yaml ├── kustomization.yml └── service.yaml ├── deploying-simple-echo-app-using-canary-deployment ├── README.md ├── echo-v1-deployment-and-service.yaml ├── echo-v2-deployment-and-service.yaml ├── ingress-canary-by-header.yaml ├── ingress-primary.yaml └── kustomization.yaml ├── deploying-simple-hello-express-app ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── hello-express-deployment-and-service.yaml ├── index.js ├── ingress.yaml ├── kustomization.yaml ├── package-lock.json └── package.json ├── deploying-simple-hello-flask-app ├── Dockerfile ├── README.md ├── app.py ├── hello-flask-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml └── requirements.txt ├── deploying-simple-hello-gin-app ├── Dockerfile ├── README.md ├── go.mod ├── go.sum ├── hello-gin-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml └── main.go ├── deploying-simple-hello-spring-app ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── Dockerfile ├── README.md ├── hello-spring-deployment-and-service.yaml ├── ingress.yaml ├── kustomization.yaml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── hellospring │ │ │ ├── HelloSpringApplication.java │ │ │ └── HomeController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── hellospring │ └── HelloSpringApplicationTests.java ├── deploying-simple-microservice-using-gin-and-grpc ├── .gitignore ├── Makefile ├── README.md ├── api │ └── protobuf │ │ ├── calculator │ │ ├── calculator.pb.go │ │ ├── calculator.proto │ │ └── calculator_grpc.pb.go │ │ └── health │ │ ├── health.pb.go │ │ ├── health.proto │ │ └── health_grpc.pb.go ├── cmd │ ├── api-server │ │ ├── Dockerfile │ │ └── main.go │ └── calculator │ │ ├── Dockerfile │ │ └── main.go ├── go.mod ├── go.sum ├── internal │ ├── calculator │ │ └── server.go │ └── health │ │ └── server.go └── kubernetes-manifests │ ├── api-server.yaml │ ├── calculator.yaml │ ├── ingress.yaml │ └── kustomization.yaml ├── deploying-simple-php-app-with-fpm-and-nginx ├── README.md ├── configmap.yaml ├── horizontalpodautoscaler.yaml ├── ingress.yaml ├── kustomization.yaml ├── php-fpm-nginx-deployment-and-service.yaml └── php-info │ ├── Dockerfile │ └── index.php ├── deploying-wordpress-and-mysql-with-persistent-volumes ├── README.md ├── hello-world.png ├── ingress.yaml ├── kustomization.yaml ├── mysql-deployment-and-service.yaml └── wordpress-deployment-and-service.yaml ├── ingress-nginx ├── README.md ├── deploy.yaml └── kustomization.yaml ├── ingress.png ├── istio ├── 0.installing │ └── README.md ├── 1.profile │ └── README.md ├── 2.injection │ ├── README.md │ ├── nginx-injection.yaml │ └── nginx.yaml ├── 3.virtual-service │ ├── README.md │ ├── echo-v1-deployment.yaml │ ├── echo-v1-service.yaml │ ├── echo-v2-deployment.yaml │ ├── echo-v2-service.yaml │ ├── istio-gateway.yaml │ ├── istio-virtual-service.yaml │ └── kustomization.yaml ├── 4.destination-rule │ ├── README.md │ ├── echo-service.yaml │ ├── echo-v1-deployment.yaml │ ├── echo-v2-deployment.yaml │ ├── istio-destination-rule.yaml │ ├── istio-gateway.yaml │ ├── istio-virtual-service.yaml │ └── kustomization.yaml ├── 5.fault-injection │ ├── README.md │ ├── istio-gateway.yaml │ ├── istio-virtual-service-abort.yaml │ ├── istio-virtual-service-delay.yaml │ ├── nginx-deployment.yaml │ └── nginx-service.yaml ├── 6.circuit-breaking │ ├── README.md │ ├── fortio-deployment.yaml │ ├── fortio-service.yaml │ ├── nginx-deployment.yaml │ ├── nginx-destination-rule.yaml │ └── nginx-service.yaml ├── case-advanced-traffic-routing │ ├── README.md │ ├── customers-deployment-v1.yaml │ ├── customers-deployment-v2.yaml │ ├── customers-destination-rule.yaml │ ├── customers-service.yaml │ ├── customers-virtual-service.yaml │ ├── istio-gateway.yaml │ ├── kustomization.yaml │ ├── webfrontend-deployment.yaml │ ├── webfrontend-service.yaml │ └── webfrontend-virtual-service.yaml ├── case-grpc-web │ ├── README.md │ ├── backend.yaml │ ├── frontend.yaml │ └── istio.yaml └── case-online-boutique │ └── README.md ├── knative ├── 0.installing │ ├── README.md │ ├── eventing.yaml │ ├── http-echo.yaml │ ├── operator.yaml │ ├── serving-default-domain.yaml │ └── serving.yaml ├── 1.autoscale │ └── README.md └── 2.traffic-split │ ├── README.md │ ├── http-echo-split.yaml │ └── http-echo-update.yaml ├── learn-from-source-code ├── README.md ├── access-control-overview.svg ├── components-of-kubernetes.svg ├── deployment-replicaset-pod.png ├── schedule.jpeg ├── what-happens-in-kubernetes-when-a-request-hits-kube-apiserver.md ├── what-happens-in-kubernetes-when-create-a-deployment.md └── what-happens-in-kubernetes-when-schedule-a-pod.md ├── metrics-server ├── README.md ├── metrics-server.yaml └── nginx.yaml └── multi-nodes-cluster ├── vagrant-centos7-kubeadm ├── .gitignore ├── README.md └── Vagrantfile └── vagrant-ubuntu18.04-kubeadm ├── .gitignore ├── README.md └── Vagrantfile /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/README.md -------------------------------------------------------------------------------- /cka-training/0.tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/0.tips.md -------------------------------------------------------------------------------- /cka-training/1.installing.md: -------------------------------------------------------------------------------- 1 | # 使用 kubeadm 创建考试环境 2 | 3 | [点击查看](../multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm) 4 | -------------------------------------------------------------------------------- /cka-training/10.monitoring.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cka-training/11.logging.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cka-training/2.pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/2.pod.md -------------------------------------------------------------------------------- /cka-training/3.storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/3.storage.md -------------------------------------------------------------------------------- /cka-training/4.workload.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cka-training/5.networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/5.networking.md -------------------------------------------------------------------------------- /cka-training/6.service-and-ingress.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cka-training/7.security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/7.security.md -------------------------------------------------------------------------------- /cka-training/8.troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/8.troubleshooting.md -------------------------------------------------------------------------------- /cka-training/9.helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/9.helm.md -------------------------------------------------------------------------------- /cka-training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/README.md -------------------------------------------------------------------------------- /cka-training/pea-pods.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/cka-training/pea-pods.jpeg -------------------------------------------------------------------------------- /crd/argo-rollouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/crd/argo-rollouts/README.md -------------------------------------------------------------------------------- /crd/argo-rollouts/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/crd/argo-rollouts/resources.yaml -------------------------------------------------------------------------------- /dapr/0.installing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/0.installing/README.md -------------------------------------------------------------------------------- /dapr/0.installing/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/0.installing/redis.yaml -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/README.md -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/deploy.yaml -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/node/.gitignore -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/node/Dockerfile -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/node/app.js -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/node/package-lock.json -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/node/package.json -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/python/.gitignore -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/python/Dockerfile -------------------------------------------------------------------------------- /dapr/1.hello-kubernetes/python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/dapr/1.hello-kubernetes/python/app.py -------------------------------------------------------------------------------- /deploying-basic-statefulset-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-basic-statefulset-app/README.md -------------------------------------------------------------------------------- /deploying-basic-statefulset-app/nginx-statefulset-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-basic-statefulset-app/nginx-statefulset-and-service.yaml -------------------------------------------------------------------------------- /deploying-hello-world-web-application-with-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-hello-world-web-application-with-go/README.md -------------------------------------------------------------------------------- /deploying-hello-world-web-application-with-go/hello-web-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-hello-world-web-application-with-go/hello-web-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-hello-world-web-application-with-go/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-hello-world-web-application-with-go/ingress.yaml -------------------------------------------------------------------------------- /deploying-hello-world-web-application-with-go/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-hello-world-web-application-with-go/kustomization.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/README.md -------------------------------------------------------------------------------- /deploying-kbp-journal-app/fileserver/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/fileserver/deployment.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/fileserver/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/fileserver/service.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/frontend/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/frontend/configmap.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/frontend/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/frontend/deployment.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/frontend/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/frontend/service.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/ingress.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/kustomization.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/redis/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/redis/configmap.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/redis/secret.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/redis/service.yaml -------------------------------------------------------------------------------- /deploying-kbp-journal-app/redis/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-kbp-journal-app/redis/statefulset.yaml -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/README.md -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/configmap.yaml -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/ingress.yaml -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/laravel-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/laravel-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/mysql-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/mysql-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-laravel-7-with-mysql-and-redis/redis-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-7-with-mysql-and-redis/redis-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-laravel-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-application/README.md -------------------------------------------------------------------------------- /deploying-laravel-application/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-application/ingress.yaml -------------------------------------------------------------------------------- /deploying-laravel-application/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-application/kustomization.yaml -------------------------------------------------------------------------------- /deploying-laravel-application/laravel-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-laravel-application/laravel-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-nodejs-note-application-with-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-nodejs-note-application-with-mongodb/README.md -------------------------------------------------------------------------------- /deploying-nodejs-note-application-with-mongodb/frontend-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-nodejs-note-application-with-mongodb/frontend-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-nodejs-note-application-with-mongodb/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-nodejs-note-application-with-mongodb/ingress.yaml -------------------------------------------------------------------------------- /deploying-nodejs-note-application-with-mongodb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-nodejs-note-application-with-mongodb/kustomization.yaml -------------------------------------------------------------------------------- /deploying-nodejs-note-application-with-mongodb/mongo-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-nodejs-note-application-with-mongodb/mongo-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-mongodb/README.md -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-mongodb/frontend-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-mongodb/frontend-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-mongodb/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-mongodb/ingress.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-mongodb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-mongodb/kustomization.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-mongodb/mongodb-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-mongodb/mongodb-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/README.md -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/frontend-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/frontend-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/ingress.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/kustomization.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/redis-follower-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/redis-follower-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-php-guestbook-application-with-redis/redis-leader-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-php-guestbook-application-with-redis/redis-leader-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-replicated-mysql-statefulset-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-replicated-mysql-statefulset-app/README.md -------------------------------------------------------------------------------- /deploying-replicated-mysql-statefulset-app/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-replicated-mysql-statefulset-app/mysql.yaml -------------------------------------------------------------------------------- /deploying-simple-apple-and-banana-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-apple-and-banana-ingress/README.md -------------------------------------------------------------------------------- /deploying-simple-apple-and-banana-ingress/apple-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-apple-and-banana-ingress/apple-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-apple-and-banana-ingress/banana-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-apple-and-banana-ingress/banana-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-apple-and-banana-ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-apple-and-banana-ingress/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-apple-and-banana-ingress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-apple-and-banana-ingress/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/README.md -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/echo-v1-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/echo-v1-deployment.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/echo-v2-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/echo-v2-deployment.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/kustomization.yml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-blue-green-deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-blue-green-deployment/service.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/README.md -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/echo-v1-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/echo-v1-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/echo-v2-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/echo-v2-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/ingress-canary-by-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/ingress-canary-by-header.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/ingress-primary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/ingress-primary.yaml -------------------------------------------------------------------------------- /deploying-simple-echo-app-using-canary-deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-echo-app-using-canary-deployment/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/.dockerignore -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/.gitignore -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/README.md -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/hello-express-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/hello-express-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/index.js -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/package-lock.json -------------------------------------------------------------------------------- /deploying-simple-hello-express-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-express-app/package.json -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/README.md -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/app.py -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/hello-flask-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/hello-flask-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-flask-app/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-flask-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/README.md -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/go.mod -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/go.sum -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/hello-gin-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/hello-gin-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-gin-app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-gin-app/main.go -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/.gitignore -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/README.md -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/hello-spring-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/hello-spring-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/mvnw -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/mvnw.cmd -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/pom.xml -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/src/main/java/com/example/hellospring/HelloSpringApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/src/main/java/com/example/hellospring/HelloSpringApplication.java -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/src/main/java/com/example/hellospring/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/src/main/java/com/example/hellospring/HomeController.java -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploying-simple-hello-spring-app/src/test/java/com/example/hellospring/HelloSpringApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-hello-spring-app/src/test/java/com/example/hellospring/HelloSpringApplicationTests.java -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/.gitignore -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/Makefile -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/README.md -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator.pb.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator.proto -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/calculator/calculator_grpc.pb.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health.pb.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health.proto -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/api/protobuf/health/health_grpc.pb.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/cmd/api-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/cmd/api-server/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/cmd/api-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/cmd/api-server/main.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/cmd/calculator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/cmd/calculator/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/cmd/calculator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/cmd/calculator/main.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/go.mod -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/go.sum -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/internal/calculator/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/internal/calculator/server.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/internal/health/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/internal/health/server.go -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/api-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/api-server.yaml -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/calculator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/calculator.yaml -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-microservice-using-gin-and-grpc/kubernetes-manifests/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/README.md -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/configmap.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/horizontalpodautoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/horizontalpodautoscaler.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/ingress.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/kustomization.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/php-fpm-nginx-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/php-fpm-nginx-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/php-info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/php-info/Dockerfile -------------------------------------------------------------------------------- /deploying-simple-php-app-with-fpm-and-nginx/php-info/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-simple-php-app-with-fpm-and-nginx/php-info/index.php -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/README.md -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/hello-world.png -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/ingress.yaml -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/kustomization.yaml -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/mysql-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/mysql-deployment-and-service.yaml -------------------------------------------------------------------------------- /deploying-wordpress-and-mysql-with-persistent-volumes/wordpress-deployment-and-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/deploying-wordpress-and-mysql-with-persistent-volumes/wordpress-deployment-and-service.yaml -------------------------------------------------------------------------------- /ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/ingress-nginx/README.md -------------------------------------------------------------------------------- /ingress-nginx/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/ingress-nginx/deploy.yaml -------------------------------------------------------------------------------- /ingress-nginx/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - deploy.yaml -------------------------------------------------------------------------------- /ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/ingress.png -------------------------------------------------------------------------------- /istio/0.installing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/0.installing/README.md -------------------------------------------------------------------------------- /istio/1.profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/1.profile/README.md -------------------------------------------------------------------------------- /istio/2.injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/2.injection/README.md -------------------------------------------------------------------------------- /istio/2.injection/nginx-injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/2.injection/nginx-injection.yaml -------------------------------------------------------------------------------- /istio/2.injection/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/2.injection/nginx.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/README.md -------------------------------------------------------------------------------- /istio/3.virtual-service/echo-v1-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/echo-v1-deployment.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/echo-v1-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/echo-v1-service.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/echo-v2-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/echo-v2-deployment.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/echo-v2-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/echo-v2-service.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/istio-gateway.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/istio-virtual-service.yaml -------------------------------------------------------------------------------- /istio/3.virtual-service/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/3.virtual-service/kustomization.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/README.md: -------------------------------------------------------------------------------- 1 | # 目标规则 2 | -------------------------------------------------------------------------------- /istio/4.destination-rule/echo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/echo-service.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/echo-v1-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/echo-v1-deployment.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/echo-v2-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/echo-v2-deployment.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/istio-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/istio-destination-rule.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/istio-gateway.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/istio-virtual-service.yaml -------------------------------------------------------------------------------- /istio/4.destination-rule/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/4.destination-rule/kustomization.yaml -------------------------------------------------------------------------------- /istio/5.fault-injection/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /istio/5.fault-injection/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/5.fault-injection/istio-gateway.yaml -------------------------------------------------------------------------------- /istio/5.fault-injection/istio-virtual-service-abort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/5.fault-injection/istio-virtual-service-abort.yaml -------------------------------------------------------------------------------- /istio/5.fault-injection/istio-virtual-service-delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/5.fault-injection/istio-virtual-service-delay.yaml -------------------------------------------------------------------------------- /istio/5.fault-injection/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/5.fault-injection/nginx-deployment.yaml -------------------------------------------------------------------------------- /istio/5.fault-injection/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/5.fault-injection/nginx-service.yaml -------------------------------------------------------------------------------- /istio/6.circuit-breaking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/README.md -------------------------------------------------------------------------------- /istio/6.circuit-breaking/fortio-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/fortio-deployment.yaml -------------------------------------------------------------------------------- /istio/6.circuit-breaking/fortio-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/fortio-service.yaml -------------------------------------------------------------------------------- /istio/6.circuit-breaking/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/nginx-deployment.yaml -------------------------------------------------------------------------------- /istio/6.circuit-breaking/nginx-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/nginx-destination-rule.yaml -------------------------------------------------------------------------------- /istio/6.circuit-breaking/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/6.circuit-breaking/nginx-service.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/README.md -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/customers-deployment-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/customers-deployment-v1.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/customers-deployment-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/customers-deployment-v2.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/customers-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/customers-destination-rule.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/customers-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/customers-service.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/customers-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/customers-virtual-service.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/istio-gateway.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/kustomization.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/webfrontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/webfrontend-deployment.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/webfrontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/webfrontend-service.yaml -------------------------------------------------------------------------------- /istio/case-advanced-traffic-routing/webfrontend-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-advanced-traffic-routing/webfrontend-virtual-service.yaml -------------------------------------------------------------------------------- /istio/case-grpc-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-grpc-web/README.md -------------------------------------------------------------------------------- /istio/case-grpc-web/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-grpc-web/backend.yaml -------------------------------------------------------------------------------- /istio/case-grpc-web/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-grpc-web/frontend.yaml -------------------------------------------------------------------------------- /istio/case-grpc-web/istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-grpc-web/istio.yaml -------------------------------------------------------------------------------- /istio/case-online-boutique/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/istio/case-online-boutique/README.md -------------------------------------------------------------------------------- /knative/0.installing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/README.md -------------------------------------------------------------------------------- /knative/0.installing/eventing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/eventing.yaml -------------------------------------------------------------------------------- /knative/0.installing/http-echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/http-echo.yaml -------------------------------------------------------------------------------- /knative/0.installing/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/operator.yaml -------------------------------------------------------------------------------- /knative/0.installing/serving-default-domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/serving-default-domain.yaml -------------------------------------------------------------------------------- /knative/0.installing/serving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/0.installing/serving.yaml -------------------------------------------------------------------------------- /knative/1.autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/1.autoscale/README.md -------------------------------------------------------------------------------- /knative/2.traffic-split/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/2.traffic-split/README.md -------------------------------------------------------------------------------- /knative/2.traffic-split/http-echo-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/2.traffic-split/http-echo-split.yaml -------------------------------------------------------------------------------- /knative/2.traffic-split/http-echo-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/knative/2.traffic-split/http-echo-update.yaml -------------------------------------------------------------------------------- /learn-from-source-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/README.md -------------------------------------------------------------------------------- /learn-from-source-code/access-control-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/access-control-overview.svg -------------------------------------------------------------------------------- /learn-from-source-code/components-of-kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/components-of-kubernetes.svg -------------------------------------------------------------------------------- /learn-from-source-code/deployment-replicaset-pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/deployment-replicaset-pod.png -------------------------------------------------------------------------------- /learn-from-source-code/schedule.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/schedule.jpeg -------------------------------------------------------------------------------- /learn-from-source-code/what-happens-in-kubernetes-when-a-request-hits-kube-apiserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/what-happens-in-kubernetes-when-a-request-hits-kube-apiserver.md -------------------------------------------------------------------------------- /learn-from-source-code/what-happens-in-kubernetes-when-create-a-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/what-happens-in-kubernetes-when-create-a-deployment.md -------------------------------------------------------------------------------- /learn-from-source-code/what-happens-in-kubernetes-when-schedule-a-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/learn-from-source-code/what-happens-in-kubernetes-when-schedule-a-pod.md -------------------------------------------------------------------------------- /metrics-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/metrics-server/README.md -------------------------------------------------------------------------------- /metrics-server/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/metrics-server/metrics-server.yaml -------------------------------------------------------------------------------- /metrics-server/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/metrics-server/nginx.yaml -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-centos7-kubeadm/.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant/ -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-centos7-kubeadm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/multi-nodes-cluster/vagrant-centos7-kubeadm/README.md -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-centos7-kubeadm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/multi-nodes-cluster/vagrant-centos7-kubeadm/Vagrantfile -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm/.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant/ 2 | /ubuntu-bionic-18.04-cloudimg-console.log 3 | -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm/README.md -------------------------------------------------------------------------------- /multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxlwqq/kubernetes-examples/HEAD/multi-nodes-cluster/vagrant-ubuntu18.04-kubeadm/Vagrantfile --------------------------------------------------------------------------------