├── Chapter02 ├── README.md ├── kiada-0.1 │ ├── Dockerfile │ ├── Makefile │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ └── stylesheet.css └── pod.kiada.yaml ├── Chapter03 ├── README.md ├── create-deployment.sh ├── create-kind-cluster.sh ├── expose-deployment.sh └── kind-multi-node.yaml ├── Chapter05 ├── README.md ├── init-demo-0.1 │ ├── Dockerfile │ ├── Makefile │ └── docker_entrypoint.sh ├── kiada-0.1-slim │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ └── stylesheet.css ├── kiada-0.2 │ ├── Dockerfile │ ├── Makefile │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ └── stylesheet.css ├── kiada-ssl-proxy-0.1 │ ├── Dockerfile │ ├── Makefile │ ├── envoy.yaml │ ├── example-com.crt │ └── example-com.key ├── network-connectivity-checker-0.1 │ ├── Dockerfile │ ├── Makefile │ └── docker_entrypoint.sh ├── network-traffic-meter-0.1 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ └── entrypoint.sh ├── pod.kiada-init-slow.yaml ├── pod.kiada-init.yaml ├── pod.kiada-native-sidecar.yaml ├── pod.kiada-slim.yaml ├── pod.kiada-ssl.yaml ├── pod.kiada-stdin-once.yaml ├── pod.kiada-stdin-tty.yaml ├── pod.kiada-stdin.yaml └── pod.kiada.yaml ├── Chapter06 ├── README.md ├── kiada-0.3 │ ├── Dockerfile │ ├── Makefile │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ └── stylesheet.css ├── pod.kiada-init-fail-norestart.yaml ├── pod.kiada-liveness.yaml ├── pod.kiada-ssl-0.3.yaml ├── pod.kiada-ssl-shortgraceperiod.yaml ├── pod.kiada-ssl.yaml ├── pod.kiada-startup-probe.yaml ├── pod.kiada.yaml ├── pod.poststart-httpget-slow.yaml ├── pod.poststart-httpget.yaml ├── pod.quote-poststart-fail-norestart.yaml ├── pod.quote-poststart-fail.yaml ├── pod.quote-poststart-slow.yaml ├── pod.quote-poststart.yaml └── pod.quote-prestop.yaml ├── Chapter07 ├── kiada-suite │ ├── kiada │ │ ├── pod.kiada-001.yaml │ │ ├── pod.kiada-002.yaml │ │ ├── pod.kiada-003.yaml │ │ └── pod.kiada-canary.yaml │ ├── quiz │ │ └── pod.quiz.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── pod.quote-canary.yaml ├── ns.kiada-test2.yaml ├── persistent-volumes.yaml ├── pod.kiada-front-end-affinity.yaml ├── pod.kiada-front-end-skip-specific-node.yaml ├── pod.kiada-front-end.yaml ├── pod.kiada-ssl.kiada-test2-namespace.yaml └── pod.pod-with-annotations.yaml ├── Chapter08 ├── cm.kiada-config.complete.yaml ├── cm.kiada-config.envFrom.yaml ├── cm.kiada-config.yaml ├── dummy-bad.yaml ├── dummy.bin ├── dummy.txt ├── dummy.yaml ├── example-com.crt ├── example-com.key ├── kiada-0.4 │ ├── Dockerfile │ ├── Makefile │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ └── stylesheet.css ├── pod.env-var-references-in-shell.yaml ├── pod.kiada.args.yaml ├── pod.kiada.command.yaml ├── pod.kiada.downward-api.yaml ├── pod.kiada.env-value-ref-in-args.yaml ├── pod.kiada.env-value-ref.yaml ├── pod.kiada.env-value.yaml ├── pod.kiada.env-valueFrom-secretKeyRef.yaml ├── pod.kiada.env-valueFrom.yaml ├── pod.kiada.envFrom.yaml ├── pod.kiada.hostname.yaml ├── pod.private-image.yaml ├── secret.kiada-secret-config.yaml └── secret.kiada-tls.yaml ├── Chapter09 ├── README.md ├── UNUSED │ ├── pod.quiz.aws.yaml │ ├── pod.quiz.gcepd.yaml │ ├── pod.quiz.nfs.yaml │ └── pod.quiz2.gcepd.yaml ├── cm.kiada-ssl-config.edited.yaml ├── cm.kiada-ssl-config.yaml ├── count-questions.sh ├── create-configmap-kiada-ssl-config.sh ├── envoy.yaml ├── insert-question.sh ├── kind-multi-node-with-image-volume.yaml ├── pod.demo-emptydir-inline.yaml ├── pod.kiada-ssl.configmap-volume-clean.yaml ├── pod.kiada-ssl.configmap-volume.yaml ├── pod.kiada-ssl.downward-api-volume.yaml ├── pod.kiada-ssl.projected-volume.yaml ├── pod.kiada-ssl.secret-volume-permissions.yaml ├── pod.kiada-ssl.secret-volume.yaml ├── pod.node-explorer.specific-node.yaml ├── pod.node-explorer.yaml ├── pod.quiz.emptydir.init.yaml ├── pod.quiz.emptydir.yaml ├── pod.quiz.hostpath.kind.yaml ├── pod.quiz.hostpath.yaml ├── pod.quiz.imagevolume.yaml ├── pod.quiz.novolume.yaml ├── pod.quote.yaml ├── quiz-api-0.1 │ ├── Dockerfile │ ├── Makefile │ └── app │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── db.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── server.go │ │ └── types.go ├── quiz-initdb-script-installer-0.1 │ ├── Dockerfile │ ├── Makefile │ └── insert-questions.js ├── quiz-questions │ ├── Dockerfile │ ├── Makefile │ └── insert-questions.js ├── quote-writer-0.1 │ ├── Dockerfile │ ├── Makefile │ ├── book-quotes.txt │ ├── book-quotes.txt.dat │ └── docker_entrypoint.sh └── secret.kiada-tls.yaml ├── Chapter10 ├── count-questions.sh ├── insert-questions.js ├── insert-questions.sh ├── pod.demo-ephemeral.yaml ├── pod.demo-read-only-many.yaml ├── pod.demo-read-write-many.yaml ├── pod.demo-read-write-once.yaml ├── pod.quiz-from-snapshot.yaml ├── pod.quiz-local.yaml ├── pod.quiz-specific-volume.yaml ├── pod.quiz.yaml ├── pod.quiz2.yaml ├── pod.test.yaml ├── pv.local-disk-on-my-node.yaml ├── pvc.demo-read-only-many.yaml ├── pvc.demo-read-write-many.yaml ├── pvc.demo-read-write-once.yaml ├── pvc.multi-pod-demo.yaml ├── pvc.quiz-data-from-snapshot.yaml ├── pvc.quiz-data-local.yaml ├── pvc.quiz-data-specific-volume.yaml ├── pvc.quiz-data-standard.yaml ├── pvc.quiz-data.default-10gib.yaml ├── pvc.quiz-data.default.yaml ├── pvc.test.yaml ├── sc.filestore.yaml ├── sc.local.yaml ├── test.yaml ├── vs.quiz-data-1.yaml ├── vs.quiz-data-2.yaml └── vsclass.pd-csi.yaml ├── Chapter11 ├── SETUP │ ├── quiz │ │ ├── pod.quiz.yaml │ │ └── pvc.quiz-data.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── pod.quote-canary.yaml ├── cm.kiada-envoy-config.yaml ├── ep.external-service.yaml ├── install-metallb-kind.sh ├── kiada-0.5 │ ├── Dockerfile │ ├── Makefile │ ├── app.js │ ├── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ ├── javascript.js │ │ └── stylesheet.css │ └── pod.kiada-ssl.yaml ├── kiada-stable-and-canary.yaml ├── pod-with-dns-config.yaml ├── pod.kiada-mock-readiness.yaml ├── pod.kiada-readiness.yaml ├── pod.quote-readiness.yaml ├── pods.quote-with-hostname-subdomain.yaml ├── secret.kiada-tls.yaml ├── svc.external-service-headless.yaml ├── svc.external-service.yaml ├── svc.kiada-publish-not-ready-addresses.yaml ├── svc.kiada.loadbalancer.yaml ├── svc.kiada.nodeport.local.yaml ├── svc.kiada.nodeport.yaml ├── svc.quiz.yaml ├── svc.quote-dualstack.yaml ├── svc.quote-headless.yaml ├── svc.quote-local.yaml ├── svc.quote-topology-aware-hints.yaml ├── svc.quote.yaml └── svc.time-api.yaml ├── Chapter12 ├── SETUP │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── pod.kiada-001.yaml │ │ ├── pod.kiada-002.yaml │ │ ├── pod.kiada-003.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ ├── pod.quiz.yaml │ │ ├── pvc.quiz-data.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── svc.quote.yaml ├── all.fun404.yaml ├── create-kind-cluster.sh ├── example.crt ├── example.key ├── ing.api-example-com.yaml ├── ing.kiada-example-com.yaml ├── ing.kiada-ssl-passthrough.nginx.yaml ├── ing.kiada.affinity-gke.yaml ├── ing.kiada.affinity-nginx.yaml ├── ing.kiada.defaultBackend.yaml ├── ing.kiada.implementationSpecific.yaml ├── ing.kiada.ingressClassName.yaml ├── ing.kiada.tls.yaml ├── ing.kiada.wildcard.yaml ├── ing.kiada.yaml ├── ing.resource-backend-example.yaml ├── install-ingress-nginx-kind.sh ├── kind-multi-node.yaml ├── secret.tls-example-com.yaml ├── static-http-server │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ └── app │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── bin │ │ └── static-http-server │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── server.go └── temp.yaml ├── Chapter13 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── pod.kiada-001.yaml │ │ ├── pod.kiada-002.yaml │ │ ├── pod.kiada-003.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ ├── pod.quiz.yaml │ │ ├── pvc.quiz-data.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── svc.quote.yaml ├── demo.txt ├── demo │ ├── demo.txt │ ├── gtw.kiada.yaml │ ├── httproute.kiada.mirroring.yaml │ ├── httproute.kiada.requestHeaderModifier.yaml │ ├── httproute.kiada.splitting.yaml │ └── httproute.kiada.yaml ├── grpcroute.test.yaml ├── gtw.kiada.hostname.yaml ├── gtw.kiada.tls-passthrough.yaml ├── gtw.kiada.tls-terminate.yaml ├── gtw.kiada.yaml ├── gtw.shared.yaml ├── gtw.test.yaml ├── httproute.cross-namespace-backend.yaml ├── httproute.cross-namespace-gateway.yaml ├── httproute.kiada.full.yaml ├── httproute.kiada.header-exact.yaml ├── httproute.kiada.header-regex.yaml ├── httproute.kiada.implementationSpecificFilter.yaml ├── httproute.kiada.method.yaml ├── httproute.kiada.mirroring.yaml ├── httproute.kiada.multiple.yaml ├── httproute.kiada.path-exact.yaml ├── httproute.kiada.path-pathprefix.yaml ├── httproute.kiada.path-regex.yaml ├── httproute.kiada.queryparams-exact.yaml ├── httproute.kiada.queryparams-regex.yaml ├── httproute.kiada.requestHeaderModifier.yaml ├── httproute.kiada.requestRedirect.yaml ├── httproute.kiada.responseHeaderModifier.yaml ├── httproute.kiada.splitting.yaml ├── httproute.kiada.urlRewrite.replaceFullPath.yaml ├── httproute.kiada.urlRewrite.replacePrefixMatch.yaml ├── httproute.kiada.yaml ├── httproute.quote.yaml ├── install-istio.sh ├── kiada-0.5.1 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ ├── javascript.js │ │ └── stylesheet.css ├── pod.kiada-new.yaml ├── podsvc.test.yaml ├── referencegrant.from-httproutes-in-kiada-to-some-service.yaml ├── tcproute.cross-namespace-gateway.yaml ├── tcproute.test.yaml ├── tlsroute.kiada.yaml └── udproute.test.yaml ├── Chapter14 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── pod.kiada-001.yaml │ │ ├── pod.kiada-002.yaml │ │ ├── pod.kiada-003.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ ├── pod.quiz.yaml │ │ ├── pvc.quiz-data.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── svc.quote.yaml ├── pod.one-kiada-too-many.yaml ├── rs.kiada.versionLabel.yaml └── rs.kiada.yaml ├── Chapter15 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── rs.kiada.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ ├── pod.quiz.yaml │ │ ├── pvc.quiz-data.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── pod.quote-001.yaml │ │ ├── pod.quote-002.yaml │ │ ├── pod.quote-003.yaml │ │ └── svc.quote.yaml ├── deploy.broken-pods.yaml ├── deploy.kiada.0.6.recreate.yaml ├── deploy.kiada.0.7.minReadySeconds.yaml ├── deploy.kiada.0.7.rollingUpdate.yaml ├── deploy.kiada.0.8.minReadySeconds0.yaml ├── deploy.kiada.0.8.minReadySeconds60.yaml ├── deploy.kiada.labelled.yaml ├── deploy.kiada.noReplicas.yaml ├── deploy.kiada.recreate.yaml ├── deploy.kiada.yaml ├── deploy.quiz.yaml ├── deploy.quote.yaml ├── deploy.where-are-the-pods.yaml ├── kiada-0.6 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── cover0.6.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ ├── javascript.js │ │ └── stylesheet.css ├── kiada-0.7 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── cover0.7.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ ├── javascript.js │ │ └── stylesheet.css └── kiada-0.8 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ ├── cover.png │ ├── favicon.ico │ ├── index.html │ ├── index.txt │ ├── javascript.js │ └── stylesheet.css ├── Chapter16 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── deploy.kiada.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ ├── deploy.quiz.yaml │ │ ├── pvc.quiz-data.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── deploy.quote.yaml │ │ └── svc.quote.yaml ├── create-kind-cluster.sh ├── initiate-mongo-replicaset.sh ├── kind-multi-node.yaml ├── pod.quiz-data-importer.yaml ├── quiz-api-0.2 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ └── app │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── bin │ │ └── quiz-api │ │ ├── db.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── server.go │ │ └── types.go ├── sts.demo-ordered.updated.yaml ├── sts.demo-ordered.yaml ├── sts.demo-parallel.updated.yaml ├── sts.demo-parallel.yaml ├── sts.quiz.0.2.onDelete.yaml ├── sts.quiz.0.2.partition.yaml ├── sts.quiz.0.2.yaml ├── sts.quiz.orderedReady.readinessProbe.yaml ├── sts.quiz.orderedReady.yaml ├── sts.quiz.pvcRetentionPolicy.yaml ├── sts.quiz.yaml └── svc.quiz-pods.yaml ├── Chapter17 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── quiz │ │ └── svc.quiz.yaml │ └── quote │ │ └── svc.quote.yaml ├── deploy.kiada.0.9.hostPort.yaml ├── deploy.kiada.0.9.yaml ├── ds.demo.amd64.yaml ├── ds.demo.nodeName.yaml ├── ds.demo.nodeSelector.yaml ├── ds.demo.readinessProbe.yaml ├── ds.demo.tolerateAllTaints.yaml ├── ds.demo.v2.rollingUpdate.yaml ├── ds.demo.v3.onDelete.yaml ├── ds.demo.yaml ├── ds.node-agent.hostNetwork.yaml ├── ds.node-agent.hostPort.yaml ├── ds.node-agent.yaml ├── kiada-0.9 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ ├── app.js │ └── html │ │ ├── cover.png │ │ ├── cover0.6.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── index.txt │ │ ├── javascript.js │ │ └── stylesheet.css ├── node-agent-0.1 │ ├── Dockerfile │ ├── Makefile │ ├── Makefile.overrides │ └── app │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── bin │ │ └── node-agent │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── nodeinfo.go │ │ └── server.go ├── svc.demo.yaml └── svc.node-agent.local.yaml ├── Chapter18 ├── SETUP │ ├── common │ │ ├── ing.kiada.yaml │ │ └── secret.tls-example-com.yaml │ ├── kiada │ │ ├── cm.kiada-envoy-config.yaml │ │ ├── deploy.kiada.yaml │ │ ├── secret.kiada-tls.yaml │ │ └── svc.kiada.yaml │ ├── node-agent │ │ ├── ds.node-agent.yaml │ │ └── svc.node-agent.local.yaml │ ├── quiz │ │ ├── sts.quiz.yaml │ │ ├── svc.quiz-pods.yaml │ │ └── svc.quiz.yaml │ └── quote │ │ ├── deploy.quote.yaml │ │ └── svc.quote.yaml ├── cj.aggregate-responses-daily.yaml ├── cj.aggregate-responses-every-minute.yaml ├── cj.concurrency-allow.yaml ├── cj.concurrency-forbid.yaml ├── cj.concurrency-replace.yaml ├── cj.no-labels.yaml ├── cj.startingDeadlineSeconds.yaml ├── cm.aggregate-responses.yaml ├── insert-into-queue-2022.sh ├── job.aggregate-responses-2020.generated.yaml ├── job.aggregate-responses-2020.tmpl.yaml ├── job.aggregate-responses-2021-indexed.yaml ├── job.aggregate-responses-queue-coarse.yaml ├── job.aggregate-responses-queue-fine.yaml ├── job.comm-demo.yaml ├── job.demo-always-fails.yaml ├── job.demo-bad-sidecar.yaml ├── job.demo-deadline.yaml ├── job.demo-good-sidecar.yaml ├── job.demo-suspend.yaml ├── job.demo-ttl.yaml ├── job.generate-responses.restartPolicyNever.yaml ├── job.generate-responses.yaml ├── job.quiz-init.yaml ├── responses.json └── setup.sh ├── README.md ├── container-images ├── Makefile ├── init-demo-0.1 ├── kiada-0.1 ├── kiada-0.2 ├── kiada-0.3 ├── kiada-0.4 ├── kiada-0.5 ├── kiada-0.6 ├── kiada-0.7 ├── kiada-0.8 ├── kiada-0.9 ├── kiada-ssl-proxy-0.1 ├── network-connectivity-checker-0.1 ├── node-agent-0.1 ├── quiz-api-0.1 ├── quiz-api-0.2 ├── quiz-initdb-script-installer-0.1 ├── quote-writer-0.1 └── static-http-server ├── env └── scripts ├── apply.sh ├── create.sh └── replace.sh /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/Makefile -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/app.js -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/html/cover.png -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/html/favicon.ico -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/html/index.html -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/html/index.txt -------------------------------------------------------------------------------- /Chapter02/kiada-0.1/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/kiada-0.1/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter02/pod.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter02/pod.kiada.yaml -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/create-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter03/create-deployment.sh -------------------------------------------------------------------------------- /Chapter03/create-kind-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter03/create-kind-cluster.sh -------------------------------------------------------------------------------- /Chapter03/expose-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter03/expose-deployment.sh -------------------------------------------------------------------------------- /Chapter03/kind-multi-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter03/kind-multi-node.yaml -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter05/init-demo-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/init-demo-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter05/init-demo-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/init-demo-0.1/Makefile -------------------------------------------------------------------------------- /Chapter05/init-demo-0.1/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/init-demo-0.1/docker_entrypoint.sh -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/Dockerfile -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/Makefile -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/Makefile.overrides: -------------------------------------------------------------------------------- 1 | PREFIX ?= luksa/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/app.js -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/html/cover.png -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/html/favicon.ico -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/html/index.html -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/html/index.txt -------------------------------------------------------------------------------- /Chapter05/kiada-0.1-slim/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.1-slim/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/Dockerfile -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/Makefile -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/app.js -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/html/cover.png -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/html/favicon.ico -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/html/index.html -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/html/index.txt -------------------------------------------------------------------------------- /Chapter05/kiada-0.2/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-0.2/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter05/kiada-ssl-proxy-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-ssl-proxy-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter05/kiada-ssl-proxy-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-ssl-proxy-0.1/Makefile -------------------------------------------------------------------------------- /Chapter05/kiada-ssl-proxy-0.1/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-ssl-proxy-0.1/envoy.yaml -------------------------------------------------------------------------------- /Chapter05/kiada-ssl-proxy-0.1/example-com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-ssl-proxy-0.1/example-com.crt -------------------------------------------------------------------------------- /Chapter05/kiada-ssl-proxy-0.1/example-com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/kiada-ssl-proxy-0.1/example-com.key -------------------------------------------------------------------------------- /Chapter05/network-connectivity-checker-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-connectivity-checker-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter05/network-connectivity-checker-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-connectivity-checker-0.1/Makefile -------------------------------------------------------------------------------- /Chapter05/network-connectivity-checker-0.1/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-connectivity-checker-0.1/docker_entrypoint.sh -------------------------------------------------------------------------------- /Chapter05/network-traffic-meter-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-traffic-meter-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter05/network-traffic-meter-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-traffic-meter-0.1/Makefile -------------------------------------------------------------------------------- /Chapter05/network-traffic-meter-0.1/Makefile.overrides: -------------------------------------------------------------------------------- 1 | ../../Makefile.overrides -------------------------------------------------------------------------------- /Chapter05/network-traffic-meter-0.1/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/network-traffic-meter-0.1/entrypoint.sh -------------------------------------------------------------------------------- /Chapter05/pod.kiada-init-slow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-init-slow.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-init.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-native-sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-native-sidecar.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-slim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-slim.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-ssl.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-stdin-once.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-stdin-once.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-stdin-tty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-stdin-tty.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada-stdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada-stdin.yaml -------------------------------------------------------------------------------- /Chapter05/pod.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter05/pod.kiada.yaml -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/README.md -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/Dockerfile -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/Makefile -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/app.js -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/html/cover.png -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/html/favicon.ico -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/html/index.html -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/html/index.txt -------------------------------------------------------------------------------- /Chapter06/kiada-0.3/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/kiada-0.3/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter06/pod.kiada-init-fail-norestart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-init-fail-norestart.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada-liveness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-liveness.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada-ssl-0.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-ssl-0.3.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada-ssl-shortgraceperiod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-ssl-shortgraceperiod.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-ssl.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada-startup-probe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada-startup-probe.yaml -------------------------------------------------------------------------------- /Chapter06/pod.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.kiada.yaml -------------------------------------------------------------------------------- /Chapter06/pod.poststart-httpget-slow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.poststart-httpget-slow.yaml -------------------------------------------------------------------------------- /Chapter06/pod.poststart-httpget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.poststart-httpget.yaml -------------------------------------------------------------------------------- /Chapter06/pod.quote-poststart-fail-norestart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.quote-poststart-fail-norestart.yaml -------------------------------------------------------------------------------- /Chapter06/pod.quote-poststart-fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.quote-poststart-fail.yaml -------------------------------------------------------------------------------- /Chapter06/pod.quote-poststart-slow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.quote-poststart-slow.yaml -------------------------------------------------------------------------------- /Chapter06/pod.quote-poststart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.quote-poststart.yaml -------------------------------------------------------------------------------- /Chapter06/pod.quote-prestop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter06/pod.quote-prestop.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/kiada/pod.kiada-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/kiada/pod.kiada-001.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/kiada/pod.kiada-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/kiada/pod.kiada-002.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/kiada/pod.kiada-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/kiada/pod.kiada-003.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/kiada/pod.kiada-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/kiada/pod.kiada-canary.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter07/kiada-suite/quote/pod.quote-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/kiada-suite/quote/pod.quote-canary.yaml -------------------------------------------------------------------------------- /Chapter07/ns.kiada-test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/ns.kiada-test2.yaml -------------------------------------------------------------------------------- /Chapter07/persistent-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/persistent-volumes.yaml -------------------------------------------------------------------------------- /Chapter07/pod.kiada-front-end-affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/pod.kiada-front-end-affinity.yaml -------------------------------------------------------------------------------- /Chapter07/pod.kiada-front-end-skip-specific-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/pod.kiada-front-end-skip-specific-node.yaml -------------------------------------------------------------------------------- /Chapter07/pod.kiada-front-end.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/pod.kiada-front-end.yaml -------------------------------------------------------------------------------- /Chapter07/pod.kiada-ssl.kiada-test2-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/pod.kiada-ssl.kiada-test2-namespace.yaml -------------------------------------------------------------------------------- /Chapter07/pod.pod-with-annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter07/pod.pod-with-annotations.yaml -------------------------------------------------------------------------------- /Chapter08/cm.kiada-config.complete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/cm.kiada-config.complete.yaml -------------------------------------------------------------------------------- /Chapter08/cm.kiada-config.envFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/cm.kiada-config.envFrom.yaml -------------------------------------------------------------------------------- /Chapter08/cm.kiada-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/cm.kiada-config.yaml -------------------------------------------------------------------------------- /Chapter08/dummy-bad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/dummy-bad.yaml -------------------------------------------------------------------------------- /Chapter08/dummy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/dummy.bin -------------------------------------------------------------------------------- /Chapter08/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/dummy.txt -------------------------------------------------------------------------------- /Chapter08/dummy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/dummy.yaml -------------------------------------------------------------------------------- /Chapter08/example-com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/example-com.crt -------------------------------------------------------------------------------- /Chapter08/example-com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/example-com.key -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/Dockerfile -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/Makefile -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/app.js -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/html/cover.png -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/html/favicon.ico -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/html/index.html -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/html/index.txt -------------------------------------------------------------------------------- /Chapter08/kiada-0.4/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/kiada-0.4/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter08/pod.env-var-references-in-shell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.env-var-references-in-shell.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.args.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.command.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.downward-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.downward-api.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.env-value-ref-in-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.env-value-ref-in-args.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.env-value-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.env-value-ref.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.env-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.env-value.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.env-valueFrom-secretKeyRef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.env-valueFrom-secretKeyRef.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.env-valueFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.env-valueFrom.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.envFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.envFrom.yaml -------------------------------------------------------------------------------- /Chapter08/pod.kiada.hostname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.kiada.hostname.yaml -------------------------------------------------------------------------------- /Chapter08/pod.private-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/pod.private-image.yaml -------------------------------------------------------------------------------- /Chapter08/secret.kiada-secret-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/secret.kiada-secret-config.yaml -------------------------------------------------------------------------------- /Chapter08/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter08/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter09/UNUSED/pod.quiz.aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/UNUSED/pod.quiz.aws.yaml -------------------------------------------------------------------------------- /Chapter09/UNUSED/pod.quiz.gcepd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/UNUSED/pod.quiz.gcepd.yaml -------------------------------------------------------------------------------- /Chapter09/UNUSED/pod.quiz.nfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/UNUSED/pod.quiz.nfs.yaml -------------------------------------------------------------------------------- /Chapter09/UNUSED/pod.quiz2.gcepd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/UNUSED/pod.quiz2.gcepd.yaml -------------------------------------------------------------------------------- /Chapter09/cm.kiada-ssl-config.edited.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/cm.kiada-ssl-config.edited.yaml -------------------------------------------------------------------------------- /Chapter09/cm.kiada-ssl-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/cm.kiada-ssl-config.yaml -------------------------------------------------------------------------------- /Chapter09/count-questions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/count-questions.sh -------------------------------------------------------------------------------- /Chapter09/create-configmap-kiada-ssl-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/create-configmap-kiada-ssl-config.sh -------------------------------------------------------------------------------- /Chapter09/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/envoy.yaml -------------------------------------------------------------------------------- /Chapter09/insert-question.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/insert-question.sh -------------------------------------------------------------------------------- /Chapter09/kind-multi-node-with-image-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/kind-multi-node-with-image-volume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.demo-emptydir-inline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.demo-emptydir-inline.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.configmap-volume-clean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.configmap-volume-clean.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.configmap-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.configmap-volume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.downward-api-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.downward-api-volume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.projected-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.projected-volume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.secret-volume-permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.secret-volume-permissions.yaml -------------------------------------------------------------------------------- /Chapter09/pod.kiada-ssl.secret-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.kiada-ssl.secret-volume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.node-explorer.specific-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.node-explorer.specific-node.yaml -------------------------------------------------------------------------------- /Chapter09/pod.node-explorer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.node-explorer.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.emptydir.init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.emptydir.init.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.emptydir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.emptydir.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.hostpath.kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.hostpath.kind.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.hostpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.hostpath.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.imagevolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.imagevolume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quiz.novolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quiz.novolume.yaml -------------------------------------------------------------------------------- /Chapter09/pod.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/pod.quote.yaml -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/Makefile -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/Dockerfile -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/db.go -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/go.mod -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/go.sum -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/main.go -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/server.go -------------------------------------------------------------------------------- /Chapter09/quiz-api-0.1/app/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-api-0.1/app/types.go -------------------------------------------------------------------------------- /Chapter09/quiz-initdb-script-installer-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-initdb-script-installer-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter09/quiz-initdb-script-installer-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-initdb-script-installer-0.1/Makefile -------------------------------------------------------------------------------- /Chapter09/quiz-initdb-script-installer-0.1/insert-questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-initdb-script-installer-0.1/insert-questions.js -------------------------------------------------------------------------------- /Chapter09/quiz-questions/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY insert-questions.js / 3 | -------------------------------------------------------------------------------- /Chapter09/quiz-questions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-questions/Makefile -------------------------------------------------------------------------------- /Chapter09/quiz-questions/insert-questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quiz-questions/insert-questions.js -------------------------------------------------------------------------------- /Chapter09/quote-writer-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quote-writer-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter09/quote-writer-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quote-writer-0.1/Makefile -------------------------------------------------------------------------------- /Chapter09/quote-writer-0.1/book-quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quote-writer-0.1/book-quotes.txt -------------------------------------------------------------------------------- /Chapter09/quote-writer-0.1/book-quotes.txt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quote-writer-0.1/book-quotes.txt.dat -------------------------------------------------------------------------------- /Chapter09/quote-writer-0.1/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/quote-writer-0.1/docker_entrypoint.sh -------------------------------------------------------------------------------- /Chapter09/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter09/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter10/count-questions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/count-questions.sh -------------------------------------------------------------------------------- /Chapter10/insert-questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/insert-questions.js -------------------------------------------------------------------------------- /Chapter10/insert-questions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/insert-questions.sh -------------------------------------------------------------------------------- /Chapter10/pod.demo-ephemeral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.demo-ephemeral.yaml -------------------------------------------------------------------------------- /Chapter10/pod.demo-read-only-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.demo-read-only-many.yaml -------------------------------------------------------------------------------- /Chapter10/pod.demo-read-write-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.demo-read-write-many.yaml -------------------------------------------------------------------------------- /Chapter10/pod.demo-read-write-once.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.demo-read-write-once.yaml -------------------------------------------------------------------------------- /Chapter10/pod.quiz-from-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.quiz-from-snapshot.yaml -------------------------------------------------------------------------------- /Chapter10/pod.quiz-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.quiz-local.yaml -------------------------------------------------------------------------------- /Chapter10/pod.quiz-specific-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.quiz-specific-volume.yaml -------------------------------------------------------------------------------- /Chapter10/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter10/pod.quiz2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.quiz2.yaml -------------------------------------------------------------------------------- /Chapter10/pod.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pod.test.yaml -------------------------------------------------------------------------------- /Chapter10/pv.local-disk-on-my-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pv.local-disk-on-my-node.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.demo-read-only-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.demo-read-only-many.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.demo-read-write-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.demo-read-write-many.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.demo-read-write-once.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.demo-read-write-once.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.multi-pod-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.multi-pod-demo.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data-from-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data-from-snapshot.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data-local.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data-specific-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data-specific-volume.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data-standard.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data.default-10gib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data.default-10gib.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.quiz-data.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.quiz-data.default.yaml -------------------------------------------------------------------------------- /Chapter10/pvc.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/pvc.test.yaml -------------------------------------------------------------------------------- /Chapter10/sc.filestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/sc.filestore.yaml -------------------------------------------------------------------------------- /Chapter10/sc.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/sc.local.yaml -------------------------------------------------------------------------------- /Chapter10/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/test.yaml -------------------------------------------------------------------------------- /Chapter10/vs.quiz-data-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/vs.quiz-data-1.yaml -------------------------------------------------------------------------------- /Chapter10/vs.quiz-data-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/vs.quiz-data-2.yaml -------------------------------------------------------------------------------- /Chapter10/vsclass.pd-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter10/vsclass.pd-csi.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter11/SETUP/quote/pod.quote-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/SETUP/quote/pod.quote-canary.yaml -------------------------------------------------------------------------------- /Chapter11/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter11/ep.external-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/ep.external-service.yaml -------------------------------------------------------------------------------- /Chapter11/install-metallb-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/install-metallb-kind.sh -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/Dockerfile -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/Makefile -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/app.js -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/cover.png -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/favicon.ico -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/index.html -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/index.txt -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/javascript.js -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter11/kiada-0.5/pod.kiada-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-0.5/pod.kiada-ssl.yaml -------------------------------------------------------------------------------- /Chapter11/kiada-stable-and-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/kiada-stable-and-canary.yaml -------------------------------------------------------------------------------- /Chapter11/pod-with-dns-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/pod-with-dns-config.yaml -------------------------------------------------------------------------------- /Chapter11/pod.kiada-mock-readiness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/pod.kiada-mock-readiness.yaml -------------------------------------------------------------------------------- /Chapter11/pod.kiada-readiness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/pod.kiada-readiness.yaml -------------------------------------------------------------------------------- /Chapter11/pod.quote-readiness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/pod.quote-readiness.yaml -------------------------------------------------------------------------------- /Chapter11/pods.quote-with-hostname-subdomain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/pods.quote-with-hostname-subdomain.yaml -------------------------------------------------------------------------------- /Chapter11/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter11/svc.external-service-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.external-service-headless.yaml -------------------------------------------------------------------------------- /Chapter11/svc.external-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.external-service.yaml -------------------------------------------------------------------------------- /Chapter11/svc.kiada-publish-not-ready-addresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.kiada-publish-not-ready-addresses.yaml -------------------------------------------------------------------------------- /Chapter11/svc.kiada.loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.kiada.loadbalancer.yaml -------------------------------------------------------------------------------- /Chapter11/svc.kiada.nodeport.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.kiada.nodeport.local.yaml -------------------------------------------------------------------------------- /Chapter11/svc.kiada.nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.kiada.nodeport.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quote-dualstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quote-dualstack.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quote-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quote-headless.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quote-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quote-local.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quote-topology-aware-hints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quote-topology-aware-hints.yaml -------------------------------------------------------------------------------- /Chapter11/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter11/svc.time-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter11/svc.time-api.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/pod.kiada-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/pod.kiada-001.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/pod.kiada-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/pod.kiada-002.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/pod.kiada-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/pod.kiada-003.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter12/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter12/all.fun404.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/all.fun404.yaml -------------------------------------------------------------------------------- /Chapter12/create-kind-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/create-kind-cluster.sh -------------------------------------------------------------------------------- /Chapter12/example.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/example.crt -------------------------------------------------------------------------------- /Chapter12/example.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/example.key -------------------------------------------------------------------------------- /Chapter12/ing.api-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.api-example-com.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada-example-com.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada-ssl-passthrough.nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada-ssl-passthrough.nginx.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.affinity-gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.affinity-gke.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.affinity-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.affinity-nginx.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.defaultBackend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.defaultBackend.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.implementationSpecific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.implementationSpecific.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.ingressClassName.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.ingressClassName.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.tls.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.wildcard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.wildcard.yaml -------------------------------------------------------------------------------- /Chapter12/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter12/ing.resource-backend-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/ing.resource-backend-example.yaml -------------------------------------------------------------------------------- /Chapter12/install-ingress-nginx-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/install-ingress-nginx-kind.sh -------------------------------------------------------------------------------- /Chapter12/kind-multi-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/kind-multi-node.yaml -------------------------------------------------------------------------------- /Chapter12/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter12/static-http-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/Dockerfile -------------------------------------------------------------------------------- /Chapter12/static-http-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/Makefile -------------------------------------------------------------------------------- /Chapter12/static-http-server/Makefile.overrides: -------------------------------------------------------------------------------- 1 | PREFIX ?= luksa/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/app/Dockerfile -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/bin/static-http-server: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/app/go.mod -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/app/go.sum -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/app/main.go -------------------------------------------------------------------------------- /Chapter12/static-http-server/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/static-http-server/app/server.go -------------------------------------------------------------------------------- /Chapter12/temp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter12/temp.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/pod.kiada-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/pod.kiada-001.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/pod.kiada-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/pod.kiada-002.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/pod.kiada-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/pod.kiada-003.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter13/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter13/demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/demo.txt -------------------------------------------------------------------------------- /Chapter13/demo/demo.txt: -------------------------------------------------------------------------------- 1 | ../demo.txt -------------------------------------------------------------------------------- /Chapter13/demo/gtw.kiada.yaml: -------------------------------------------------------------------------------- 1 | ../gtw.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/demo/httproute.kiada.mirroring.yaml: -------------------------------------------------------------------------------- 1 | ../httproute.kiada.mirroring.yaml -------------------------------------------------------------------------------- /Chapter13/demo/httproute.kiada.requestHeaderModifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/demo/httproute.kiada.requestHeaderModifier.yaml -------------------------------------------------------------------------------- /Chapter13/demo/httproute.kiada.splitting.yaml: -------------------------------------------------------------------------------- 1 | ../httproute.kiada.splitting.yaml -------------------------------------------------------------------------------- /Chapter13/demo/httproute.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/demo/httproute.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/grpcroute.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/grpcroute.test.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.kiada.hostname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.kiada.hostname.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.kiada.tls-passthrough.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.kiada.tls-passthrough.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.kiada.tls-terminate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.kiada.tls-terminate.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.shared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.shared.yaml -------------------------------------------------------------------------------- /Chapter13/gtw.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/gtw.test.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.cross-namespace-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.cross-namespace-backend.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.cross-namespace-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.cross-namespace-gateway.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.full.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.header-exact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.header-exact.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.header-regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.header-regex.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.implementationSpecificFilter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.implementationSpecificFilter.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.method.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.mirroring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.mirroring.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.multiple.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.path-exact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.path-exact.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.path-pathprefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.path-pathprefix.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.path-regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.path-regex.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.queryparams-exact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.queryparams-exact.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.queryparams-regex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.queryparams-regex.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.requestHeaderModifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.requestHeaderModifier.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.requestRedirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.requestRedirect.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.responseHeaderModifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.responseHeaderModifier.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.splitting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.splitting.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.urlRewrite.replaceFullPath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.urlRewrite.replaceFullPath.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.urlRewrite.replacePrefixMatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.urlRewrite.replacePrefixMatch.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/httproute.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/httproute.quote.yaml -------------------------------------------------------------------------------- /Chapter13/install-istio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/install-istio.sh -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/Dockerfile -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/Makefile -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/Makefile.overrides: -------------------------------------------------------------------------------- 1 | -include ../../Makefile.overrides 2 | 3 | -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/app.js -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/cover.png -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/favicon.ico -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/index.html -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/index.txt -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/javascript.js -------------------------------------------------------------------------------- /Chapter13/kiada-0.5.1/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/kiada-0.5.1/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter13/pod.kiada-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/pod.kiada-new.yaml -------------------------------------------------------------------------------- /Chapter13/podsvc.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/podsvc.test.yaml -------------------------------------------------------------------------------- /Chapter13/referencegrant.from-httproutes-in-kiada-to-some-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/referencegrant.from-httproutes-in-kiada-to-some-service.yaml -------------------------------------------------------------------------------- /Chapter13/tcproute.cross-namespace-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/tcproute.cross-namespace-gateway.yaml -------------------------------------------------------------------------------- /Chapter13/tcproute.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/tcproute.test.yaml -------------------------------------------------------------------------------- /Chapter13/tlsroute.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/tlsroute.kiada.yaml -------------------------------------------------------------------------------- /Chapter13/udproute.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter13/udproute.test.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/pod.kiada-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/pod.kiada-001.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/pod.kiada-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/pod.kiada-002.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/pod.kiada-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/pod.kiada-003.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter14/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter14/pod.one-kiada-too-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/pod.one-kiada-too-many.yaml -------------------------------------------------------------------------------- /Chapter14/rs.kiada.versionLabel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/rs.kiada.versionLabel.yaml -------------------------------------------------------------------------------- /Chapter14/rs.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter14/rs.kiada.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/kiada/rs.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/kiada/rs.kiada.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quiz/pod.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quiz/pod.quiz.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quote/pod.quote-001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quote/pod.quote-001.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quote/pod.quote-002.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quote/pod.quote-002.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quote/pod.quote-003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quote/pod.quote-003.yaml -------------------------------------------------------------------------------- /Chapter15/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.broken-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.broken-pods.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.0.6.recreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.0.6.recreate.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.0.7.minReadySeconds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.0.7.minReadySeconds.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.0.7.rollingUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.0.7.rollingUpdate.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.0.8.minReadySeconds0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.0.8.minReadySeconds0.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.0.8.minReadySeconds60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.0.8.minReadySeconds60.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.labelled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.labelled.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.noReplicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.noReplicas.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.recreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.recreate.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.kiada.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.quiz.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.quote.yaml -------------------------------------------------------------------------------- /Chapter15/deploy.where-are-the-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/deploy.where-are-the-pods.yaml -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/Dockerfile -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/Makefile -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/Makefile.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/Makefile.overrides -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/app.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/cover.png -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/cover0.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/cover0.6.png -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/index.html -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/index.txt -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/javascript.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.6/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.6/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/Dockerfile -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/Makefile -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/Makefile.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/Makefile.overrides -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/app.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/cover.png -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/cover0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/cover0.7.png -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/index.html -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/index.txt -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/javascript.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.7/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.7/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/Dockerfile -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/Makefile -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/Makefile.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/Makefile.overrides -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/app.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/html/cover.png -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/html/index.html -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/html/index.txt -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/html/javascript.js -------------------------------------------------------------------------------- /Chapter15/kiada-0.8/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter15/kiada-0.8/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter16/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/kiada/deploy.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/kiada/deploy.kiada.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/quiz/deploy.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/quiz/deploy.quiz.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/quiz/pvc.quiz-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/quiz/pvc.quiz-data.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/quote/deploy.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/quote/deploy.quote.yaml -------------------------------------------------------------------------------- /Chapter16/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter16/create-kind-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/create-kind-cluster.sh -------------------------------------------------------------------------------- /Chapter16/initiate-mongo-replicaset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/initiate-mongo-replicaset.sh -------------------------------------------------------------------------------- /Chapter16/kind-multi-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/kind-multi-node.yaml -------------------------------------------------------------------------------- /Chapter16/pod.quiz-data-importer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/pod.quiz-data-importer.yaml -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/Dockerfile -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/Makefile -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/Makefile.overrides: -------------------------------------------------------------------------------- 1 | PREFIX ?= luksa/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/Dockerfile -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/bin/quiz-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/bin/quiz-api -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/db.go -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/go.mod -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/go.sum -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/main.go -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/server.go -------------------------------------------------------------------------------- /Chapter16/quiz-api-0.2/app/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/quiz-api-0.2/app/types.go -------------------------------------------------------------------------------- /Chapter16/sts.demo-ordered.updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.demo-ordered.updated.yaml -------------------------------------------------------------------------------- /Chapter16/sts.demo-ordered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.demo-ordered.yaml -------------------------------------------------------------------------------- /Chapter16/sts.demo-parallel.updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.demo-parallel.updated.yaml -------------------------------------------------------------------------------- /Chapter16/sts.demo-parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.demo-parallel.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.0.2.onDelete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.0.2.onDelete.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.0.2.partition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.0.2.partition.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.0.2.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.orderedReady.readinessProbe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.orderedReady.readinessProbe.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.orderedReady.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.orderedReady.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.pvcRetentionPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.pvcRetentionPolicy.yaml -------------------------------------------------------------------------------- /Chapter16/sts.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/sts.quiz.yaml -------------------------------------------------------------------------------- /Chapter16/svc.quiz-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter16/svc.quiz-pods.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter17/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter17/deploy.kiada.0.9.hostPort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/deploy.kiada.0.9.hostPort.yaml -------------------------------------------------------------------------------- /Chapter17/deploy.kiada.0.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/deploy.kiada.0.9.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.amd64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.amd64.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.nodeName.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.nodeName.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.nodeSelector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.nodeSelector.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.readinessProbe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.readinessProbe.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.tolerateAllTaints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.tolerateAllTaints.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.v2.rollingUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.v2.rollingUpdate.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.v3.onDelete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.v3.onDelete.yaml -------------------------------------------------------------------------------- /Chapter17/ds.demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.demo.yaml -------------------------------------------------------------------------------- /Chapter17/ds.node-agent.hostNetwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.node-agent.hostNetwork.yaml -------------------------------------------------------------------------------- /Chapter17/ds.node-agent.hostPort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.node-agent.hostPort.yaml -------------------------------------------------------------------------------- /Chapter17/ds.node-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/ds.node-agent.yaml -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/Dockerfile -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/Makefile -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/Makefile.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/Makefile.overrides -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/app.js -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/cover.png -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/cover0.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/cover0.6.png -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/index.html -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/index.txt -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/javascript.js -------------------------------------------------------------------------------- /Chapter17/kiada-0.9/html/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/kiada-0.9/html/stylesheet.css -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/Dockerfile -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/Makefile -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/Makefile.overrides: -------------------------------------------------------------------------------- 1 | PREFIX ?= luksa/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/Dockerfile -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/bin/node-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/bin/node-agent -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/go.mod -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/go.sum -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/main.go -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/nodeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/nodeinfo.go -------------------------------------------------------------------------------- /Chapter17/node-agent-0.1/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/node-agent-0.1/app/server.go -------------------------------------------------------------------------------- /Chapter17/svc.demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/svc.demo.yaml -------------------------------------------------------------------------------- /Chapter17/svc.node-agent.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter17/svc.node-agent.local.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/common/ing.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/common/ing.kiada.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/common/secret.tls-example-com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/common/secret.tls-example-com.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/kiada/cm.kiada-envoy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/kiada/cm.kiada-envoy-config.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/kiada/deploy.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/kiada/deploy.kiada.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/kiada/secret.kiada-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/kiada/secret.kiada-tls.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/kiada/svc.kiada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/kiada/svc.kiada.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/node-agent/ds.node-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/node-agent/ds.node-agent.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/node-agent/svc.node-agent.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/node-agent/svc.node-agent.local.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/quiz/sts.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/quiz/sts.quiz.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/quiz/svc.quiz-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/quiz/svc.quiz-pods.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/quiz/svc.quiz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/quiz/svc.quiz.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/quote/deploy.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/quote/deploy.quote.yaml -------------------------------------------------------------------------------- /Chapter18/SETUP/quote/svc.quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/SETUP/quote/svc.quote.yaml -------------------------------------------------------------------------------- /Chapter18/cj.aggregate-responses-daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.aggregate-responses-daily.yaml -------------------------------------------------------------------------------- /Chapter18/cj.aggregate-responses-every-minute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.aggregate-responses-every-minute.yaml -------------------------------------------------------------------------------- /Chapter18/cj.concurrency-allow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.concurrency-allow.yaml -------------------------------------------------------------------------------- /Chapter18/cj.concurrency-forbid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.concurrency-forbid.yaml -------------------------------------------------------------------------------- /Chapter18/cj.concurrency-replace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.concurrency-replace.yaml -------------------------------------------------------------------------------- /Chapter18/cj.no-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.no-labels.yaml -------------------------------------------------------------------------------- /Chapter18/cj.startingDeadlineSeconds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cj.startingDeadlineSeconds.yaml -------------------------------------------------------------------------------- /Chapter18/cm.aggregate-responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/cm.aggregate-responses.yaml -------------------------------------------------------------------------------- /Chapter18/insert-into-queue-2022.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/insert-into-queue-2022.sh -------------------------------------------------------------------------------- /Chapter18/job.aggregate-responses-2020.generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.aggregate-responses-2020.generated.yaml -------------------------------------------------------------------------------- /Chapter18/job.aggregate-responses-2020.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.aggregate-responses-2020.tmpl.yaml -------------------------------------------------------------------------------- /Chapter18/job.aggregate-responses-2021-indexed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.aggregate-responses-2021-indexed.yaml -------------------------------------------------------------------------------- /Chapter18/job.aggregate-responses-queue-coarse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.aggregate-responses-queue-coarse.yaml -------------------------------------------------------------------------------- /Chapter18/job.aggregate-responses-queue-fine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.aggregate-responses-queue-fine.yaml -------------------------------------------------------------------------------- /Chapter18/job.comm-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.comm-demo.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-always-fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-always-fails.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-bad-sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-bad-sidecar.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-deadline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-deadline.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-good-sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-good-sidecar.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-suspend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-suspend.yaml -------------------------------------------------------------------------------- /Chapter18/job.demo-ttl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.demo-ttl.yaml -------------------------------------------------------------------------------- /Chapter18/job.generate-responses.restartPolicyNever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.generate-responses.restartPolicyNever.yaml -------------------------------------------------------------------------------- /Chapter18/job.generate-responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.generate-responses.yaml -------------------------------------------------------------------------------- /Chapter18/job.quiz-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/job.quiz-init.yaml -------------------------------------------------------------------------------- /Chapter18/responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/responses.json -------------------------------------------------------------------------------- /Chapter18/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/Chapter18/setup.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/README.md -------------------------------------------------------------------------------- /container-images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/container-images/Makefile -------------------------------------------------------------------------------- /container-images/init-demo-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter05/init-demo-0.1/ -------------------------------------------------------------------------------- /container-images/kiada-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter02/kiada-0.1/ -------------------------------------------------------------------------------- /container-images/kiada-0.2: -------------------------------------------------------------------------------- 1 | ../Chapter05/kiada-0.2/ -------------------------------------------------------------------------------- /container-images/kiada-0.3: -------------------------------------------------------------------------------- 1 | ../Chapter06/kiada-0.3/ -------------------------------------------------------------------------------- /container-images/kiada-0.4: -------------------------------------------------------------------------------- 1 | ../Chapter09/kiada-0.4/ -------------------------------------------------------------------------------- /container-images/kiada-0.5: -------------------------------------------------------------------------------- 1 | ../Chapter11/kiada-0.5/ -------------------------------------------------------------------------------- /container-images/kiada-0.6: -------------------------------------------------------------------------------- 1 | ../Chapter14/kiada-0.6 -------------------------------------------------------------------------------- /container-images/kiada-0.7: -------------------------------------------------------------------------------- 1 | ../Chapter14/kiada-0.7 -------------------------------------------------------------------------------- /container-images/kiada-0.8: -------------------------------------------------------------------------------- 1 | ../Chapter14/kiada-0.8 -------------------------------------------------------------------------------- /container-images/kiada-0.9: -------------------------------------------------------------------------------- 1 | ../Chapter16/kiada-0.9 -------------------------------------------------------------------------------- /container-images/kiada-ssl-proxy-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter05/kiada-ssl-proxy-0.1/ -------------------------------------------------------------------------------- /container-images/network-connectivity-checker-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter05/network-connectivity-checker-0.1/ -------------------------------------------------------------------------------- /container-images/node-agent-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter16/node-agent-0.1 -------------------------------------------------------------------------------- /container-images/quiz-api-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter07/quiz-api-0.1/ -------------------------------------------------------------------------------- /container-images/quiz-api-0.2: -------------------------------------------------------------------------------- 1 | ../Chapter15/quiz-api-0.2/ -------------------------------------------------------------------------------- /container-images/quiz-initdb-script-installer-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter07/quiz-initdb-script-installer-0.1/ -------------------------------------------------------------------------------- /container-images/quote-writer-0.1: -------------------------------------------------------------------------------- 1 | ../Chapter07/quote-writer-0.1/ -------------------------------------------------------------------------------- /container-images/static-http-server: -------------------------------------------------------------------------------- 1 | ../Chapter12/static-http-server -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/env -------------------------------------------------------------------------------- /scripts/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/scripts/apply.sh -------------------------------------------------------------------------------- /scripts/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/scripts/create.sh -------------------------------------------------------------------------------- /scripts/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luksa/kubernetes-in-action-2nd-edition/HEAD/scripts/replace.sh --------------------------------------------------------------------------------