We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa390c commit 4fb0696Copy full SHA for 4fb0696
1 file changed
.github/workflows/build_deploy.yml
@@ -47,6 +47,7 @@ jobs:
47
environment: dev
48
steps:
49
- uses: actions/checkout@v3
50
+ - uses: tale/kubectl-action@v1
51
- uses: aws-actions/configure-aws-credentials@v1
52
with:
53
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
@@ -55,9 +56,12 @@ jobs:
55
56
- name: Login to ECR
57
id: login-ecr
58
uses: aws-actions/amazon-ecr-login@v1
- - name: Check AWS Account
59
+ - name: Deploy to EKS
60
run: |
61
aws sts get-caller-identity
62
+ aws eks update-kubeconfig --name eksdemo1 --region us-east-1
63
+ kubectl get pods
64
+
65
66
67
0 commit comments