Skip to content

Commit

Permalink
fix: helm package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Lim-Changi committed Mar 17, 2024
1 parent fb534fe commit e94af0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/eks-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- deploy/k8s

jobs:
build:
deploy-k8s:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: KubeConfig
run: |
aws eks update-kubeconfig --name test-cluster --region ${{ secrets.AWS_REGION }} --kubeconfig ./kubeconfig
aws eks update-kubeconfig --name test-cluster --region ${{ env.AWS_REGION }} --kubeconfig ./kubeconfig
echo 'KUBE_CONFIG_DATA<<EOF' >> $GITHUB_ENV
echo $(cat ./kubeconfig | base64) >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
Expand All @@ -64,7 +64,7 @@ jobs:
helm version
kubectl version
kubectl cluster-info
helm upgrade test-cluster --install --wait --set image.tag=${{ github.sha }} --set image.repository="$ECR_REGISTRY/ECR_REPOSITORY" --set service.port="8000" .devops/k8s/acon-k8s -n default
helm upgrade acon-k8s --install --wait --set image.tag=${{ github.sha }} --set image.repository="$ECR_REGISTRY/ECR_REPOSITORY" --set service.port="8000" .devops/k8s/acon-k8s -n default
- name: Success
run: echo deployed successfully.
Expand Down

0 comments on commit e94af0a

Please sign in to comment.