Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| # This hook depends on helm creating the target namespace if it doesn't exist | |
| # before the hook is called. This is the case on Helm v2.9.1 | |
| apiVersion: batch/v1 | |
| kind: Job | |
| metadata: | |
| name: label-ns | |
| namespace: kube-system | |
| labels: | |
| release: {{ .Release.Name }} | |
| heritage: {{ .Release.Service }} |
Next.js, Nginx with Reverse proxy, SSL certificate
| ##https://stackoverflow.com/questions/67380335/how-to-fetch-a-value-inside-an-array-using-helm-template | |
| so the values.yaml looks something like | |
| ########values.yaml######## | |
| ep: | |
| staging: | |
| ricochet: | |
| ash: val1 | |
| mini: val2 | |
| pikachu: |
| ##########Dockerfile########### | |
| # Start with a lightweight Alpine image | |
| FROM alpine:3.18 | |
| # Install curl, bash, and kubectl | |
| RUN apk update && \ | |
| apk add --no-cache \ | |
| curl \ | |
| bash \ |