Update EKS-DEV-PRATHAM-DEPLOYMENT.yaml #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to EKS-Pratham-ms | |
on: | |
push: | |
branches: | |
- main | |
env: | |
ECR_REPOSITORY: ${{ secrets.ECR_REPOSITORY }} | |
EKS_CLUSTER_NAME: ${{ secrets.EKS_CLUSTER_NAME }} | |
AWS_REGION: ${{ secrets.AWS_REGION_NAME }} | |
jobs: | |
build: | |
name: Deployment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set short git commit SHA | |
id: commit | |
uses: prompt/actions-commit-hash@v2 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Setup Node Env | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.1.0 | |
- name: Copy .env file | |
env: | |
ENV_FILE_CONTENT: ${{ secrets.ENV_FILE_CONTENT_DEV }} | |
run: echo "$ENV_FILE_CONTENT" > manifest/configmap.yaml | |
- name: Creating Dockerfile | |
env: | |
DOCKERFILE_FILE_CONTENT: ${{ secrets.DOCKERFILE_FILE_CONTENT }} | |
run: echo "$DOCKERFILE_FILE_CONTENT" > Dockerfile | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
ECR_REGISTRY: ${{ secrets.ECR_REPOSITORY }} | |
IMAGE_TAG: ${{ secrets.ECR_IMAGE_TAG }} | |
run: | | |
docker build -t $ECR_REGISTRY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY:$IMAGE_TAG | |
- name: Update kube config | |
run: aws eks update-kubeconfig --name ${{ secrets.EKS_CLUSTER_NAME }} --region ${{ secrets.AWS_REGION_NAME }} | |
- name: Deploy to EKS | |
env: | |
ECR_REPOSITORY: ${{ secrets.ECR_REPOSITORY }} | |
IMAGE_TAG: ${{ secrets.ECR_IMAGE_TAG }} | |
run: | | |
# Print env variables for debugging | |
echo "ECR_REPOSITORY: $ECR_REPOSITORY" | |
echo "IMAGE_TAG: $IMAGE_TAG" | |
# Substitute env variables in the YAML | |
envsubst < manifest/notification-service.yaml > manifest/notification-service-updated.yaml | |
echo "Substituted YAML:" | |
cat manifest/notification-service-updated.yaml # Print the substituted file | |
echo "Validating YAML:" | |
python -c 'import yaml, sys; yaml.safe_load(sys.stdin)' < manifest/notification-service-updated.yaml # Validate YAML format | |
kubectl apply -f manifest/configmap.yaml | |
kubectl apply -f manifest/notification-service-updated.yaml | |
sleep 10 | |
kubectl get pods | |
kubectl get services | |
kubectl get deployment |