Docker - in CI/CD
Given this snippet in a CI/CD pipeline YAML file:
What will happen after this pipeline runs successfully?
steps:
- name: Build image
run: docker build -t myapp:1.0 .
- name: Push image
run: docker push myapp:1.0
- name: Deploy
run: kubectl set image deployment/myapp myapp=myapp:1.0What will happen after this pipeline runs successfully?
