Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eks release workflow #405

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/release-publish-cluster.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy to EKS

on:
push:
branches:
- main
- 343-feature-request-reduce-the-need-for-container-interaction-in-demo-environment

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Setup kubectl
uses: azure/setup-kubectl@v3
with:
version: 'latest'

Check failure on line 27 in .github/workflows/release-publish-cluster.yaml

View workflow job for this annotation

GitHub Actions / Run yamllint

27:20 [quoted-strings] string value is redundantly quoted with double quotes

- name: Authenticate kubectl with EKS
run: |
aws eks update-kubeconfig --region us-central-1 --name mpm

- name: Deploy to EKS
run: |
kubectl apply -f k8s/deployments
kubectl apply -f k8s/services
kubectl apply -f k8s/secrets
Loading