hello-kubernetes
hello-kubernetes copied to clipboard
Provides a demo app to deploy to a Kubernetes cluster. It displays a message, the name of the pod and details of the node it's deployed to.
In our company's internally managed k8s platform the policy `runAsNonRoot` is set and this causes the deployment to fail with ``` Error: container has runAsNonRoot and image has non-numeric user...
After trying this out (as a very new-to-Kubernetes person) I had a lot of trouble figuring out how to remove it again. Eventually this worked for me: kubectl delete deployment...
Hello, The ingress example isn't working because now the api used is the networking v1 and the syntax doesn't seem to be recognized Tested with GKE 1.21.5 Thank you. ```...
Currently when deploying into a Kubernetes cluster with own ingress configured which uses specific path prefix which is not rewritten the liveness and readiness probes fail. This is because the...
is this one , how can i use it? https://artifacthub.io/packages/helm/opsmx/hello-kubernetes
[This](https://github.com/paulbouwer/hello-kubernetes/blob/6e9ac0e273bfdaf1f9b78501e8b046be00d44eb3/src/app/views/layouts/main.handlebars#L5) and [this](https://github.com/paulbouwer/hello-kubernetes/blob/6e9ac0e273bfdaf1f9b78501e8b046be00d44eb3/src/app/views/layouts/main.handlebars#L11) - the leading slash in the template causes this to occur when `RENDER_PATH_PREFIX` is undefined and the context root of the application is not `/` (e.g. this...
This pull request builds upon #40, allowing the use of `make` for building multi-arch images locally and pushing them to the repository. ARM, ARM64 and RISC-V support is included, but...
Updated the node alpine image to newest version to resolve vulnerabilities
Make the path of the Readiness and Liveness prob dynamically with the value of the pathPrefix of the helm chart like this : livenessProbe: httpGet: path: /"{{ .Values.ingress.pathPrefix }}" port:...
Update values.yaml to change welcome message + default pod replicas