Skip to content

Commit

Permalink
chore: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayg10 committed Oct 15, 2024
1 parent fca3957 commit 2c6b976
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
4 changes: 0 additions & 4 deletions local-deployment-methods/docker_arm_rebuild/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ IMAGES=$(helm template "$HELM_RELEASE" "$HELM_CHART" | grep "image:" | awk '{pri
# 2. Create a temporary file to track unique image repo + tag combinations
touch processed_images.txt

# 3. Prepare the parallel job list
job_list="jobs.txt"
rm -f "$job_list"

for IMAGE in $IMAGES
do
# Remove any quotes around the image string
Expand Down
15 changes: 14 additions & 1 deletion local-deployment-methods/helmfile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ k3d cluster create --k3s-arg "--no-deploy=traefik@server:*" mycluster
kubectl get nodes
```

```
k3d cluster create --api-port 6550 -p "80:80@loadbalancer" --agents 2
export KUBECONFIG="$(k3d kubeconfig write k3s-default)"
```

### Deploy ingress controller

https://kubernetes.github.io/ingress-nginx/deploy/#using-helm
Expand Down Expand Up @@ -57,4 +63,11 @@ minikube addons enable ingress
brew tap hashicorp/tap
brew install hashicorp/tap/hashicorp-vagrant

brew cask install virtualbox
brew cask install virtualbox

## Docker desktop MacOS

helm upgrade --install ingress-nginx ingress-nginx \
--repo https://kubernetes.github.io/ingress-nginx \
--namespace ingress-nginx --create-namespace

0 comments on commit 2c6b976

Please sign in to comment.