Skip to content

Commit

Permalink
adds kube deployment cd pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
afzal442 committed Jan 30, 2024
1 parent 7727736 commit aad2288
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,19 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deploy:
needs: build_and_push_image
runs-on: ubuntu-latest

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

- name: Install Minikube
run: |
sudo apt-get update
sudo apt-get install -y minikube
minikube start
- name: Deploy to Minikube
run: kubectl apply -f kube_manifests/

0 comments on commit aad2288

Please sign in to comment.