https://github.com/bjnandi/laravel-aws-eks-latest
https://github.com/bjnandi/laravel-aws-eks-latest
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bjnandi/laravel-aws-eks-latest
- Owner: bjnandi
- Created: 2022-09-28T19:34:51.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-30T06:44:19.000Z (almost 4 years ago)
- Last Synced: 2025-07-31T03:41:41.891Z (12 months ago)
- Language: PHP
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
I) Environment Setup
1) Install AWS CLI on local windows machine
2) Install eksctl on local windows machine
3) Installing Chocolatey on local windows machine
via PowerShell:
1. Press the Windows key and type "PowerShell". Select the Run as administrator option to open the Windows PowerShell.
Get-ExecutionPolicy
Set-ExecutionPolicy AllSigned
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
4) Install kubctl on local windows machine
II) Create cluster,deployment, service
kubectl create cluster -f cluster.yaml
kubectl apply -f deployment.yaml
kubectl expose deployment laravel --type=NodePort --name=laravel-service