Update containerDeployment.yml #20
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes: #19
This pull request updates the
.github/workflows/containerDeployment.yml
file to enhance the deployment workflow for a containerized application. The changes include the addition of environment variables, integration with Azure for deployment, and updates to Docker image handling.Workflow Enhancements:
IMAGE_BASE_NAME
environment variable to include the:latest
tag and added new variablesRESOURCE_GROUP
andENVIRONMENT_NAME
to support Azure deployment. ([.github/workflows/containerDeployment.ymlL8-R10](https://github.com/platzi/curso-devops/pull/20/files#diff-202cd0851de712b3eccd6653d0355a786699e33de55c3aa455af5ea58aaa047bL8-R10)
)Azure Integration:
Azure/[email protected]
action and configured it with credentials from GitHub secrets. ([.github/workflows/containerDeployment.ymlR22-R30](https://github.com/platzi/curso-devops/pull/20/files#diff-202cd0851de712b3eccd6653d0355a786699e33de55c3aa455af5ea58aaa047bR22-R30)
)containerapp
extension with dynamic installation enabled. ([.github/workflows/containerDeployment.ymlR22-R30](https://github.com/platzi/curso-devops/pull/20/files#diff-202cd0851de712b3eccd6653d0355a786699e33de55c3aa455af5ea58aaa047bR22-R30)
)Docker and Azure Deployment:
:latest
tag, aligning it with the updatedIMAGE_BASE_NAME
. ([.github/workflows/containerDeployment.ymlL32-R47](https://github.com/platzi/curso-devops/pull/20/files#diff-202cd0851de712b3eccd6653d0355a786699e33de55c3aa455af5ea58aaa047bL32-R47)
)az containerapp up
command. ([.github/workflows/containerDeployment.ymlL32-R47](https://github.com/platzi/curso-devops/pull/20/files#diff-202cd0851de712b3eccd6653d0355a786699e33de55c3aa455af5ea58aaa047bL32-R47)
)