examples
examples copied to clipboard
Example code and files from "Kubernetes: Up and Running"
Hey! When I run this command from the book for example 14-3: `kubectl apply cm --from-file ghost-config.js ghost-config` I get this error: `Error: unknown flag: --from-file` I'm on kubectl version:...
Commands in chapter 8 rely on the depreciated replicas. This is several places throughout the book. It was removed in 1.18. https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.18.md#deprecation-4 kubectl run be-default \ > --image=gcr.io/kuar-demo/kuard-amd64:blue \ >...
Manifest seems to have become out dated. When applying it failed with " no matches for kind "ReplicaSet" in version "extensions/v1beta1"". Newer definitions call for a "selector" section. Not sure...
- Move all objects, except for chapter 17 from v1beta to v1, for compliance to k8s v1.18 - Fix an error on kuard image for Job chapter (#12)
Trying to run the example 8-1-kuard-rs.yaml with kubectl v1.16.3 and minikube v.1.6.2 and getting validation error: ``` ➜ kubernetes-up-and-running_examples git:(master) ✗ kubectl apply -f 8-1-kuard-rs.yaml error: error validating "8-1-kuard-rs.yaml": error...
Why does examples start from chapter when examples are available starting from chapter 2 in the book? And why are examples separate from guard repository anyway? The book has a...
Crashed due to environmental variables not being in quotes for APP_ID and MASTER_KEY Tested against: Server Version: version.Info{Major:"1", Minor:"13", GitVersion:"v1.13.3", Client Version: version.Info{Major:"1", Minor:"13", GitVersion:"v1.13.3"
Hello, Pods are setup on my GCP cluster but sentinel returns an error and replication between nodes is not ok. If I try to determine which server the Redis sentinel...
Originally the Healthrequests are instructed to go to: >> httpGet: path: /healthy port: 8080 >> While the failures are generated on http://localhost:8080/ready and http://localhost:8080/healthy would always return http 200. No...