Skip to content

Commit

Permalink
Added rollout restart to k8s deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
danishkhan24 committed Aug 29, 2024
1 parent 982dee4 commit c6271ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ jobs:
- name: Deploy Frontend to EKS
run: |
kubectl apply -f ./k8s/frontend-deployment.yaml
kubectl rollout restart deployment/frontend-deployment
- name: Deploy Backend to EKS
run: |
kubectl apply -f ./k8s/backend-deployment.yaml
kubectl rollout restart deployment/backend-deployment
2 changes: 1 addition & 1 deletion klipbored-frontend/src/components/Clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Clipboard = () => {
className="form-control"
/>
<textarea
placeholder="Enter clipboard data to store"
placeholder="Enter some text here to store"
value={data}
onChange={(e) => setData(e.target.value)}
className="form-control"
Expand Down

0 comments on commit c6271ed

Please sign in to comment.